Skip to content
Snippets Groups Projects
Commit 144e6a80 authored by Axel Kohlmeyer's avatar Axel Kohlmeyer
Browse files

whitespace cleanup

parent 72ac0734
No related branches found
No related tags found
No related merge requests found
......@@ -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);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment