forked from lijiext/lammps
git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@4593 f3b2605a-c512-4ea7-a41b-209d697bcdaa
This commit is contained in:
parent
ec71e67a9f
commit
957abb3a95
|
@ -27,20 +27,20 @@ namespace LAMMPS_NS {
|
||||||
class FixLangevin : public Fix {
|
class FixLangevin : public Fix {
|
||||||
public:
|
public:
|
||||||
FixLangevin(class LAMMPS *, int, char **);
|
FixLangevin(class LAMMPS *, int, char **);
|
||||||
~FixLangevin();
|
virtual ~FixLangevin();
|
||||||
int setmask();
|
int setmask();
|
||||||
void init();
|
void init();
|
||||||
void setup(int);
|
void setup(int);
|
||||||
void post_force(int);
|
void post_force(int);
|
||||||
void post_force_respa(int, int, int);
|
void post_force_respa(int, int, int);
|
||||||
void end_of_step();
|
virtual void end_of_step();
|
||||||
void reset_target(double);
|
void reset_target(double);
|
||||||
void reset_dt();
|
void reset_dt();
|
||||||
int modify_param(int, char **);
|
int modify_param(int, char **);
|
||||||
double compute_scalar();
|
virtual double compute_scalar();
|
||||||
double memory_usage();
|
double memory_usage();
|
||||||
|
|
||||||
private:
|
protected:
|
||||||
int which,tally;
|
int which,tally;
|
||||||
double t_start,t_stop,t_period;
|
double t_start,t_stop,t_period;
|
||||||
double *gfactor1,*gfactor2,*ratio;
|
double *gfactor1,*gfactor2,*ratio;
|
||||||
|
@ -55,8 +55,8 @@ class FixLangevin : public Fix {
|
||||||
int nlevels_respa;
|
int nlevels_respa;
|
||||||
class RanMars *random;
|
class RanMars *random;
|
||||||
|
|
||||||
void post_force_no_tally();
|
virtual void post_force_no_tally();
|
||||||
void post_force_tally();
|
virtual void post_force_tally();
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue