Skip to content

Commit

Permalink
uncrustify
Browse files Browse the repository at this point in the history
  • Loading branch information
VidarStiernstrom committed Jan 13, 2025
1 parent 3718332 commit 807b72b
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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 );
} );
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit 807b72b

Please sign in to comment.