Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F112259130
dof_manager_default_inline_impl.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
Fri, May 9, 10:12
Size
4 KB
Mime Type
text/x-c
Expires
Sun, May 11, 10:12 (1 d, 15 h)
Engine
blob
Format
Raw Data
Handle
26010279
Attached To
rAKA akantu
dof_manager_default_inline_impl.cc
View Options
/**
* @file dof_manager_default_inline_impl.cc
*
* @author Nicolas Richart <nicolas.richart@epfl.ch>
*
* @date creation: Tue Aug 18 2015
* @date last modification: Wed Jan 31 2018
*
* @brief Implementation of the DOFManagerDefault inline functions
*
* @section LICENSE
*
* Copyright (©) 2015-2018 EPFL (Ecole Polytechnique Fédérale de Lausanne)
* Laboratory (LSMS - Laboratoire de Simulation en Mécanique des Solides)
*
* 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 "dof_manager_default.hh"
/* -------------------------------------------------------------------------- */
#ifndef __AKANTU_DOF_MANAGER_DEFAULT_INLINE_IMPL_CC__
#define __AKANTU_DOF_MANAGER_DEFAULT_INLINE_IMPL_CC__
namespace
akantu
{
/* -------------------------------------------------------------------------- */
inline
bool
DOFManagerDefault
::
isLocalOrMasterDOF
(
UInt
dof_num
)
{
Int
dof_type
=
this
->
dofs_type
(
dof_num
);
return
(
dof_type
==
Int
(
_nt_normal
))
||
(
dof_type
==
Int
(
_nt_master
));
}
/* -------------------------------------------------------------------------- */
inline
bool
DOFManagerDefault
::
isSlaveDOF
(
UInt
dof_num
)
{
Int
dof_type
=
this
->
dofs_type
(
dof_num
);
return
(
dof_type
>=
0
);
}
/* -------------------------------------------------------------------------- */
inline
const
Array
<
UInt
>
&
DOFManagerDefault
::
getLocalEquationNumbers
(
const
ID
&
dof_id
)
const
{
return
this
->
getDOFData
(
dof_id
).
local_equation_number
;
}
inline
const
Array
<
UInt
>
&
DOFManagerDefault
::
getDOFsAssociatedNodes
(
const
ID
&
dof_id
)
const
{
const
auto
&
dof_data
=
this
->
getDOFDataTyped
<
DOFDataDefault
>
(
dof_id
);
return
dof_data
.
associated_nodes
;
}
/* -------------------------------------------------------------------------- */
inline
void
DOFManagerDefault
::
extractElementEquationNumber
(
const
Array
<
UInt
>
&
equation_numbers
,
const
Vector
<
UInt
>
&
connectivity
,
UInt
nb_degree_of_freedom
,
Vector
<
UInt
>
&
element_equation_number
)
{
for
(
UInt
i
=
0
,
ld
=
0
;
i
<
connectivity
.
size
();
++
i
)
{
UInt
n
=
connectivity
(
i
);
for
(
UInt
d
=
0
;
d
<
nb_degree_of_freedom
;
++
d
,
++
ld
)
{
element_equation_number
(
ld
)
=
equation_numbers
(
n
*
nb_degree_of_freedom
+
d
);
}
}
}
/* -------------------------------------------------------------------------- */
inline
UInt
DOFManagerDefault
::
localToGlobalEquationNumber
(
UInt
local
)
const
{
return
this
->
global_equation_number
(
local
);
}
/* -------------------------------------------------------------------------- */
inline
bool
DOFManagerDefault
::
hasGlobalEquationNumber
(
UInt
global
)
const
{
auto
it
=
this
->
global_to_local_mapping
.
find
(
global
);
return
(
it
!=
this
->
global_to_local_mapping
.
end
());
}
/* -------------------------------------------------------------------------- */
inline
UInt
DOFManagerDefault
::
globalToLocalEquationNumber
(
UInt
global
)
const
{
auto
it
=
this
->
global_to_local_mapping
.
find
(
global
);
AKANTU_DEBUG_ASSERT
(
it
!=
this
->
global_to_local_mapping
.
end
(),
"This global equation number "
<<
global
<<
" does not exists in "
<<
this
->
id
);
return
it
->
second
;
}
/* -------------------------------------------------------------------------- */
inline
Int
DOFManagerDefault
::
getDOFType
(
UInt
local_id
)
const
{
return
this
->
dofs_type
(
local_id
);
}
/* -------------------------------------------------------------------------- */
}
// akantu
#endif
/* __AKANTU_DOF_MANAGER_DEFAULT_INLINE_IMPL_CC_ */
Event Timeline
Log In to Comment