Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adaptive time-stepping for transient solver using SUNDIALS #292

Open
wants to merge 19 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
f0ef4f2
Add SUNDIALS dependency and build MFEM with SUNDIALS
simlapointe Oct 14, 2024
e2edda8
Add weak curl operator for first-order transient formulation
simlapointe Oct 14, 2024
0c4d8e1
Add new transient solver config options for adaptive time-stepping
simlapointe Oct 14, 2024
d437156
Add first-order transient formulation with SUNDIALS ARKode schemes
simlapointe Oct 14, 2024
0c10b67
Change first order ODE system formulation, add CVODE integrator, remo…
simlapointe Oct 21, 2024
983cc9c
Use explicit RHS (y' = M^-1 f(y,t)) for both ARKODE and CVODE
simlapointe Oct 25, 2024
cff74b9
Remove weakCurl operator, no longer needed
simlapointe Oct 30, 2024
e5b1e1d
Remove unnecessary ODE integrator prints
simlapointe Oct 30, 2024
2f10218
Merge branch 'main' into simlapointe/transient-adapt-dt
simlapointe Oct 30, 2024
c4b4a01
Remove 2nd order ODE formulation
simlapointe Nov 5, 2024
937fb47
Update reference for transient solver tests
simlapointe Nov 5, 2024
b9ce371
Clean up
simlapointe Nov 5, 2024
11092e9
Add SUNDIALS to spack install instructions
simlapointe Nov 5, 2024
11ad777
Change SUNDIALS version for spack installer
simlapointe Nov 5, 2024
aea8d7f
Fix formatting issues
simlapointe Nov 5, 2024
1bb2a95
Merge branch 'main' into simlapointe/transient-adapt-dt
simlapointe Nov 6, 2024
cd7cfc4
Use MFEM's SDIRK23 solver as the fixed step Runge-Kutta option, along…
simlapointe Nov 7, 2024
c86a4c6
Remove SUNDIALS MAGMA dependency
simlapointe Nov 8, 2024
100d2f4
Fix formatting issues
simlapointe Nov 8, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@ The format of this changelog is based on
- Exposed configuration linear solver and eigen solver options for the wave port
subproblem. These can now be specified as part of the `config["Boundaries"]["WavePort"]`
configuration. The defaults align with the previously hardcoded values.
- Added adaptive time-stepping capability for transient simulations. The new ODE integrators
rely on the SUNDIALS library and can be specified by setting the
`config["Solver"]["Transient"]["Type"]` option to `"CVODE"` or `"ARKODE"`.

## [0.13.0] - 2024-05-20

Expand Down
2 changes: 2 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ set(PALACE_WITH_GSLIB ON CACHE BOOL "Build with GSLIB library for high-order fie
set(PALACE_WITH_STRUMPACK_BUTTERFLYPACK OFF CACHE BOOL "Build with ButterflyPACK support for STRUMPACK solver")
set(PALACE_WITH_STRUMPACK_ZFP OFF CACHE BOOL "Build with ZFP support for STRUMPACK solver")

set(PALACE_WITH_SUNDIALS ON CACHE BOOL "Build with SUNDIALS differential/algebraic equations solver")

set(ANALYZE_SOURCES_CLANG_TIDY OFF CACHE BOOL "Run static analysis checks using clang-tidy")
set(ANALYZE_SOURCES_CPPCHECK OFF CACHE BOOL "Run static analysis checks using cppcheck")

Expand Down
14 changes: 14 additions & 0 deletions cmake/ExternalGitTags.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -265,3 +265,17 @@ set(EXTERN_EIGEN_URL
"https://gitlab.com/libeigen/eigen/-/archive/3.4.0/eigen-3.4.0.tar.gz" CACHE STRING
"URL for external Eigen build"
)

# SUNDIALS
set(EXTERN_SUNDIALS_URL
"https://github.com/LLNL/sundials.git" CACHE STRING
"URL for external SUNDIALS build"
)
set(EXTERN_SUNDIALS_GIT_BRANCH
"main" CACHE STRING
"Git branch for external SUNDIALS build"
)
set(EXTERN_SUNDIALS_GIT_TAG
"aaeab8d907c6b7dfca86041401fdc1448f35f826" CACHE STRING
"Git tag for external SUNDIALS build"
)
31 changes: 31 additions & 0 deletions cmake/ExternalMFEM.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ if(PALACE_BUILD_EXTERNAL_DEPS)
if(PALACE_WITH_SUPERLU)
list(APPEND MFEM_DEPENDENCIES superlu_dist)
endif()
if(PALACE_WITH_SUNDIALS)
list(APPEND MFEM_DEPENDENCIES sundials)
endif()
else()
set(MFEM_DEPENDENCIES)
endif()
Expand Down Expand Up @@ -87,6 +90,7 @@ list(APPEND MFEM_OPTIONS
"-DMFEM_USE_LIBUNWIND=${PALACE_MFEM_WITH_LIBUNWIND}"
"-DMFEM_USE_METIS_5=YES"
"-DMFEM_USE_CEED=NO"
"-DMFEM_USE_SUNDIALS=${PALACE_WITH_SUNDIALS}"
)
if(PALACE_WITH_STRUMPACK OR PALACE_WITH_MUMPS)
list(APPEND MFEM_OPTIONS
Expand Down Expand Up @@ -297,6 +301,32 @@ Intel C++ compiler for MUMPS and STRUMPACK dependencies")
"-DMUMPS_REQUIRED_LIBRARIES=${SCALAPACK_LIBRARIES}$<SEMICOLON>${STRUMPACK_MUMPS_GFORTRAN_LIBRARY}"
)
endif()

# Configure SUNDIALS
if(PALACE_WITH_SUNDIALS)
set(SUNDIALS_REQUIRED_PACKAGES "LAPACK" "BLAS" "MPI")
if(PALACE_WITH_OPENMP)
list(APPEND SUNDIALS_REQUIRED_PACKAGES "OpenMP")
endif()
if(PALACE_WITH_CUDA)
list(APPEND SUNDIALS_REQUIRED_PACKAGES "CUDAToolkit")
list(APPEND SUNDIALS_REQUIRED_LIBRARIES ${SUPERLU_STRUMPACK_CUDA_LIBRARIES})
endif()
string(REPLACE ";" "$<SEMICOLON>" SUNDIALS_REQUIRED_PACKAGES "${SUNDIALS_REQUIRED_PACKAGES}")
string(REPLACE ";" "$<SEMICOLON>" SUNDIALS_REQUIRED_LIBRARIES "${SUNDIALS_REQUIRED_LIBRARIES}")
list(APPEND MFEM_OPTIONS
"-DSUNDIALS_DIR=${CMAKE_INSTALL_PREFIX}"
"-DSUNDIALS_OPT=-I${CMAKE_INSTALL_PREFIX}/include"
"-DSUNDIALS_LIB=-Wl,-rpath,${CMAKE_INSTALL_PREFIX}/lib64 -L${CMAKE_INSTALL_PREFIX}/lib64 -lsundials_arkode, -lsundials_cvode -lsundials_kinsol -lsundials_nvecparhyp -lsundials_nvecparallel"
"-DSUNDIALS_REQUIRED_PACKAGES=${SUNDIALS_REQUIRED_PACKAGES}"
)
if(NOT "${SUNDIALS_REQUIRED_LIBRARIES}" STREQUAL "")
list(APPEND MFEM_OPTIONS
"-DSUNDIALS_REQUIRED_LIBRARIES=${SUNDIALS_REQUIRED_LIBRARIES}"
)
endif()
endif()

else()
# Help find dependencies for the internal MFEM build
# If we trust MFEM's Find<PACKAGE>.cmake module, we can just set <PACKAGE>_DIR and, if
Expand All @@ -309,6 +339,7 @@ else()
"SuperLUDist"
"STRUMPACK"
"MUMPS"
"SUNDIALS"
)
foreach(DEP IN LISTS PALACE_MFEM_DEPS)
set(${DEP}_DIR "" CACHE STRING "Path to ${DEP} build or installation directory")
Expand Down
65 changes: 65 additions & 0 deletions cmake/ExternalSUNDIALS.cmake
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
# SPDX-License-Identifier: Apache-2.0

#
# Build SUNDIALS
#

# Force build order
set(SUNDIALS_DEPENDENCIES)

set(SUNDIALS_OPTIONS ${PALACE_SUPERBUILD_DEFAULT_ARGS})
list(APPEND SUNDIALS_OPTIONS
"-DCMAKE_CXX_COMPILER=${CMAKE_CXX_COMPILER}"
"-DCMAKE_CXX_FLAGS=${CMAKE_CXX_FLAGS}"
"-DCMAKE_C_COMPILER=${CMAKE_C_COMPILER}"
"-DCMAKE_C_FLAGS=${CMAKE_C_FLAGS}"
"-DEXAMPLES_ENABLE_C=OFF"
"-DEXAMPLES_ENABLE_CXX=OFF"
"-DEXAMPLES_ENABLE_CUDA=OFF"
"-DEXAMPLES_INSTALL=OFF"
"-DENABLE_MPI=ON"
)

if(PALACE_WITH_OPENMP)
list(APPEND SUNDIALS_OPTIONS
"-DENABLE_OPENMP=ON"
)
else()
list(APPEND SUNDIALS_OPTIONS
"-DENABLE_OPENMP=OFF"
)
endif()

# Configure LAPACK dependency
if(NOT "${BLAS_LAPACK_LIBRARIES}" STREQUAL "")
list(APPEND SUNDIALS_OPTIONS
"-DENABLE_LAPACK=ON"
"-DLAPACK_LIBRARIES=${BLAS_LAPACK_LIBRARIES}"
"-DLAPACK_WORKS:BOOL=TRUE"
)
endif()

if(PALACE_WITH_CUDA)
list(APPEND SUNDIALS_OPTIONS
"-DENABLE_CUDA=ON"
)
endif()

string(REPLACE ";" "; " SUNDIALS_OPTIONS_PRINT "${SUNDIALS_OPTIONS}")
message(STATUS "SUNDIALS_OPTIONS: ${SUNDIALS_OPTIONS_PRINT}")


include(ExternalProject)
ExternalProject_Add(sundials
DEPENDS ${SUNDIALS_DEPENDENCIES}
GIT_REPOSITORY ${EXTERN_SUNDIALS_URL}
GIT_TAG ${EXTERN_SUNDIALS_GIT_TAG}
SOURCE_DIR ${CMAKE_BINARY_DIR}/extern/sundials
BINARY_DIR ${CMAKE_BINARY_DIR}/extern/sundials-build
INSTALL_DIR ${CMAKE_INSTALL_PREFIX}
PREFIX ${CMAKE_BINARY_DIR}/extern/sundials-Cmake
UPDATE_COMMAND ""
CONFIGURE_COMMAND ${CMAKE_COMMAND} <SOURCE_DIR> "${SUNDIALS_OPTIONS}"
TEST_COMMAND ""
)
29 changes: 20 additions & 9 deletions docs/src/config/solver.md
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,10 @@ error tolerance.
"ExcitationWidth": <float>,
"MaxTime": <float>,
"TimeStep": <float>,
"SaveStep": <int>
"SaveStep": <int>,
"Order": <int>,
"RelTol": <float>,
"AbsTol": <float>
}
```

Expand All @@ -218,14 +221,12 @@ with
the second-order system of differential equations. The available options are:

- `"GeneralizedAlpha"` : The second-order implicit generalized-``\alpha`` method with
``\rho_\inf = 1.0``. This scheme is unconditionally stable.
- `"NewmarkBeta"` : The second-order implicit Newmark-``\beta`` method with
``\beta = 1/4`` and ``\gamma = 1/2``. This scheme is unconditionally stable.
- `"CentralDifference"` : The second-order explicit central difference method, obtained
by setting ``\beta = 0`` and ``\gamma = 1/2`` in the Newmark-``\beta`` method. In this
case, the maximum eigenvalue of the system operator is estimated at the start of the
simulation and used to restrict the simulation time step to below the maximum stability
time step.
``\rho_{\inf} = 1.0``. This scheme is unconditionally stable.
- `"ARKODE"` : SUNDIALS ARKode implicit Runge-Kutta scheme applied to the first-order
ODE system for the electric field with adaptive time-stepping. This option is only available when *Palace* has been [built with SUNDIALS support](../install.md#Configuration-options).
- `"CVODE"` : SUNDIALS CVODE implicit multistep method scheme applied to the first-order
ODE system for the electric field with adaptive time-stepping. This option is only available when *Palace* has been [built with SUNDIALS support](../install.md#Configuration-options).
- `"RungeKutta"` : Two stage, singly diagonal implicit Runge-Kutta (SDIRK) method. Second order and L-stable.
- `"Default"` : Use the default `"GeneralizedAlpha"` time integration scheme.

`"Excitation" [None]` : Controls the time dependence of the source excitation. The
Expand Down Expand Up @@ -260,6 +261,16 @@ disk for [visualization with ParaView](../guide/postprocessing.md#Visualization)
saved in the `paraview/` directory under the directory specified by
[`config["Problem"]["Output"]`](problem.md#config%5B%22Problem%22%5D).

`"Order" [0]` : Order of the adaptive Runge-Kutta integrators or maximum order of the multistep method.
Only relevant when `"Type"` is `"ARKODE"` or `"CVODE"`. A value less than 1 defaults to 3 for `"ARKODE"`
and 2 for `"CVODE"`.

`"RelTol" [1e-4]` : Relative tolerance used in adaptive time-stepping schemes. Only relevant
when `"Type"` is `"CVODE"` or `"ARKODE"` .

`"AbsTol" [1e-9]` : Absolute tolerance used in adaptive time-stepping schemes. Only relevant
when `"Type"` is `"CVODE"` or `"ARKODE"`.

## `solver["Electrostatic"]`

```json
Expand Down
1 change: 1 addition & 0 deletions docs/src/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,7 @@ Additional build options are (with default values in brackets):
- `PALACE_WITH_LIBXSMM [ON]` : Build with LIBXSMM backend for libCEED
- `PALACE_WITH_MAGMA [ON]` : Build with MAGMA backend for libCEED
- `PALACE_WITH_GSLIB [ON]` : Build with GSLIB library for high-order field interpolation
- `PALACE_WITH_SUNDIALS [ON]` : Build with SUNDIALS ODE solver library

The build step is invoked by running (for example with 4 `make` threads)

Expand Down
6 changes: 6 additions & 0 deletions extern/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -72,3 +72,9 @@ include(ExternalFmt)
# Add Eigen
message(STATUS "===================== Configuring Eigen dependency =====================")
include(ExternalEigen)

# Add SUNDIALS
if(PALACE_WITH_SUNDIALS)
message(STATUS "===================== Configuring SUNDIALS dependency =====================")
include(ExternalSUNDIALS)
endif()
2 changes: 2 additions & 0 deletions palace/drivers/transientsolver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ TransientSolver::Solve(const std::vector<std::unique_ptr<Mesh>> &mesh) const
std::function<double(double)> dJdt_coef = GetTimeExcitation(true);
SpaceOperator space_op(iodata, mesh);
TimeOperator time_op(iodata, space_op, dJdt_coef);

double delta_t = iodata.solver.transient.delta_t;
if (time_op.isExplicit())
{
Expand Down Expand Up @@ -138,6 +139,7 @@ TransientSolver::Solve(const std::vector<std::unique_ptr<Mesh>> &mesh) const
step++;
}
BlockTimer bt1(Timer::POSTPRO);
time_op.PrintStats();
SaveMetadata(time_op.GetLinearSolver());
return {indicator, space_op.GlobalTrueVSize()};
}
Expand Down
Loading
Loading