diff --git a/ProcessLib/DeactivatedSubdomain.cpp b/ProcessLib/DeactivatedSubdomain.cpp index d66c037c3d28d9d2e00386a4544162c71547a5e7..ac0db314a6f0f9f32e59efa0de5dfb05f1a0b37c 100644 --- a/ProcessLib/DeactivatedSubdomain.cpp +++ b/ProcessLib/DeactivatedSubdomain.cpp @@ -26,9 +26,9 @@ const std::string DeactivatedSubdomain::zero_parameter_name = DeactivetedSubdomainMesh::DeactivetedSubdomainMesh( std::unique_ptr<MeshLib::Mesh> deactivated_subdomain_mesh_, - std::vector<MeshLib::Node*>&& inactive_nodes_) + std::vector<MeshLib::Node*>&& inner_nodes_) : mesh(std::move(deactivated_subdomain_mesh_)), - inactive_nodes(std::move(inactive_nodes_)) + inner_nodes(std::move(inner_nodes_)) { } diff --git a/ProcessLib/DeactivatedSubdomain.h b/ProcessLib/DeactivatedSubdomain.h index 0366a20c96db9ed6906bfea636ae773d40fed96e..b561ea410f4909e5d6e94a231f9d797bd43f00e9 100644 --- a/ProcessLib/DeactivatedSubdomain.h +++ b/ProcessLib/DeactivatedSubdomain.h @@ -39,10 +39,10 @@ struct DeactivetedSubdomainMesh { DeactivetedSubdomainMesh( std::unique_ptr<MeshLib::Mesh> deactivated_subdomain_mesh_, - std::vector<MeshLib::Node*>&& inactive_nodes_); + std::vector<MeshLib::Node*>&& inner_nodes_); std::unique_ptr<MeshLib::Mesh> const mesh; - std::vector<MeshLib::Node*> const inactive_nodes; + std::vector<MeshLib::Node*> const inner_nodes; }; struct DeactivatedSubdomain diff --git a/ProcessLib/ProcessVariable.cpp b/ProcessLib/ProcessVariable.cpp index bb59622fcfc1a8916d0fb7d3c37933a3115da78d..990bdf1c6b23024d019276cd692342580951d9e8 100644 --- a/ProcessLib/ProcessVariable.cpp +++ b/ProcessLib/ProcessVariable.cpp @@ -261,7 +261,7 @@ void ProcessVariable::createBoundaryConditionsForDeactivatedSubDomains( DirichletBoundaryConditionWithinTimeInterval>( std::move(time_interval), parameter, *(deactivated_subdomain_mesh->mesh), - deactivated_subdomain_mesh->inactive_nodes, dof_table, + deactivated_subdomain_mesh->inner_nodes, dof_table, variable_id, component_id); #ifdef USE_PETSC