From 82696735deee50734d203e52a582a4f7d08ba8e0 Mon Sep 17 00:00:00 2001 From: Patrick Behne Date: Fri, 15 Mar 2024 15:58:43 -0600 Subject: [PATCH 1/3] Added description of wall time checkpoints to newsletter Ref #26588. --- modules/doc/content/newsletter/2024/2024_03.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/modules/doc/content/newsletter/2024/2024_03.md b/modules/doc/content/newsletter/2024/2024_03.md index ec4d21417b0a..3baaeff13d64 100644 --- a/modules/doc/content/newsletter/2024/2024_03.md +++ b/modules/doc/content/newsletter/2024/2024_03.md @@ -12,7 +12,7 @@ for a complete description of all MOOSE changes. ### `2024.02.28` Update - Added capability to read and write sparse matrices in the - ASCII/Matlab format used by PETSc. + ASCII/Matlab format used by PETSc. - Added capability to read mesh constraint rows from an arbitrary sparse matrix. This will enable IGA solves on more flexible meshes without perfect body fit domains. @@ -34,3 +34,10 @@ for a complete description of all MOOSE changes. ## PETSc-level Changes ## Bug Fixes and Minor Enhancements + +- Added automatic checkpoints based on simulation wall time. If users + forget to turn on checkpoints, a checkpoint will automatically be + output every 10 minutes of wall time, or when the current time step + converges, whichever occurs later. The wall time output interval + can be adjusted by changing the value of the `wall_time_interval` + parameter (in seconds) in the checkpoint definition. From da5b0270e2532171ef5c61d6b26110bb4ea921c7 Mon Sep 17 00:00:00 2001 From: Logan Harbour Date: Fri, 15 Mar 2024 16:18:49 -0600 Subject: [PATCH 2/3] Address review Co-authored-by: Casey Icenhour --- modules/doc/content/newsletter/2024/2024_03.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/doc/content/newsletter/2024/2024_03.md b/modules/doc/content/newsletter/2024/2024_03.md index 3baaeff13d64..1f6c58d456dd 100644 --- a/modules/doc/content/newsletter/2024/2024_03.md +++ b/modules/doc/content/newsletter/2024/2024_03.md @@ -37,7 +37,7 @@ for a complete description of all MOOSE changes. - Added automatic checkpoints based on simulation wall time. If users forget to turn on checkpoints, a checkpoint will automatically be - output every 10 minutes of wall time, or when the current time step + created every 10 minutes of wall time or when the current time step converges, whichever occurs later. The wall time output interval can be adjusted by changing the value of the `wall_time_interval` parameter (in seconds) in the checkpoint definition. From 3351dffd238ffcee4c08805ba5f2703403c233b8 Mon Sep 17 00:00:00 2001 From: Casey Icenhour Date: Fri, 15 Mar 2024 16:28:13 -0600 Subject: [PATCH 3/3] Move to subsection, add parameter linking --- modules/doc/content/newsletter/2024/2024_03.md | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/modules/doc/content/newsletter/2024/2024_03.md b/modules/doc/content/newsletter/2024/2024_03.md index 1f6c58d456dd..cb3989d468a4 100644 --- a/modules/doc/content/newsletter/2024/2024_03.md +++ b/modules/doc/content/newsletter/2024/2024_03.md @@ -7,6 +7,14 @@ for a complete description of all MOOSE changes. ## MOOSE Improvements +### Checkpoints now performed by default + +A feature to create checkpoints based on simulation wall time was added. If users forget to turn on +checkpoints, a checkpoint will automatically be created every 10 minutes of wall time or when the +current time step converges, whichever occurs later. The wall time output interval can be adjusted +by changing the value of the [!param](/Outputs/Checkpoint/wall_time_interval) parameter (in seconds) +in the checkpoint definition. + ## libMesh-level Changes ### `2024.02.28` Update @@ -34,10 +42,3 @@ for a complete description of all MOOSE changes. ## PETSc-level Changes ## Bug Fixes and Minor Enhancements - -- Added automatic checkpoints based on simulation wall time. If users - forget to turn on checkpoints, a checkpoint will automatically be - created every 10 minutes of wall time or when the current time step - converges, whichever occurs later. The wall time output interval - can be adjusted by changing the value of the `wall_time_interval` - parameter (in seconds) in the checkpoint definition.