diff --git a/ProcessLib/Process.h b/ProcessLib/Process.h index 54e952dbaf482f3057634612d9576394999e7ed3..2a7f7fc75464aa9db4548462ebdd2e4e67a09841 100644 --- a/ProcessLib/Process.h +++ b/ProcessLib/Process.h @@ -110,6 +110,24 @@ protected: _linear_solver_options.reset(new BaseLib::ConfigTree(config)); } + /// Sets the initial condition values in the solution vector x for a given + /// process variable and component. + void setInitialConditions(ProcessVariable const& variable, + int const component_id) + { + std::size_t const n = _mesh.getNNodes(); + for (std::size_t i = 0; i < n; ++i) + { + MeshLib::Location const l(_mesh.getID(), + MeshLib::MeshItemType::Node, i); + auto const global_index = std::abs( + _local_to_global_index_map->getGlobalIndex(l, component_id)); + _x->set(global_index, + variable.getInitialConditionValue(*_mesh.getNode(i))); + } + } + +private: /// Creates global matrix, rhs and solution vectors, and the linear solver. void createLinearSolver(std::string const& solver_name) { @@ -141,24 +159,6 @@ protected: *_local_to_global_index_map, _mesh)); } - - /// Sets the initial condition values in the solution vector x for a given - /// process variable and component. - void setInitialConditions(ProcessVariable const& variable, - int const component_id) - { - std::size_t const n = _mesh.getNNodes(); - for (std::size_t i = 0; i < n; ++i) - { - MeshLib::Location const l(_mesh.getID(), - MeshLib::MeshItemType::Node, i); - auto const global_index = std::abs( - _local_to_global_index_map->getGlobalIndex(l, component_id)); - _x->set(global_index, - variable.getInitialConditionValue(*_mesh.getNode(i))); - } - } - protected: MeshLib::Mesh& _mesh; std::vector<MeshLib::MeshSubsets*> _all_mesh_subsets;