GCC Code Coverage Report


Directory: ./
File: Hyperelasticity/pressureData.cpp
Date: 2024-04-14 07:32:34
Exec Total Coverage
Lines: 4 9 44.4%
Branches: 0 0 -%

Line Branch Exec Source
1 // ______ ______ _ _ _____ ______
2 // | ____| ____| | (_)/ ____| | ____|
3 // | |__ | |__ | | _| (___ ___| |__
4 // | __| | __| | | | |\___ \ / __| __|
5 // | | | |____| |____| |____) | (__| |____
6 // |_| |______|______|_|_____/ \___|______|
7 // Finite Elements for Life Sciences and Engineering
8 //
9 // License: LGL2.1 License
10 // FELiScE default license: LICENSE in root folder
11 //
12 // Main authors: S. Gilles
13 //
14
15 // System includes
16
17 // External includes
18
19 // Project includes
20 #include "DegreeOfFreedom/listVariable.hpp"
21 #include "FiniteElement/listCurrentFiniteElement.hpp"
22 #include "Hyperelasticity/pressureData.hpp"
23
24 namespace felisce::Private::Hyperelasticity
25 {
26
27 465 PressureData::PressureData()
28 {
29
30 465 }
31
32 /***********************************************************************************/
33 /***********************************************************************************/
34
35 void PressureData::Init(const ListVariable& list_variable, ListCurrentFiniteElement& list_finite_element)
36 {
37 IGNORE_UNUSED_ARGUMENT(list_variable);
38 IGNORE_UNUSED_ARGUMENT(list_finite_element);
39 }
40
41 /***********************************************************************************/
42 /***********************************************************************************/
43
44 int PressureData::IndexPressure() const
45 {
46 return 0;
47 }
48
49 /***********************************************************************************/
50 /***********************************************************************************/
51
52 2143092 bool PressureData::IsCompressible() const
53 {
54 2143092 return false;
55 }
56
57 /***********************************************************************************/
58 /***********************************************************************************/
59
60 CurrentFiniteElement* PressureData::FiniteElementPressure() const
61 {
62 return nullptr;
63 }
64
65 } // namespace felisce
66