Skip to content

Commit

Permalink
Apply style updates
Browse files Browse the repository at this point in the history
  • Loading branch information
Agent Style authored and tupek2 committed Oct 1, 2024
1 parent 7cfdb16 commit a5d237b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 4 additions & 3 deletions src/serac/physics/base_physics.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -345,11 +345,12 @@ class BasePhysics {
* @param reaction_direction A FiniteElementState which specifies how the reactions dofs are weighted for the reaction
* qoi
*/
virtual void assembleDualAdjointLoad(const std::string& dual_name, const serac::FiniteElementState& reaction_direction)
virtual void assembleDualAdjointLoad(const std::string& dual_name,
const serac::FiniteElementState& reaction_direction)
{
(void)reaction_direction;
SLIC_ERROR_ROOT(axom::fmt::format("assembleDualAdjointLoad not enabled in physics module {}, dual name {} requested",
name_, dual_name));
SLIC_ERROR_ROOT(axom::fmt::format(
"assembleDualAdjointLoad not enabled in physics module {}, dual name {} requested", name_, dual_name));
}

/**
Expand Down
2 changes: 1 addition & 1 deletion src/serac/physics/solid_mechanics.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -1491,7 +1491,7 @@ class SolidMechanics<order, dim, Parameters<parameter_space...>, std::integer_se

/// @overload
void assembleDualAdjointLoad(const std::string& dual_name,
const serac::FiniteElementState& reaction_direction) override
const serac::FiniteElementState& reaction_direction) override
{
SLIC_ERROR_ROOT_IF(dual_name != "reactions", "Solid mechanics has reactions as its only dual");

Expand Down

0 comments on commit a5d237b

Please sign in to comment.