BELFEM 0.9.0
Berkeley Lab Finite Element Framework
Loading...
Searching...
No Matches
en_FEM_BoundaryConditionImposing.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_BOUNDARYCONDITIONIMPOSING
13#define BELFEM_EN_FEM_BOUNDARYCONDITIONIMPOSING
14
15namespace belfem
16{
17 namespace fem
18 {
20 {
21 Free = 0,
22 Dirichlet = 1, // nodal value such as displacement or temperature
23 Neumann = 2, // nodal flux, such as heat load or force
24 Alpha = 3, // special type, for convective heat flux, no RADIATION !
25 Lambda = 4, // special type for maxwell
26 Weak = 5, // special type for maxwell
27 UNDEFINED = 6
28 };
29 }
30}
31#endif // BELFEM_EN_FEM_BOUNDARYCONDITIONIMPOSING
Definition cl_IFB_LINE3.hpp:21
BoundaryConditionImposing
Definition en_FEM_BoundaryConditionImposing.hpp:20
@ Lambda
Definition en_FEM_BoundaryConditionImposing.hpp:25
@ Alpha
Definition en_FEM_BoundaryConditionImposing.hpp:24
@ Weak
Definition en_FEM_BoundaryConditionImposing.hpp:26
@ Free
Definition en_FEM_BoundaryConditionImposing.hpp:21
@ Neumann
Definition en_FEM_BoundaryConditionImposing.hpp:23
USER GUIDES:
Definition cl_Capacitor.cpp:16