From df46b9aa38fcca91ae653a62f20eb13b77c08957 Mon Sep 17 00:00:00 2001 From: Axel Kohlmeyer <akohlmey@gmail.com> Date: Tue, 22 Nov 2016 15:25:59 -0500 Subject: [PATCH] rename compute pressure/grem to compute PRESSURE/GREM --- src/USER-MISC/README | 2 +- src/USER-MISC/compute_pressure_grem.cpp | 2 +- src/USER-MISC/compute_pressure_grem.h | 8 ++++---- src/USER-MISC/fix_grem.cpp | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/USER-MISC/README b/src/USER-MISC/README index 4b2394f087..513973b4f5 100644 --- a/src/USER-MISC/README +++ b/src/USER-MISC/README @@ -29,7 +29,7 @@ bond_style harmonic/shift/cut, Carsten Svaneborg, science at zqex.dk, 8 Aug 11 compute ackland/atom, Gerolf Ziegenhain, gerolf at ziegenhain.com, 4 Oct 2007 compute basal/atom, Christopher Barrett, cdb333 at cavs.msstate.edu, 3 Mar 2013 compute temp/rotate, Laurent Joly (U Lyon), ljoly.ulyon at gmail.com, 8 Aug 11 -compute pressure/grem, David Stelter, dstelter@bu.edu, 22 Nov 16 +compute PRESSURE/GREM, David Stelter, dstelter@bu.edu, 22 Nov 16 dihedral_style cosine/shift/exp, Carsten Svaneborg, science at zqex.dk, 8 Aug 11 dihedral_style fourier, Loukas Peristeras, loukas.peristeras at scienomics.com, 27 Oct 12 dihedral_style nharmonic, Loukas Peristeras, loukas.peristeras at scienomics.com, 27 Oct 12 diff --git a/src/USER-MISC/compute_pressure_grem.cpp b/src/USER-MISC/compute_pressure_grem.cpp index 02b9e02459..984ac9894e 100644 --- a/src/USER-MISC/compute_pressure_grem.cpp +++ b/src/USER-MISC/compute_pressure_grem.cpp @@ -54,7 +54,7 @@ void ComputePressureGrem::init() // Initialize hook to gREM fix int ifix = modify->find_fix(fix_grem); if (ifix < 0) - error->all(FLERR,"Fix grem ID for compute pressure/grem does not exist"); + error->all(FLERR,"Fix grem ID for compute PRESSURE/GREM does not exist"); int dim; scale_grem = (double *)modify->fix[ifix]->extract("scale_grem",dim); diff --git a/src/USER-MISC/compute_pressure_grem.h b/src/USER-MISC/compute_pressure_grem.h index 115688e7ac..e6dc5e6839 100644 --- a/src/USER-MISC/compute_pressure_grem.h +++ b/src/USER-MISC/compute_pressure_grem.h @@ -13,7 +13,7 @@ #ifdef COMPUTE_CLASS -ComputeStyle(pressure/grem,ComputePressureGrem) +ComputeStyle(PRESSURE/GREM,ComputePressureGrem) #else @@ -80,12 +80,12 @@ E: Must use 'kspace_modify pressure/scalar no' for tensor components with kspace Otherwise MSM will compute only a scalar pressure. See the kspace_modify command for details on this setting. -E: Fix grem ID for compute pressure/grem does not exist +E: Fix grem ID for compute PRESSURE/GREM does not exist -Compute pressure/grem was passed an invalid fix id +Compute PRESSURE/GREM was passed an invalid fix id E: Cannot extract gREM scale factor from fix grem -The fix id passed to compute pressure/grem refers to an incompatible fix +The fix id passed to compute PRESSURE/GREM refers to an incompatible fix */ diff --git a/src/USER-MISC/fix_grem.cpp b/src/USER-MISC/fix_grem.cpp index 55d176f413..fd646fa7ad 100644 --- a/src/USER-MISC/fix_grem.cpp +++ b/src/USER-MISC/fix_grem.cpp @@ -97,7 +97,7 @@ FixGrem::FixGrem(LAMMPS *lmp, int narg, char **arg) : newarg = new char*[5]; newarg[0] = id_press; newarg[1] = (char *) "all"; - newarg[2] = (char *) "pressure/grem"; + newarg[2] = (char *) "PRESSURE/GREM"; newarg[3] = id_temp; newarg[4] = id; modify->add_compute(5,newarg); -- GitLab