git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@4021 f3b2605a-c512-4ea7-a41b-209d697bcdaa
This commit is contained in:
@ -27,15 +27,24 @@ namespace LAMMPS_NS {
|
||||
class FixEfield : public Fix {
|
||||
public:
|
||||
FixEfield(class LAMMPS *, int, char **);
|
||||
~FixEfield();
|
||||
int setmask();
|
||||
void init();
|
||||
void setup(int);
|
||||
void post_force(int);
|
||||
void post_force_respa(int, int, int);
|
||||
double memory_usage();
|
||||
|
||||
private:
|
||||
double ex,ey,ez;
|
||||
int varflag;
|
||||
char *xstr,*ystr,*zstr;
|
||||
int xvar,yvar,zvar,xvarstyle,yvarstyle,zvarstyle;
|
||||
int nlevels_respa;
|
||||
double efactor;
|
||||
|
||||
int maxatom;
|
||||
double **efield;
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user