whitespace cleanup

This commit is contained in:
Axel Kohlmeyer
2016-10-10 09:40:09 -04:00
parent 72ac073412
commit 144e6a8091
2 changed files with 3 additions and 3 deletions

View File

@ -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

View File

@ -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);
}
}