Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F121612701
shape_lagrange_base_inline_impl.hh
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
Sat, Jul 12, 11:12
Size
2 KB
Mime Type
text/x-c++
Expires
Mon, Jul 14, 11:12 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
27355758
Attached To
rAKA akantu
shape_lagrange_base_inline_impl.hh
View Options
/**
* Copyright (©) 2017-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 "shape_lagrange_base.hh"
/* -------------------------------------------------------------------------- */
#ifndef AKANTU_SHAPE_LAGRANGE_BASE_INLINE_IMPL_HH_
#define AKANTU_SHAPE_LAGRANGE_BASE_INLINE_IMPL_HH_
namespace
akantu
{
/* -------------------------------------------------------------------------- */
template
<
ElementType
type
>
void
ShapeLagrangeBase
::
computeShapesOnIntegrationPoints
(
const
Array
<
Real
>
&
,
const
Ref
<
const
MatrixXr
>
integration_points
,
Array
<
Real
>
&
shapes
,
GhostType
ghost_type
,
const
Array
<
Int
>
&
filter_elements
)
const
{
AKANTU_DEBUG_IN
();
auto
nb_points
=
integration_points
.
cols
();
auto
nb_element
=
mesh
.
getConnectivity
(
type
,
ghost_type
).
size
();
shapes
.
resize
(
nb_element
*
nb_points
);
#if !defined(AKANTU_NDEBUG)
auto
size_of_shapes
=
ElementClass
<
type
>::
getShapeSize
();
AKANTU_DEBUG_ASSERT
(
shapes
.
getNbComponent
()
==
size_of_shapes
,
"The shapes array does not have the correct "
<<
"number of component"
);
#endif
auto
shapes_it
=
make_view
(
shapes
,
ElementClass
<
type
>::
getNbNodesPerInterpolationElement
(),
nb_points
)
.
begin
();
auto
shapes_begin
=
shapes_it
;
if
(
filter_elements
!=
empty_filter
)
{
nb_element
=
filter_elements
.
size
();
}
for
(
Int
elem
=
0
;
elem
<
nb_element
;
++
elem
)
{
if
(
filter_elements
!=
empty_filter
)
{
shapes_it
=
shapes_begin
+
filter_elements
(
elem
);
}
auto
&&
N
=
*
shapes_it
;
ElementClass
<
type
>::
computeShapes
(
integration_points
,
N
);
if
(
filter_elements
==
empty_filter
)
{
++
shapes_it
;
}
}
AKANTU_DEBUG_OUT
();
}
}
// namespace akantu
#endif
/* AKANTU_SHAPE_LAGRANGE_BASE_INLINE_IMPL_HH_ */
Event Timeline
Log In to Comment