Missing word

This commit is contained in:
jtclemm
2024-07-25 17:54:52 -06:00
parent 49b377fc3d
commit d43e87bce1
7 changed files with 9 additions and 9 deletions

View File

@ -66,7 +66,7 @@ void FixMvvDPD::init()
error->all(FLERR,"Fix mvv/dpd requires atom attribute vest e.g. from atom style mdpd"); error->all(FLERR,"Fix mvv/dpd requires atom attribute vest e.g. from atom style mdpd");
// Cannot use vremap since its effects aren't propagated to vest // Cannot use vremap since its effects aren't propagated to vest
// see RHEO or SPH packages for examples patches // see RHEO or SPH packages for examples of patches
if (domain->deform_vremap) if (domain->deform_vremap)
error->all(FLERR, "Fix mvv/dpd cannot be used with velocity remapping"); error->all(FLERR, "Fix mvv/dpd cannot be used with velocity remapping");

View File

@ -74,7 +74,7 @@ void FixMvvEDPD::init()
if (!atom->edpd_flag) error->all(FLERR,"Fix mvv/edpd requires atom style edpd"); if (!atom->edpd_flag) error->all(FLERR,"Fix mvv/edpd requires atom style edpd");
// Cannot use vremap since its effects aren't propagated to vest // Cannot use vremap since its effects aren't propagated to vest
// see RHEO or SPH packages for examples patches // see RHEO or SPH packages for examples of patches
if (domain->deform_vremap) if (domain->deform_vremap)
error->all(FLERR, "Fix mvv/edpd cannot be used with velocity remapping"); error->all(FLERR, "Fix mvv/edpd cannot be used with velocity remapping");

View File

@ -72,7 +72,7 @@ void FixMvvTDPD::init()
if (!atom->tdpd_flag) error->all(FLERR,"Fix mvv/tdpd requires atom style tdpd"); if (!atom->tdpd_flag) error->all(FLERR,"Fix mvv/tdpd requires atom style tdpd");
// Cannot use vremap since its effects aren't propagated to vest // Cannot use vremap since its effects aren't propagated to vest
// see RHEO or SPH packages for examples patches // see RHEO or SPH packages for examples of patches
if (domain->deform_vremap) if (domain->deform_vremap)
error->all(FLERR, "Fix mvv/tdpd cannot be used with velocity remapping"); error->all(FLERR, "Fix mvv/tdpd cannot be used with velocity remapping");

View File

@ -352,7 +352,7 @@ void FixMesoMove::init () {
void FixMesoMove::setup_pre_force (int /*vflag*/) { void FixMesoMove::setup_pre_force (int /*vflag*/) {
// Cannot use vremap since its effects aren't propagated to vest // Cannot use vremap since its effects aren't propagated to vest
// see RHEO or SPH packages for examples patches // see RHEO or SPH packages for examples of patches
if (domain->deform_vremap) if (domain->deform_vremap)
error->all(FLERR, "Fix meso/move cannot be used with velocity remapping"); error->all(FLERR, "Fix meso/move cannot be used with velocity remapping");

View File

@ -94,7 +94,7 @@ void FixRigidMeso::setup (int vflag) {
} }
// Cannot use vremap since its effects aren't propagated to vest // Cannot use vremap since its effects aren't propagated to vest
// see RHEO or SPH packages for examples patches // see RHEO or SPH packages for examples of patches
if (domain->deform_vremap) if (domain->deform_vremap)
error->all(FLERR, "Fix rigid/meso cannot be used with velocity remapping"); error->all(FLERR, "Fix rigid/meso cannot be used with velocity remapping");
} }

View File

@ -117,7 +117,7 @@ void FixSMDIntegrateTlsph::init() {
vlimitsq = vlimit * vlimit; vlimitsq = vlimit * vlimit;
// Cannot use vremap since its effects aren't propagated to vest // Cannot use vremap since its effects aren't propagated to vest
// see RHEO or SPH packages for examples patches // see RHEO or SPH packages for examples of patches
if (domain->deform_vremap) if (domain->deform_vremap)
error->all(FLERR, "Fix smd/integrate_tlsph cannot be used with velocity remapping"); error->all(FLERR, "Fix smd/integrate_tlsph cannot be used with velocity remapping");
} }

View File

@ -146,7 +146,7 @@ void FixSMDIntegrateUlsph::init() {
vlimitsq = vlimit * vlimit; vlimitsq = vlimit * vlimit;
// Cannot use vremap since its effects aren't propagated to vest // Cannot use vremap since its effects aren't propagated to vest
// see RHEO or SPH packages for examples patches // see RHEO or SPH packages for examples of patches
if (domain->deform_vremap) if (domain->deform_vremap)
error->all(FLERR, "Fix smd/integrate_ulsph cannot be used with velocity remapping"); error->all(FLERR, "Fix smd/integrate_ulsph cannot be used with velocity remapping");
} }