BELFEM 0.9.0
Berkeley Lab Finite Element Framework
Loading...
Searching...
No Matches
en_IntegrationScheme.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_INTEGRATIONSCHEME_HPP
13#define BELFEM_EN_INTEGRATIONSCHEME_HPP
14
15#include "typedefs.hpp"
16
17namespace belfem
18{
19//------------------------------------------------------------------------------
20
22 {
23 GAUSS, // best points as found in literature
24 GAUSSCLASSIC, // the classic way of interpolating HEX
26 UNDEFINED
27 };
28
29//------------------------------------------------------------------------------
30
31 string
32 to_string( const IntegrationScheme & aIntegrationScheme );
33
34//------------------------------------------------------------------------------
35
37 string_to_integration_scheme( const string & aString );
38
39//------------------------------------------------------------------------------
40}
41#endif //BELFEM_EN_INTEGRATIONSCHEME_HPP
USER GUIDES:
Definition cl_Capacitor.cpp:16
IntegrationScheme
Definition en_IntegrationScheme.hpp:22
@ GAUSS
Definition en_IntegrationScheme.hpp:23
@ LOBATTO
Definition en_IntegrationScheme.hpp:25
@ GAUSSCLASSIC
Definition en_IntegrationScheme.hpp:24
string to_string(const DomainType aDomainType)
Definition en_DomainType.cpp:21
IntegrationScheme string_to_integration_scheme(const string &aString)
Definition en_IntegrationScheme.cpp:47