whitespace cleanup
This commit is contained in:
@ -125,7 +125,7 @@ output"_thermo_style.html.
|
||||
The "fix_modify"_fix_modify.html {respa} option is supported by this
|
||||
fix. This allows the user to set at which level of the "rRESPA"_run_style.html
|
||||
integrator the fix computes and adds the external acceleration. Default is the
|
||||
outermost level.
|
||||
outermost level.
|
||||
|
||||
This fix computes a global scalar and a global 3-vector of forces,
|
||||
which can be accessed by various "output
|
||||
|
||||
@ -64,7 +64,7 @@ FixFlowGauss::FixFlowGauss(LAMMPS *lmp, int narg, char **arg) :
|
||||
extvector = 1;
|
||||
size_vector = 3;
|
||||
global_freq = 1; //data available every timestep
|
||||
respa_level_support = 1;
|
||||
respa_level_support = 1;
|
||||
//default respa level=outermost level is set in init()
|
||||
|
||||
dimension = domain->dimension;
|
||||
@ -124,7 +124,7 @@ void FixFlowGauss::init()
|
||||
//if specified level too high, set to max level
|
||||
if (strstr(update->integrate_style,"respa")) {
|
||||
ilevel_respa = ((Respa *) update->integrate)->nlevels-1;
|
||||
if (respa_level >= 0)
|
||||
if (respa_level >= 0)
|
||||
ilevel_respa = MIN(respa_level,ilevel_respa);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user