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

[PL] Rename numberNodeDOFs to numberOfNodeComponents.

parent eb3481b5
No related branches found
No related tags found
No related merge requests found
...@@ -18,8 +18,8 @@ namespace ProcessLib ...@@ -18,8 +18,8 @@ namespace ProcessLib
class Process class Process
{ {
public: public:
Process(MeshLib::Mesh const& mesh, std::size_t const numberOfNodeVariables) Process(MeshLib::Mesh const& mesh, std::size_t const numberOfNodeComponents)
: _mesh(mesh), _numberNodeDOFs(numberOfNodeVariables) : _mesh(mesh), _numberOfNodeComponents(numberOfNodeComponents)
{ } { }
virtual ~Process() = default; virtual ~Process() = default;
...@@ -28,7 +28,7 @@ public: ...@@ -28,7 +28,7 @@ public:
protected: protected:
MeshLib::Mesh const& _mesh; MeshLib::Mesh const& _mesh;
std::size_t const _numberNodeDOFs; std::size_t const _numberOfNodeComponents;
}; };
} // namespace ProcessLib } // namespace ProcessLib
......
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