forked from lijiext/lammps
restore bugfixes and updates that were lost. flag time dependet. correct use of citeme.
This commit is contained in:
parent
9ef748bbaa
commit
b27179bbef
|
@ -12,14 +12,14 @@
|
||||||
------------------------------------------------------------------------- */
|
------------------------------------------------------------------------- */
|
||||||
|
|
||||||
/* -------------------------------------------------------------------------
|
/* -------------------------------------------------------------------------
|
||||||
Contributing authors:
|
Contributing authors:
|
||||||
Rodrigo Freitas (UC Berkeley) - rodrigof@berkeley.edu
|
Rodrigo Freitas (UC Berkeley) - rodrigof@berkeley.edu
|
||||||
Mark Asta (UC Berkeley) - mdasta@berkeley.edu
|
Mark Asta (UC Berkeley) - mdasta@berkeley.edu
|
||||||
Maurice de Koning (Unicamp/Brazil) - dekoning@ifi.unicamp.br
|
Maurice de Koning (Unicamp/Brazil) - dekoning@ifi.unicamp.br
|
||||||
------------------------------------------------------------------------- */
|
------------------------------------------------------------------------- */
|
||||||
|
|
||||||
#include "stdlib.h"
|
#include <stdlib.h>
|
||||||
#include "string.h"
|
#include <string.h>
|
||||||
#include "fix_ti_spring.h"
|
#include "fix_ti_spring.h"
|
||||||
#include "atom.h"
|
#include "atom.h"
|
||||||
#include "update.h"
|
#include "update.h"
|
||||||
|
@ -27,12 +27,13 @@
|
||||||
#include "respa.h"
|
#include "respa.h"
|
||||||
#include "memory.h"
|
#include "memory.h"
|
||||||
#include "error.h"
|
#include "error.h"
|
||||||
|
#include "citeme.h"
|
||||||
#include "force.h"
|
#include "force.h"
|
||||||
|
|
||||||
using namespace LAMMPS_NS;
|
using namespace LAMMPS_NS;
|
||||||
using namespace FixConst;
|
using namespace FixConst;
|
||||||
|
|
||||||
static const char cite_ti_spring[] =
|
static const char cite_fix_ti_spring[] =
|
||||||
"ti/spring command:\n\n"
|
"ti/spring command:\n\n"
|
||||||
"@article{freitas2016,\n"
|
"@article{freitas2016,\n"
|
||||||
" author={Freitas, Rodrigo and Asta, Mark and de Koning, Maurice},\n"
|
" author={Freitas, Rodrigo and Asta, Mark and de Koning, Maurice},\n"
|
||||||
|
@ -46,9 +47,11 @@ static const char cite_ti_spring[] =
|
||||||
|
|
||||||
/* ---------------------------------------------------------------------- */
|
/* ---------------------------------------------------------------------- */
|
||||||
|
|
||||||
FixTISpring::FixTISpring(LAMMPS *lmp, int narg, char **arg) :
|
FixTISpring::FixTISpring(LAMMPS *lmp, int narg, char **arg) :
|
||||||
Fix(lmp, narg, arg)
|
Fix(lmp, narg, arg)
|
||||||
{
|
{
|
||||||
|
if (lmp->citeme) lmp->citeme->add(cite_fix_ti_spring);
|
||||||
|
|
||||||
if (narg < 6 || narg > 8)
|
if (narg < 6 || narg > 8)
|
||||||
error->all(FLERR,"Illegal fix ti/spring command");
|
error->all(FLERR,"Illegal fix ti/spring command");
|
||||||
|
|
||||||
|
@ -62,22 +65,25 @@ FixTISpring::FixTISpring(LAMMPS *lmp, int narg, char **arg) :
|
||||||
extscalar = 1;
|
extscalar = 1;
|
||||||
extvector = 1;
|
extvector = 1;
|
||||||
|
|
||||||
|
// disallow resetting the time step, while this fix is defined
|
||||||
|
time_depend = 1;
|
||||||
|
|
||||||
// Spring constant.
|
// Spring constant.
|
||||||
k = force->numeric(FLERR,arg[3]);
|
k = force->numeric(FLERR,arg[3]);
|
||||||
if (k <= 0.0) error->all(FLERR,"Illegal fix ti/spring command");
|
if (k <= 0.0) error->all(FLERR,"Illegal fix ti/spring command");
|
||||||
|
|
||||||
// Perform initial allocation of atom-based array.
|
// Perform initial allocation of atom-based array
|
||||||
// Registar with Atom class.
|
// Register with Atom class
|
||||||
xoriginal = NULL;
|
xoriginal = NULL;
|
||||||
grow_arrays(atom->nmax);
|
grow_arrays(atom->nmax);
|
||||||
atom->add_callback(0);
|
atom->add_callback(0);
|
||||||
atom->add_callback(1);
|
atom->add_callback(1);
|
||||||
|
|
||||||
// xoriginal = initial unwrapped positions of atom.
|
// xoriginal = initial unwrapped positions of atoms
|
||||||
|
|
||||||
double **x = atom->x;
|
double **x = atom->x;
|
||||||
int *mask = atom->mask;
|
int *mask = atom->mask;
|
||||||
tagint *image = atom->image;
|
imageint *image = atom->image;
|
||||||
int nlocal = atom->nlocal;
|
int nlocal = atom->nlocal;
|
||||||
|
|
||||||
for (int i = 0; i < nlocal; i++) {
|
for (int i = 0; i < nlocal; i++) {
|
||||||
|
@ -86,22 +92,22 @@ FixTISpring::FixTISpring(LAMMPS *lmp, int narg, char **arg) :
|
||||||
}
|
}
|
||||||
|
|
||||||
// Time variables.
|
// Time variables.
|
||||||
t_switch = atoi(arg[4]); // Switching time.
|
t0 = update->ntimestep; // timestep of original/starting coordinates
|
||||||
t_equil = atoi(arg[5]); // Equilibration time.
|
t_switch = force->bnumeric(FLERR,arg[4]); // Number of steps for switching
|
||||||
t0 = update->ntimestep; // Initial time.
|
t_equil = force->bnumeric(FLERR,arg[5]); // Number of steps for equilibration
|
||||||
if (t_switch < 0.0) error->all(FLERR,"Illegal fix ti/spring command");
|
if ((t_switch <= 0) || (t_equil < 0))
|
||||||
if (t_equil < 0.0) error->all(FLERR,"Illegal fix ti/spring command");
|
error->all(FLERR,"Illegal fix ti/spring command");
|
||||||
|
|
||||||
// Coupling parameter initialization.
|
// Coupling parameter initialization
|
||||||
sf = 1;
|
sf = 1;
|
||||||
if (narg > 6) {
|
if (narg > 6) {
|
||||||
if (strcmp(arg[6], "function") == 0) sf = atoi(arg[7]);
|
if (strcmp(arg[6], "function") == 0) sf = force->inumeric(FLERR,arg[7]);
|
||||||
else error->all(FLERR,"Illegal fix ti/spring switching function");
|
else error->all(FLERR,"Illegal fix ti/spring switching function");
|
||||||
if ((sf!=1) && (sf!=2))
|
if ((sf!=1) && (sf!=2))
|
||||||
error->all(FLERR,"Illegal fix ti/spring switching function");
|
error->all(FLERR,"Illegal fix ti/spring switching function");
|
||||||
}
|
}
|
||||||
lambda = switch_func(0);
|
lambda = switch_func(0);
|
||||||
dlambda = dswitch_func(0);
|
dlambda = dswitch_func(0);
|
||||||
|
|
||||||
espring = 0.0;
|
espring = 0.0;
|
||||||
}
|
}
|
||||||
|
@ -163,14 +169,13 @@ void FixTISpring::min_setup(int vflag)
|
||||||
|
|
||||||
void FixTISpring::post_force(int vflag)
|
void FixTISpring::post_force(int vflag)
|
||||||
{
|
{
|
||||||
// If on the first equilibration do not calculate forces.
|
// do not calculate forces during equilibration
|
||||||
int t = update->ntimestep - t0;
|
if ((update->ntimestep - t0) < t_equil) return;
|
||||||
if(t < t_equil) return;
|
|
||||||
|
|
||||||
double **x = atom->x;
|
double **x = atom->x;
|
||||||
double **f = atom->f;
|
double **f = atom->f;
|
||||||
int *mask = atom->mask;
|
int *mask = atom->mask;
|
||||||
tagint *image = atom->image;
|
imageint *image = atom->image;
|
||||||
int nlocal = atom->nlocal;
|
int nlocal = atom->nlocal;
|
||||||
|
|
||||||
double dx, dy, dz;
|
double dx, dy, dz;
|
||||||
|
@ -209,21 +214,24 @@ void FixTISpring::min_post_force(int vflag)
|
||||||
|
|
||||||
/* ---------------------------------------------------------------------- */
|
/* ---------------------------------------------------------------------- */
|
||||||
|
|
||||||
void FixTISpring::initial_integrate(int vflag)
|
void FixTISpring::initial_integrate(int vflag)
|
||||||
{
|
{
|
||||||
// Update the coupling parameter value.
|
// Update the coupling parameter value if needed
|
||||||
double t = update->ntimestep - (t0+t_equil);
|
if ((update->ntimestep - t0) < t_equil) return;
|
||||||
|
|
||||||
if( (t >= 0) && (t <= t_switch) ) {
|
const bigint t = update->ntimestep - (t0+t_equil);
|
||||||
lambda = switch_func(t/t_switch);
|
const double r_switch = 1.0/t_switch;
|
||||||
dlambda = dswitch_func(t/t_switch);
|
|
||||||
|
if ( (t >= 0) && (t <= t_switch) ) {
|
||||||
|
lambda = switch_func(t*r_switch);
|
||||||
|
dlambda = dswitch_func(t*r_switch);
|
||||||
}
|
}
|
||||||
|
|
||||||
if( (t >= t_equil+t_switch) && (t <= (t_equil+2*t_switch)) ) {
|
if ( (t >= t_equil+t_switch) && (t <= (t_equil+2*t_switch)) ) {
|
||||||
lambda = switch_func(1.0 - (t - t_switch - t_equil)/t_switch );
|
lambda = switch_func(1.0 - (t - t_switch - t_equil)*r_switch);
|
||||||
dlambda = - dswitch_func(1.0 - (t - t_switch - t_equil)/t_switch );
|
dlambda = - dswitch_func(1.0 - (t - t_switch - t_equil)*r_switch);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ----------------------------------------------------------------------
|
/* ----------------------------------------------------------------------
|
||||||
energy of stretched springs
|
energy of stretched springs
|
||||||
|
@ -323,11 +331,11 @@ void FixTISpring::unpack_restart(int nlocal, int nth)
|
||||||
double **extra = atom->extra;
|
double **extra = atom->extra;
|
||||||
|
|
||||||
// skip to Nth set of extra values
|
// skip to Nth set of extra values
|
||||||
|
|
||||||
int m = 0;
|
int m = 0;
|
||||||
for (int i = 0; i < nth; i++) m += static_cast<int> (extra[nlocal][m]);
|
for (int i = 0; i < nth; i++) m += static_cast<int> (extra[nlocal][m]);
|
||||||
m++;
|
m++;
|
||||||
|
|
||||||
xoriginal[nlocal][0] = extra[nlocal][m++];
|
xoriginal[nlocal][0] = extra[nlocal][m++];
|
||||||
xoriginal[nlocal][1] = extra[nlocal][m++];
|
xoriginal[nlocal][1] = extra[nlocal][m++];
|
||||||
xoriginal[nlocal][2] = extra[nlocal][m++];
|
xoriginal[nlocal][2] = extra[nlocal][m++];
|
||||||
|
@ -352,10 +360,10 @@ int FixTISpring::size_restart(int nlocal)
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ----------------------------------------------------------------------
|
/* ----------------------------------------------------------------------
|
||||||
Switching function.
|
Switching function
|
||||||
------------------------------------------------------------------------- */
|
------------------------------------------------------------------------- */
|
||||||
|
|
||||||
double FixTISpring::switch_func(double t)
|
double FixTISpring::switch_func(double t)
|
||||||
{
|
{
|
||||||
if (sf == 1) return t;
|
if (sf == 1) return t;
|
||||||
|
|
||||||
|
@ -365,10 +373,10 @@ double FixTISpring::switch_func(double t)
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ----------------------------------------------------------------------
|
/* ----------------------------------------------------------------------
|
||||||
Switching function derivative.
|
Switching function derivative
|
||||||
------------------------------------------------------------------------- */
|
------------------------------------------------------------------------- */
|
||||||
|
|
||||||
double FixTISpring::dswitch_func(double t)
|
double FixTISpring::dswitch_func(double t)
|
||||||
{
|
{
|
||||||
if(sf == 1) return 1.0/t_switch;
|
if(sf == 1) return 1.0/t_switch;
|
||||||
|
|
||||||
|
|
|
@ -66,9 +66,9 @@ class FixTISpring : public Fix {
|
||||||
double lambda; // Coupling parameter.
|
double lambda; // Coupling parameter.
|
||||||
double dlambda; // Lambda variation with t.
|
double dlambda; // Lambda variation with t.
|
||||||
double linfo[2]; // Current lambda status.
|
double linfo[2]; // Current lambda status.
|
||||||
int t_switch; // Total switching steps.
|
bigint t_switch; // Total switching steps.
|
||||||
int t_equil; // Equilibration time.
|
bigint t_equil; // Equilibration time.
|
||||||
int t0; // Initial time.
|
bigint t0; // Initial time.
|
||||||
int sf; // Switching function option.
|
int sf; // Switching function option.
|
||||||
int nlevels_respa;
|
int nlevels_respa;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue