diff --git a/src/pe/cr/DEM.impl.h b/src/pe/cr/DEM.impl.h index c64669ba210b48ca9f8101d7c09883c10405cc73..eb3a6b4e325616444808d21cf8d26db9fe9cc364 100644 --- a/src/pe/cr/DEM.impl.h +++ b/src/pe/cr/DEM.impl.h @@ -128,7 +128,7 @@ void DEMSolver<Integrator,ContactResolver>::timestep( real_t dt ) WALBERLA_ASSERT( bodyIt->checkInvariants(), "Invalid body state detected" ); WALBERLA_ASSERT( !bodyIt->hasSuperBody(), "Invalid superordinate body detected" ); - // Moving the capsule according to the acting forces (don't move a sleeping capsule) + // Moving the body according to the acting forces (don't move a sleeping body) if( bodyIt->isAwake() && !bodyIt->hasInfiniteMass() ) { integrate_( *bodyIt, dt, *this ); @@ -138,7 +138,7 @@ void DEMSolver<Integrator,ContactResolver>::timestep( real_t dt ) bodyIt->resetForceAndTorque(); // Checking the state of the rigid body - WALBERLA_ASSERT( bodyIt->checkInvariants(), "Invalid capsule state detected" ); + WALBERLA_ASSERT( bodyIt->checkInvariants(), "Invalid body state detected" ); // Resetting the acting forces bodyIt->resetForceAndTorque(); diff --git a/src/pe/cr/Integrators.h b/src/pe/cr/Integrators.h index 0c978fcda0d13a19086b5df89ef617856df74f04..1ea365f6661f542c73fde4ad31255cb5b18c2097 100644 --- a/src/pe/cr/Integrators.h +++ b/src/pe/cr/Integrators.h @@ -72,7 +72,7 @@ public: // Setting the axis-aligned bounding box id->calcBoundingBox(); - // Calculating the current motion of the capsule + // Calculating the current motion of the body id->calcMotion(); } }; @@ -120,7 +120,7 @@ public: // Setting the axis-aligned bounding box id->calcBoundingBox(); - // Calculating the current motion of the capsule + // Calculating the current motion of the body id->calcMotion(); } }; diff --git a/src/pe/cr/PlainIntegrator.impl.h b/src/pe/cr/PlainIntegrator.impl.h index 7b9c4ce45101e774ed936da68e81caab088f1f95..b96a6e2e0e46cac743062832c3ee4e8fc19f906b 100644 --- a/src/pe/cr/PlainIntegrator.impl.h +++ b/src/pe/cr/PlainIntegrator.impl.h @@ -65,14 +65,14 @@ void PlainIntegratorSolver<Integrator>::timestep( const real_t dt ) BodyStorage& localStorage = (*storage)[0]; for (auto bd = localStorage.begin(); bd != localStorage.end(); ++bd){ // Checking the state of the body - WALBERLA_ASSERT( bd->checkInvariants(), "Invalid capsule state detected" ); + WALBERLA_ASSERT( bd->checkInvariants(), "Invalid body state detected" ); WALBERLA_ASSERT( !bd->hasSuperBody(), "Invalid superordinate body detected" ); // Resetting the contact node and removing all attached contacts // bd->resetNode(); bd->clearContacts(); - // Moving the capsule according to the acting forces (don't move a sleeping capsule) + // Moving the body according to the acting forces (don't move a sleeping body) if( bd->isAwake() && !bd->hasInfiniteMass() ) { integrate_( *bd, dt, *this ); } @@ -80,8 +80,8 @@ void PlainIntegratorSolver<Integrator>::timestep( const real_t dt ) // Resetting the acting forces bd->resetForceAndTorque(); - // Checking the state of the capsule - WALBERLA_ASSERT( bd->checkInvariants(), "Invalid capsule state detected" ); + // Checking the state of the body + WALBERLA_ASSERT( bd->checkInvariants(), "Invalid body state detected" ); } } if (tt_!=NULL) tt_->stop("Integrate Bodies"); diff --git a/src/pe/rigidbody/CylindricalBoundary.cpp b/src/pe/rigidbody/CylindricalBoundary.cpp index 6b99c946384f11f2ecc5cd9f3d88a4e65956622d..66f639e49015a66ab41caf851690e678149c507b 100644 --- a/src/pe/rigidbody/CylindricalBoundary.cpp +++ b/src/pe/rigidbody/CylindricalBoundary.cpp @@ -56,7 +56,7 @@ namespace pe { CylindricalBoundary::CylindricalBoundary( id_t sid, id_t uid, const Vec3& gpos, const real_t radius, MaterialID material ) : GeomPrimitive( getStaticTypeID(), sid, uid, material ) // Initializing the base object - , radius_(radius) // Radius of the cylinder // Length of the capsule + , radius_(radius) // Radius of the cylinder { //boundaries are always considered locally and have infinite mass setGlobal( true ); @@ -66,11 +66,11 @@ CylindricalBoundary::CylindricalBoundary( id_t sid, id_t uid, const Vec3& gpos, // Checking the radius // Since the constructor is never directly called but only used in a small number - // of functions that already check the capsule arguments, only asserts are used here to + // of functions that already check the cylinder arguments, only asserts are used here to // double check the arguments. - WALBERLA_ASSERT_GREATER( radius, real_t(0), "Invalid capsule radius" ); + WALBERLA_ASSERT_GREATER( radius, real_t(0), "Invalid cylinder radius" ); - // Initializing the instantiated capsule + // Initializing the instantiated cylinder gpos_ = gpos; q_ = Quat(); // Setting the orientation R_ = q_.toRotationMatrix(); // Setting the rotation matrix diff --git a/src/pe/rigidbody/CylindricalBoundary.h b/src/pe/rigidbody/CylindricalBoundary.h index 4c095c1a20bae85959c756a856500ec7b4332b93..5d9b4c9d5da23922f0858500e065b25ca884a6f0 100644 --- a/src/pe/rigidbody/CylindricalBoundary.h +++ b/src/pe/rigidbody/CylindricalBoundary.h @@ -175,7 +175,7 @@ inline id_t CylindricalBoundary::getStaticTypeID() //================================================================================================= //************************************************************************************************* -/*!\name Capsule operators */ +/*!\name Cylinder operators */ //@{ std::ostream& operator<<( std::ostream& os, const CylindricalBoundary& cb ); std::ostream& operator<<( std::ostream& os, CylindricalBoundaryID cb );