Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F94203299
fe_engine_template_cohesive.cc
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Wed, Dec 4, 17:13
Size
5 KB
Mime Type
text/x-c++
Expires
Fri, Dec 6, 17:13 (2 d)
Engine
blob
Format
Raw Data
Handle
22716716
Attached To
rAKA akantu
fe_engine_template_cohesive.cc
View Options
/**
* Copyright (©) 2012-2023 EPFL (Ecole Polytechnique Fédérale de Lausanne)
* Laboratory (LSMS - Laboratoire de Simulation en Mécanique des Solides)
*
* This file is part of Akantu
*
* Akantu is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free
* Software Foundation, either version 3 of the License, or (at your option) any
* later version.
*
* Akantu is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
* A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
* details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Akantu. If not, see <http://www.gnu.org/licenses/>.
*/
/* -------------------------------------------------------------------------- */
#include "integrator_gauss.hh"
#include "shape_cohesive.hh"
/* -------------------------------------------------------------------------- */
#include "fe_engine_template.hh"
/* -------------------------------------------------------------------------- */
namespace
akantu
{
/* -------------------------------------------------------------------------- */
/* compatibility functions */
/* -------------------------------------------------------------------------- */
template
<>
Real
FEEngineTemplate
<
IntegratorGauss
,
ShapeLagrange
,
_ek_cohesive
,
DefaultIntegrationOrderFunctor
>::
integrate
(
const
Array
<
Real
>
&
f
,
ElementType
type
,
GhostType
ghost_type
,
const
Array
<
Idx
>
&
filter_elements
)
const
{
AKANTU_DEBUG_IN
();
#ifndef AKANTU_NDEBUG
auto
nb_element
=
mesh
.
getNbElement
(
type
,
ghost_type
);
if
(
filter_elements
!=
empty_filter
)
{
nb_element
=
filter_elements
.
size
();
}
auto
nb_quadrature_points
=
getNbIntegrationPoints
(
type
);
AKANTU_DEBUG_ASSERT
(
f
.
size
()
==
nb_element
*
nb_quadrature_points
,
"The vector f("
<<
f
.
getID
()
<<
") has not the good size."
);
AKANTU_DEBUG_ASSERT
(
f
.
getNbComponent
()
==
1
,
"The vector f("
<<
f
.
getID
()
<<
") has not the good number of component."
);
#endif
Real
integral
=
tuple_dispatch
<
ElementTypes_t
<
_ek_cohesive
>>
(
[
&
](
auto
&&
enum_type
)
{
constexpr
ElementType
type
=
aka
::
decay_v
<
decltype
(
enum_type
)
>
;
return
integrator
.
integrate
<
type
>
(
f
,
ghost_type
,
filter_elements
);
},
type
);
AKANTU_DEBUG_OUT
();
return
integral
;
}
/* -------------------------------------------------------------------------- */
template
<>
void
FEEngineTemplate
<
IntegratorGauss
,
ShapeLagrange
,
_ek_cohesive
,
DefaultIntegrationOrderFunctor
>::
integrate
(
const
Array
<
Real
>
&
f
,
Array
<
Real
>
&
intf
,
Int
nb_degree_of_freedom
,
ElementType
type
,
GhostType
ghost_type
,
const
Array
<
Idx
>
&
filter_elements
)
const
{
#ifndef AKANTU_NDEBUG
auto
nb_element
=
mesh
.
getNbElement
(
type
,
ghost_type
);
if
(
filter_elements
!=
empty_filter
)
{
nb_element
=
filter_elements
.
size
();
}
auto
nb_quadrature_points
=
getNbIntegrationPoints
(
type
);
AKANTU_DEBUG_ASSERT
(
f
.
size
()
==
Int
(
nb_element
*
nb_quadrature_points
),
"The vector f("
<<
f
.
getID
()
<<
" size "
<<
f
.
size
()
<<
") has not the good size ("
<<
nb_element
<<
")."
);
AKANTU_DEBUG_ASSERT
(
f
.
getNbComponent
()
==
Int
(
nb_degree_of_freedom
),
"The vector f("
<<
f
.
getID
()
<<
") has not the good number of component."
);
AKANTU_DEBUG_ASSERT
(
intf
.
getNbComponent
()
==
Int
(
nb_degree_of_freedom
),
"The vector intf("
<<
intf
.
getID
()
<<
") has not the good number of component."
);
AKANTU_DEBUG_ASSERT
(
intf
.
size
()
==
nb_element
,
"The vector intf("
<<
intf
.
getID
()
<<
") has not the good size."
);
#endif
tuple_dispatch
<
ElementTypes_t
<
_ek_cohesive
>>
(
[
&
](
auto
&&
enum_type
)
{
constexpr
ElementType
type
=
aka
::
decay_v
<
decltype
(
enum_type
)
>
;
integrator
.
integrate
<
type
>
(
f
,
intf
,
nb_degree_of_freedom
,
ghost_type
,
filter_elements
);
},
type
);
}
/* -------------------------------------------------------------------------- */
template
<>
void
FEEngineTemplate
<
IntegratorGauss
,
ShapeLagrange
,
_ek_cohesive
,
DefaultIntegrationOrderFunctor
>::
gradientOnIntegrationPoints
(
const
Array
<
Real
>
&
/* u */
,
Array
<
Real
>
&
/* nablauq */
,
Int
/* nb_degree_of_freedom */
,
ElementType
/* type */
,
GhostType
/* ghost_type */
,
const
Array
<
Idx
>
&
)
const
{
AKANTU_TO_IMPLEMENT
();
}
/* -------------------------------------------------------------------------- */
}
// namespace akantu
Event Timeline
Log In to Comment