@@ -28,8 +28,8 @@ FOUR_C_NAMESPACE_OPEN
2828/* ----------------------------------------------------------------------*
2929 | constructor (public) kremheller 04/18 |
3030 *----------------------------------------------------------------------*/
31- POROFLUIDMULTIPHASE ::MeshtyingStrategyArtery::MeshtyingStrategyArtery (
32- POROFLUIDMULTIPHASE ::TimIntImpl* porofluidmultitimint, const Teuchos::ParameterList& probparams,
31+ PoroPressureBased ::MeshtyingStrategyArtery::MeshtyingStrategyArtery (
32+ PoroPressureBased ::TimIntImpl* porofluidmultitimint, const Teuchos::ParameterList& probparams,
3333 const Teuchos::ParameterList& poroparams)
3434 : MeshtyingStrategyBase(porofluidmultitimint, probparams, poroparams)
3535{
@@ -114,7 +114,7 @@ POROFLUIDMULTIPHASE::MeshtyingStrategyArtery::MeshtyingStrategyArtery(
114114/* ----------------------------------------------------------------------*
115115 | prepare time loop kremheller 04/18 |
116116 *----------------------------------------------------------------------*/
117- void POROFLUIDMULTIPHASE ::MeshtyingStrategyArtery::prepare_time_loop ()
117+ void PoroPressureBased ::MeshtyingStrategyArtery::prepare_time_loop ()
118118{
119119 artnettimint_->prepare_time_loop ();
120120 return ;
@@ -123,7 +123,7 @@ void POROFLUIDMULTIPHASE::MeshtyingStrategyArtery::prepare_time_loop()
123123/* ----------------------------------------------------------------------*
124124 | setup the variables to do a new time step (public) kremheller 04/18 |
125125 *----------------------------------------------------------------------*/
126- void POROFLUIDMULTIPHASE ::MeshtyingStrategyArtery::prepare_time_step ()
126+ void PoroPressureBased ::MeshtyingStrategyArtery::prepare_time_step ()
127127{
128128 artnettimint_->prepare_time_step ();
129129 return ;
@@ -133,7 +133,7 @@ void POROFLUIDMULTIPHASE::MeshtyingStrategyArtery::prepare_time_step()
133133 | current solution becomes most recent solution of next timestep |
134134 | kremheller 04/18 |
135135 *----------------------------------------------------------------------*/
136- void POROFLUIDMULTIPHASE ::MeshtyingStrategyArtery::update ()
136+ void PoroPressureBased ::MeshtyingStrategyArtery::update ()
137137{
138138 artnettimint_->time_update ();
139139 return ;
@@ -142,7 +142,7 @@ void POROFLUIDMULTIPHASE::MeshtyingStrategyArtery::update()
142142/* --------------------------------------------------------------------------*
143143 | initialize the linear solver kremheller 07/20 |
144144 *--------------------------------------------------------------------------*/
145- void POROFLUIDMULTIPHASE ::MeshtyingStrategyArtery::initialize_linear_solver (
145+ void PoroPressureBased ::MeshtyingStrategyArtery::initialize_linear_solver (
146146 std::shared_ptr<Core::LinAlg::Solver> solver)
147147{
148148 const Teuchos::ParameterList& porofluidparams =
@@ -188,7 +188,7 @@ void POROFLUIDMULTIPHASE::MeshtyingStrategyArtery::initialize_linear_solver(
188188/* --------------------------------------------------------------------------*
189189 | solve linear system of equations kremheller 04/18 |
190190 *--------------------------------------------------------------------------*/
191- void POROFLUIDMULTIPHASE ::MeshtyingStrategyArtery::linear_solve (
191+ void PoroPressureBased ::MeshtyingStrategyArtery::linear_solve (
192192 std::shared_ptr<Core::LinAlg::Solver> solver,
193193 std::shared_ptr<Core::LinAlg::SparseOperator> sysmat,
194194 std::shared_ptr<Core::LinAlg::Vector<double >> increment,
@@ -211,7 +211,7 @@ void POROFLUIDMULTIPHASE::MeshtyingStrategyArtery::linear_solve(
211211/* ----------------------------------------------------------------------*
212212 | Calculate problem specific norm kremheller 03/18 |
213213 *----------------------------------------------------------------------*/
214- void POROFLUIDMULTIPHASE ::MeshtyingStrategyArtery::calculate_norms (std::vector<double >& preresnorm,
214+ void PoroPressureBased ::MeshtyingStrategyArtery::calculate_norms (std::vector<double >& preresnorm,
215215 std::vector<double >& incprenorm, std::vector<double >& prenorm,
216216 const std::shared_ptr<const Core::LinAlg::Vector<double >> increment)
217217{
@@ -245,7 +245,7 @@ void POROFLUIDMULTIPHASE::MeshtyingStrategyArtery::calculate_norms(std::vector<d
245245/* ----------------------------------------------------------------------*
246246 | create result test for this field kremheller 04/18 |
247247 *----------------------------------------------------------------------*/
248- void POROFLUIDMULTIPHASE ::MeshtyingStrategyArtery::create_field_test ()
248+ void PoroPressureBased ::MeshtyingStrategyArtery::create_field_test ()
249249{
250250 std::shared_ptr<Core::Utils::ResultTest> arteryresulttest = artnettimint_->create_field_test ();
251251 Global::Problem::instance ()->add_field_test (arteryresulttest);
@@ -255,7 +255,7 @@ void POROFLUIDMULTIPHASE::MeshtyingStrategyArtery::create_field_test()
255255/* ----------------------------------------------------------------------*
256256 | read restart data kremheller 04/18 |
257257 -----------------------------------------------------------------------*/
258- void POROFLUIDMULTIPHASE ::MeshtyingStrategyArtery::read_restart (const int step)
258+ void PoroPressureBased ::MeshtyingStrategyArtery::read_restart (const int step)
259259{
260260 artnettimint_->read_restart (step);
261261
@@ -265,7 +265,7 @@ void POROFLUIDMULTIPHASE::MeshtyingStrategyArtery::read_restart(const int step)
265265/* ----------------------------------------------------------------------*
266266 | output of solution vector to BINIO kremheller 04/18 |
267267 *----------------------------------------------------------------------*/
268- void POROFLUIDMULTIPHASE ::MeshtyingStrategyArtery::output ()
268+ void PoroPressureBased ::MeshtyingStrategyArtery::output ()
269269{
270270 if (porofluidmultitimint_->step () != 0 ) artnettimint_->output (false , nullptr );
271271
@@ -275,7 +275,7 @@ void POROFLUIDMULTIPHASE::MeshtyingStrategyArtery::output()
275275/* ----------------------------------------------------------------------*
276276 | evaluate matrix and rhs kremheller 04/18 |
277277 *----------------------------------------------------------------------*/
278- void POROFLUIDMULTIPHASE ::MeshtyingStrategyArtery::evaluate ()
278+ void PoroPressureBased ::MeshtyingStrategyArtery::evaluate ()
279279{
280280 arttoporofluidcoupling_->set_solution_vectors (
281281 porofluidmultitimint_->phinp (), porofluidmultitimint_->phin (), artnettimint_->pressurenp ());
@@ -301,7 +301,7 @@ void POROFLUIDMULTIPHASE::MeshtyingStrategyArtery::evaluate()
301301 | extract and update kremheller 04/18 |
302302 *----------------------------------------------------------------------*/
303303std::shared_ptr<const Core::LinAlg::Vector<double >>
304- POROFLUIDMULTIPHASE ::MeshtyingStrategyArtery::extract_and_update_iter (
304+ PoroPressureBased ::MeshtyingStrategyArtery::extract_and_update_iter (
305305 const std::shared_ptr<const Core::LinAlg::Vector<double >> inc)
306306{
307307 std::shared_ptr<const Core::LinAlg::Vector<double >> arterypressinc;
@@ -318,7 +318,7 @@ POROFLUIDMULTIPHASE::MeshtyingStrategyArtery::extract_and_update_iter(
318318 | artery dof row map kremheller 04/18 |
319319 *----------------------------------------------------------------------*/
320320std::shared_ptr<const Core::LinAlg::Map>
321- POROFLUIDMULTIPHASE ::MeshtyingStrategyArtery::artery_dof_row_map () const
321+ PoroPressureBased ::MeshtyingStrategyArtery::artery_dof_row_map () const
322322{
323323 return arttoporofluidcoupling_->artery_dof_row_map ();
324324}
@@ -327,7 +327,7 @@ POROFLUIDMULTIPHASE::MeshtyingStrategyArtery::artery_dof_row_map() const
327327 | access to block system matrix of artery poro problem kremheller 04/18 |
328328 *-----------------------------------------------------------------------*/
329329std::shared_ptr<Core::LinAlg::BlockSparseMatrixBase>
330- POROFLUIDMULTIPHASE ::MeshtyingStrategyArtery::artery_porofluid_sysmat () const
330+ PoroPressureBased ::MeshtyingStrategyArtery::artery_porofluid_sysmat () const
331331{
332332 return comb_systemmatrix_;
333333}
@@ -336,7 +336,7 @@ POROFLUIDMULTIPHASE::MeshtyingStrategyArtery::artery_porofluid_sysmat() const
336336 | return coupled residual kremheller 05/18 |
337337 *----------------------------------------------------------------------*/
338338std::shared_ptr<const Core::LinAlg::Vector<double >>
339- POROFLUIDMULTIPHASE ::MeshtyingStrategyArtery::artery_porofluid_rhs () const
339+ PoroPressureBased ::MeshtyingStrategyArtery::artery_porofluid_rhs () const
340340{
341341 return rhs_;
342342}
@@ -345,7 +345,7 @@ POROFLUIDMULTIPHASE::MeshtyingStrategyArtery::artery_porofluid_rhs() const
345345 | extract and update kremheller 04/18 |
346346 *----------------------------------------------------------------------*/
347347std::shared_ptr<const Core::LinAlg::Vector<double >>
348- POROFLUIDMULTIPHASE ::MeshtyingStrategyArtery::combined_increment (
348+ PoroPressureBased ::MeshtyingStrategyArtery::combined_increment (
349349 const std::shared_ptr<const Core::LinAlg::Vector<double >> inc) const
350350{
351351 return comb_increment_;
@@ -354,7 +354,7 @@ POROFLUIDMULTIPHASE::MeshtyingStrategyArtery::combined_increment(
354354/* ----------------------------------------------------------------------*
355355 | check initial fields kremheller 06/18 |
356356 *----------------------------------------------------------------------*/
357- void POROFLUIDMULTIPHASE ::MeshtyingStrategyArtery::check_initial_fields (
357+ void PoroPressureBased ::MeshtyingStrategyArtery::check_initial_fields (
358358 std::shared_ptr<const Core::LinAlg::Vector<double >> vec_cont) const
359359{
360360 arttoporofluidcoupling_->check_initial_fields (vec_cont, artnettimint_->pressurenp ());
@@ -364,7 +364,7 @@ void POROFLUIDMULTIPHASE::MeshtyingStrategyArtery::check_initial_fields(
364364/* -------------------------------------------------------------------------*
365365 | set element pairs that are close kremheller 03/19 |
366366 *------------------------------------------------------------------------ */
367- void POROFLUIDMULTIPHASE ::MeshtyingStrategyArtery::set_nearby_ele_pairs (
367+ void PoroPressureBased ::MeshtyingStrategyArtery::set_nearby_ele_pairs (
368368 const std::map<int , std::set<int >>* nearbyelepairs)
369369{
370370 arttoporofluidcoupling_->set_nearby_ele_pairs (nearbyelepairs);
@@ -374,7 +374,7 @@ void POROFLUIDMULTIPHASE::MeshtyingStrategyArtery::set_nearby_ele_pairs(
374374/* -------------------------------------------------------------------------*
375375 | setup the strategy kremheller 03/19 |
376376 *------------------------------------------------------------------------ */
377- void POROFLUIDMULTIPHASE ::MeshtyingStrategyArtery::setup ()
377+ void PoroPressureBased ::MeshtyingStrategyArtery::setup ()
378378{
379379 arttoporofluidcoupling_->setup ();
380380 return ;
@@ -383,7 +383,7 @@ void POROFLUIDMULTIPHASE::MeshtyingStrategyArtery::setup()
383383/* ----------------------------------------------------------------------*
384384 | apply mesh movement kremheller 06/18 |
385385 *----------------------------------------------------------------------*/
386- void POROFLUIDMULTIPHASE ::MeshtyingStrategyArtery::apply_mesh_movement () const
386+ void PoroPressureBased ::MeshtyingStrategyArtery::apply_mesh_movement () const
387387{
388388 arttoporofluidcoupling_->apply_mesh_movement ();
389389 return ;
@@ -393,7 +393,7 @@ void POROFLUIDMULTIPHASE::MeshtyingStrategyArtery::apply_mesh_movement() const
393393 | access to blood vessel volume fraction kremheller 10/19 |
394394 *----------------------------------------------------------------------*/
395395std::shared_ptr<const Core::LinAlg::Vector<double >>
396- POROFLUIDMULTIPHASE ::MeshtyingStrategyArtery::blood_vessel_volume_fraction ()
396+ PoroPressureBased ::MeshtyingStrategyArtery::blood_vessel_volume_fraction ()
397397{
398398 return arttoporofluidcoupling_->blood_vessel_volume_fraction ();
399399}
0 commit comments