diff --git a/ProcessLib/Process.h b/ProcessLib/Process.h
index aa8c8ecb76a57df28905cdcb99b8ceef76ec5c94..b76b93d2d9e20aa1c357f924f948cdb0d6878dc3 100644
--- a/ProcessLib/Process.h
+++ b/ProcessLib/Process.h
@@ -18,8 +18,8 @@ namespace ProcessLib
 class Process
 {
 public:
-    Process(MeshLib::Mesh const& mesh, std::size_t const numberOfNodeVariables)
-        : _mesh(mesh), _numberNodeDOFs(numberOfNodeVariables)
+    Process(MeshLib::Mesh const& mesh, std::size_t const numberOfNodeComponents)
+        : _mesh(mesh), _numberOfNodeComponents(numberOfNodeComponents)
     { }
 
     virtual ~Process() = default;
@@ -28,7 +28,7 @@ public:
 
 protected:
     MeshLib::Mesh const& _mesh;
-    std::size_t const _numberNodeDOFs;
+    std::size_t const _numberOfNodeComponents;
 };
 
 }   // namespace ProcessLib