Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
MoReFEM
CoreLibrary
MoReFEM
Commits
b9247714
Commit
b9247714
authored
Apr 06, 2016
by
GILLES Sebastien
Browse files
#9
Doxygen: add Node, NodeBearer, Dof and LocalNode to FElt group.
parent
d869299f
Changes
5
Hide whitespace changes
Inline
Side-by-side
Sources/FiniteElement/FiniteElement.doxygen
View file @
b9247714
...
...
@@ -16,6 +16,10 @@
/// \namespace HappyHeart::Internal::FEltSpaceNS
/// \brief Namespace that enclose library's developer tools related to \a FEltSpace.
/// \namespace HappyHeart::ExceptionNS::Dof
/// \brief Namespace that enclose Dof-related exceptions.
///@}
...
...
Sources/FiniteElement/Nodes_and_dofs/Dof.hpp
View file @
b9247714
...
...
@@ -41,6 +41,10 @@ namespace HappyHeart
// ============================
/// \addtogroup FElt
///@{
/*!
* \brief Class in charge of dof informations.
*
...
...
@@ -249,6 +253,9 @@ namespace HappyHeart
bool
operator
==
(
const
Dof
&
dof1
,
const
Dof
&
dof2
);
///@} // \addtogroup
}
// namespace HappyHeart
...
...
Sources/FiniteElement/Nodes_and_dofs/LocalNode.hpp
View file @
b9247714
...
...
@@ -24,10 +24,14 @@
namespace
HappyHeart
{
/// \addtogroup FElt
///@{
/*!
* \brief A LocalNode is the pendant of a geometric interface in a BasicRefFElt.
* \brief A LocalNode is the pendant of a geometric interface in a
\a
BasicRefFElt.
*/
class
LocalNode
final
{
...
...
@@ -105,7 +109,9 @@ namespace HappyHeart
bool
operator
<
(
const
LocalNode
&
lhs
,
const
LocalNode
&
rhs
);
///@} // \addtogroup
}
// namespace HappyHeart
...
...
Sources/FiniteElement/Nodes_and_dofs/Node.hpp
View file @
b9247714
...
...
@@ -39,6 +39,10 @@ namespace HappyHeart
// ============================
/// \addtogroup FElt
///@{
/*!
* \brief A Node is an ensemble of Dofs located at the same place and addressing the same unknown and shape function
* label.
...
...
@@ -142,6 +146,9 @@ namespace HappyHeart
bool
operator
==
(
const
Node
&
lhs
,
const
Node
&
rhs
);
///@} // \addtogroup
}
// namespace HappyHeart
...
...
Sources/FiniteElement/Nodes_and_dofs/NodeBearer.hpp
View file @
b9247714
...
...
@@ -62,6 +62,9 @@ namespace HappyHeart
// ============================
/// \addtogroup FElt
///@{
//! Enum to list all the possible choices available to number the dofs.
enum
class
DofNumberingScheme
{
...
...
@@ -244,6 +247,8 @@ namespace HappyHeart
bool
operator
==
(
const
NodeBearer
&
node1
,
const
NodeBearer
&
node2
);
///@} // \addtogroup
}
// namespace HappyHeart
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment