Skip to content
Snippets Groups Projects
Commit b6be55e2 authored by Dmitri Naumov's avatar Dmitri Naumov
Browse files

[MeL] Add missing parameter documentation.

parent 2ce60445
No related branches found
No related tags found
No related merge requests found
...@@ -48,11 +48,15 @@ class Mesh : BaseLib::Counter<Mesh> ...@@ -48,11 +48,15 @@ class Mesh : BaseLib::Counter<Mesh>
public: public:
/// Constructor using a mesh name and an array of nodes and elements /// Constructor using a mesh name and an array of nodes and elements
/// @param name Mesh name. /// @param name Mesh name.
/// @param nodes A vector of mesh nodes. In case nonlinear nodes are involved, one should /// @param nodes A vector of mesh nodes. In case nonlinear nodes are
/// put them after line ones in the vector and set "n_base_nodes" argument. /// involved, one should put them after line ones in
/// the vector and set "n_base_nodes" argument.
/// @param elements An array of mesh elements. /// @param elements An array of mesh elements.
/// @param n_base_nodes The number of base nodes. This is an optional parameter for nonlinear case. /// @param properties Mesh properties.
/// If the parameter is set to zero, we consider there are no nonlinear nodes. /// @param n_base_nodes The number of base nodes. This is an optional
/// parameter for nonlinear case. If the parameter is
/// set to zero, we consider there are no nonlinear
/// nodes.
Mesh(const std::string &name, Mesh(const std::string &name,
const std::vector<Node*> &nodes, const std::vector<Node*> &nodes,
const std::vector<Element*> &elements, const std::vector<Element*> &elements,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment