From 73231026688717ebf98fbf5039b723003b7d2254 Mon Sep 17 00:00:00 2001 From: Pavel Tomin Date: Wed, 29 Jan 2025 18:37:26 -0600 Subject: [PATCH] doxygen fix --- src/coreComponents/physicsSolvers/PhysicsSolverBase.hpp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/coreComponents/physicsSolvers/PhysicsSolverBase.hpp b/src/coreComponents/physicsSolvers/PhysicsSolverBase.hpp index 8dd55bb802..ac53ec3909 100644 --- a/src/coreComponents/physicsSolvers/PhysicsSolverBase.hpp +++ b/src/coreComponents/physicsSolvers/PhysicsSolverBase.hpp @@ -952,6 +952,13 @@ class PhysicsSolverBase : public ExecutableGroup template< typename CONSTITUTIVE_BASE_TYPE > static string getConstitutiveName( ParticleSubRegionBase const & subRegion ); // particle overload + /** + * @brief Register wrapper with given name and store constitutive model name on the subregion + * + * @tparam CONSTITUTIVE_BASE_TYPE the base type of the constitutive model. + * @param subRegion the subregion on which the constitutive model is registered + * @param the name name of the constitutive model of type CONSTITUTIVE_BASE_TYPE registered on the subregion. + */ template< typename CONSTITUTIVE_BASE_TYPE > void setConstitutiveName( ElementSubRegionBase & subRegion, string const & name ) const;