Merge remote-tracking branch 'lammps-ro/master' into lammps-icms
This commit is contained in:
@ -63,6 +63,14 @@ FixLangevinEff::~FixLangevinEff()
|
||||
|
||||
/* ---------------------------------------------------------------------- */
|
||||
|
||||
void FixLangevinEff::post_force(int vflag)
|
||||
{
|
||||
if (tallyflag) post_force_tally();
|
||||
else post_force_no_tally();
|
||||
}
|
||||
|
||||
/* ---------------------------------------------------------------------- */
|
||||
|
||||
void FixLangevinEff::post_force_no_tally()
|
||||
{
|
||||
double gamma1,gamma2,t_target;
|
||||
|
||||
@ -30,6 +30,7 @@ class FixLangevinEff : public FixLangevin {
|
||||
~FixLangevinEff();
|
||||
void end_of_step();
|
||||
double compute_scalar();
|
||||
void post_force(int);
|
||||
|
||||
private:
|
||||
double *erforcelangevin;
|
||||
|
||||
@ -31,7 +31,7 @@ class FixLangevin : public Fix {
|
||||
int setmask();
|
||||
void init();
|
||||
void setup(int);
|
||||
void post_force(int);
|
||||
virtual void post_force(int);
|
||||
void post_force_respa(int, int, int);
|
||||
virtual void end_of_step();
|
||||
void reset_target(double);
|
||||
|
||||
Reference in New Issue
Block a user