From 807b72bfd7fe74a34e8fb409000044d24312e693 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vidar=20Stiernstr=C3=B6m?= Date: Mon, 13 Jan 2025 08:52:46 -0800 Subject: [PATCH] uncrustify --- .../contact/ContactSolverBase.cpp | 2 +- .../inducedSeismicity/QDRateAndStateBase.hpp | 30 +++++++++---------- 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/src/coreComponents/physicsSolvers/contact/ContactSolverBase.cpp b/src/coreComponents/physicsSolvers/contact/ContactSolverBase.cpp index fea30a6689..c1c886aa3d 100644 --- a/src/coreComponents/physicsSolvers/contact/ContactSolverBase.cpp +++ b/src/coreComponents/physicsSolvers/contact/ContactSolverBase.cpp @@ -101,7 +101,7 @@ void ContactSolverBase::registerDataOnMesh( dataRepository::Group & meshBodies ) subRegion.registerField< fields::contact::deltaSlip >( getName() ). setDimLabels( 1, labelsTangent ).reference().resizeDimension< 1 >( 2 ); - + subRegion.registerField< fields::contact::deltaSlip_n >( this->getName() ). setDimLabels( 1, labelsTangent ).reference().resizeDimension< 1 >( 2 ); } ); diff --git a/src/coreComponents/physicsSolvers/inducedSeismicity/QDRateAndStateBase.hpp b/src/coreComponents/physicsSolvers/inducedSeismicity/QDRateAndStateBase.hpp index 60f69232cd..17b4ecb068 100644 --- a/src/coreComponents/physicsSolvers/inducedSeismicity/QDRateAndStateBase.hpp +++ b/src/coreComponents/physicsSolvers/inducedSeismicity/QDRateAndStateBase.hpp @@ -50,31 +50,31 @@ class QDRateAndStateBase : public PhysicsSolverBase * @param domain the domain object */ void saveState( DomainPartition & domain ) const; - + /** - * @brief Check that only one of slip rate or slip velocity are specified as initial conditions - * and initialize the unspecified field - * @param subRegion the element subregion - */ + * @brief Check that only one of slip rate or slip velocity are specified as initial conditions + * and initialize the unspecified field + * @param subRegion the element subregion + */ void enforceRateAndVelocityConsistency( SurfaceElementSubRegion & subRegion ) const; /** - * @brief Compute stresses and update tractions on the fault - * @param time_n the current time - * @param dt the time step - * @param cycleNumber the current cycle number - * @param domain the domain object - */ + * @brief Compute stresses and update tractions on the fault + * @param time_n the current time + * @param dt the time step + * @param cycleNumber the current cycle number + * @param domain the domain object + */ virtual real64 updateStresses( real64 const & time_n, real64 const & dt, const int cycleNumber, DomainPartition & domain ) const = 0; /** - * @brief Apply initial conditions to fields on the fault - * @param cycleNumber the current cycle number - * @param domain the domain object - */ + * @brief Apply initial conditions to fields on the fault + * @param cycleNumber the current cycle number + * @param domain the domain object + */ virtual void applyInitialConditionsToFault( int const cycleNumber, DomainPartition & domain ) const;