BELFEM 0.9.0
Berkeley Lab Finite Element Framework
Loading...
Searching...
No Matches
en_ODE_Type.hpp
Go to the documentation of this file.
1/*
2 * BELFEM -- The Berkeley Lab Finite Element Framework
3 * Copyright (c) 2026, The Regents of the University of California,
4 * through Lawrence Berkeley National Laboratory (subject to receipt of any required
5 * approvals from the U.S. Dept. of Energy). All rights reserved.
6 *
7 * Developers: Christian Messe, Gregory Giard
8 *
9 * See the top-level LICENSE file for the complete license and disclaimer.
10 */
11
12#ifndef BELFEM_EN_ODE_TYPE_HPP
13#define BELFEM_EN_ODE_TYPE_HPP
14
15namespace belfem
16{
17 namespace ode
18 {
19 enum class Type
20 {
21 RK45 = 0,
23 };
24 }
25}
26
27#endif //BELFEM_EN_ODE_TYPE_HPP
Definition cl_BDF.cpp:21
Status RK45(ODE &aODE, real &aT, Vector< real > &aY, real &aStep, Cell< Vector< real > > &aWork, const real aEpsilon, const uint aMaxIterations, const real aTmax, const bool aAutoTimestep)
Definition fn_ODE_RK45.cpp:39
Type
Definition en_ODE_Type.hpp:20
Status DOP853(ODE &aODE, real &aT, Vector< real > &aY, real &aStep, Cell< Vector< real > > &aWork, const real aEpsilon, const uint aMaxIterations, const real aTmax, const bool aAutoTimestep)
Dormand-Prince 8(5,3) explicit Runge-Kutta method (DOP853).
Definition fn_ODE_DOP853.cpp:43
USER GUIDES:
Definition cl_Capacitor.cpp:16