BELFEM 0.9.0
Berkeley Lab Finite Element Framework
Loading...
Searching...
No Matches
en_FEM_SolverAlgorithm.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_FEM_SOLVERALGORITHM_HPP
13#define BELFEM_EN_FEM_SOLVERALGORITHM_HPP
14
15namespace belfem
16{
17 namespace fem
18 {
19 enum class SolverAlgorithm
20 {
21 Direct = 0,
23 Picard = 2,
24 UNDEFINED = 3
25 };
26 }
27}
28
29#endif //BELFEM_EN_FEM_SOLVERALGORITHM_HPP
Definition cl_IFB_LINE3.hpp:21
SolverAlgorithm
Definition en_FEM_SolverAlgorithm.hpp:20
USER GUIDES:
Definition cl_Capacitor.cpp:16
@ Direct
Definition en_IWGs.hpp:82
@ NewtonRaphson
Definition en_IWGs.hpp:92
@ Picard
Definition en_IWGs.hpp:93