@@ -65,7 +65,7 @@ namespace
6565
6666/* ----------------------------------------------------------------------*/
6767/* ----------------------------------------------------------------------*/
68- void POROFLUIDMULTIPHASE::Utils:: setup_material (
68+ void POROFLUIDMULTIPHASE::setup_material (
6969 MPI_Comm comm, const std::string& struct_disname, const std::string& fluid_disname)
7070{
7171 // get the fluid discretization
@@ -131,7 +131,7 @@ void POROFLUIDMULTIPHASE::Utils::setup_material(
131131/* ----------------------------------------------------------------------*/
132132/* ----------------------------------------------------------------------*/
133133std::shared_ptr<Core::LinAlg::MultiVector<double >>
134- POROFLUIDMULTIPHASE::Utils:: convert_dof_vector_to_node_based_multi_vector (
134+ POROFLUIDMULTIPHASE::convert_dof_vector_to_node_based_multi_vector (
135135 const Core::FE::Discretization& dis, const Core::LinAlg::Vector<double >& vector, const int nds,
136136 const int numdofpernode)
137137{
@@ -158,7 +158,7 @@ POROFLUIDMULTIPHASE::Utils::convert_dof_vector_to_node_based_multi_vector(
158158/* ----------------------------------------------------------------------*
159159 | create algorithm |
160160 *----------------------------------------------------------------------*/
161- std::shared_ptr<Adapter::PoroFluidMultiphase> POROFLUIDMULTIPHASE::Utils:: create_algorithm (
161+ std::shared_ptr<Adapter::PoroFluidMultiphase> POROFLUIDMULTIPHASE::create_algorithm (
162162 POROFLUIDMULTIPHASE::TimeIntegrationScheme timintscheme,
163163 std::shared_ptr<Core::FE::Discretization> dis, const int linsolvernumber,
164164 const Teuchos::ParameterList& probparams, const Teuchos::ParameterList& poroparams,
@@ -192,7 +192,7 @@ std::shared_ptr<Adapter::PoroFluidMultiphase> POROFLUIDMULTIPHASE::Utils::create
192192/* --------------------------------------------------------------------------*
193193 | perform extended ghosting for artery dis kremheller 03/19 |
194194 *--------------------------------------------------------------------------*/
195- std::map<int , std::set<int >> POROFLUIDMULTIPHASE::Utils:: extended_ghosting_artery_discretization (
195+ std::map<int , std::set<int >> POROFLUIDMULTIPHASE::extended_ghosting_artery_discretization (
196196 Core::FE::Discretization& contdis, std::shared_ptr<Core::FE::Discretization> artdis,
197197 const bool evaluate_on_lateral_surface,
198198 const Inpar::ArteryNetwork::ArteryPoroMultiphaseScatraCouplingMethod couplingmethod)
@@ -287,7 +287,7 @@ std::map<int, std::set<int>> POROFLUIDMULTIPHASE::Utils::extended_ghosting_arter
287287 | create the fully overlapping artery discretization kremheller 03/19 |
288288 *--------------------------------------------------------------------------*/
289289std::shared_ptr<Core::FE::Discretization>
290- POROFLUIDMULTIPHASE::Utils:: create_fully_overlapping_artery_discretization (
290+ POROFLUIDMULTIPHASE::create_fully_overlapping_artery_discretization (
291291 Core::FE::Discretization& artdis, std::string disname, bool doboundaryconditions)
292292{
293293 // we clone a search discretization of the artery discretization on which the search will be
@@ -305,10 +305,10 @@ POROFLUIDMULTIPHASE::Utils::create_fully_overlapping_artery_discretization(
305305
306306/* ----------------------------------------------------------------------*
307307 *----------------------------------------------------------------------*/
308- std::map<int , std::set<int >> POROFLUIDMULTIPHASE::Utils:: oct_tree_search (
309- Core::FE::Discretization& contdis , Core::FE::Discretization& artdis ,
310- Core::FE::Discretization& artsearchdis , const bool evaluate_on_lateral_surface ,
311- const std::vector< int > artEleGIDs, std::set<int >& elecolset, std::set<int >& nodecolset)
308+ std::map<int , std::set<int >> POROFLUIDMULTIPHASE::oct_tree_search (Core::FE::Discretization& contdis,
309+ Core::FE::Discretization& artdis , Core::FE::Discretization& artsearchdis ,
310+ const bool evaluate_on_lateral_surface , const std::vector< int > artEleGIDs ,
311+ std::set<int >& elecolset, std::set<int >& nodecolset)
312312{
313313 // this map will be filled
314314 std::map<int , std::set<int >> nearbyelepairs;
@@ -401,7 +401,7 @@ std::map<int, std::set<int>> POROFLUIDMULTIPHASE::Utils::oct_tree_search(
401401/* ----------------------------------------------------------------------*
402402 | get axis-aligned bounding box of element kremheller 03/19 |
403403 *----------------------------------------------------------------------*/
404- Core::LinAlg::Matrix<3 , 2 > POROFLUIDMULTIPHASE::Utils:: get_aabb (Core::Elements::Element* ele,
404+ Core::LinAlg::Matrix<3 , 2 > POROFLUIDMULTIPHASE::get_aabb (Core::Elements::Element* ele,
405405 std::map<int , Core::LinAlg::Matrix<3 , 1 >>& positions, const bool evaluate_on_lateral_surface)
406406{
407407 const Core::LinAlg::SerialDenseMatrix xyze_element (
@@ -432,7 +432,7 @@ Core::LinAlg::Matrix<3, 2> POROFLUIDMULTIPHASE::Utils::get_aabb(Core::Elements::
432432/* ----------------------------------------------------------------------*
433433 | get nodal positions kremheller 10/19 |
434434 *----------------------------------------------------------------------*/
435- std::map<int , Core::LinAlg::Matrix<3 , 1 >> POROFLUIDMULTIPHASE::Utils:: get_nodal_positions (
435+ std::map<int , Core::LinAlg::Matrix<3 , 1 >> POROFLUIDMULTIPHASE::get_nodal_positions (
436436 Core::FE::Discretization& dis, const Core::LinAlg::Map* nodemap)
437437{
438438 std::map<int , Core::LinAlg::Matrix<3 , 1 >> positions;
@@ -453,7 +453,7 @@ std::map<int, Core::LinAlg::Matrix<3, 1>> POROFLUIDMULTIPHASE::Utils::get_nodal_
453453/* ----------------------------------------------------------------------*
454454 | get maximum nodal distance kremheller 05/18 |
455455 *----------------------------------------------------------------------*/
456- double POROFLUIDMULTIPHASE::Utils:: get_max_nodal_distance (
456+ double POROFLUIDMULTIPHASE::get_max_nodal_distance (
457457 Core::Elements::Element* ele, Core::FE::Discretization& dis)
458458{
459459 double maxdist = 0.0 ;
@@ -493,7 +493,7 @@ double POROFLUIDMULTIPHASE::Utils::get_max_nodal_distance(
493493/* ----------------------------------------------------------------------*
494494 | calculate vector norm kremheller 12/17 |
495495 *----------------------------------------------------------------------*/
496- double POROFLUIDMULTIPHASE::Utils:: calculate_vector_norm (
496+ double POROFLUIDMULTIPHASE::calculate_vector_norm (
497497 const enum POROFLUIDMULTIPHASE::VectorNorm norm, const Core::LinAlg::Vector<double >& vect)
498498{
499499 // L1 norm
0 commit comments