From 144e6a809157c380a8e0d7ddfbfc2fe2594b4763 Mon Sep 17 00:00:00 2001 From: Axel Kohlmeyer Date: Mon, 10 Oct 2016 09:40:09 -0400 Subject: [PATCH] whitespace cleanup --- doc/src/fix_flow_gauss.txt | 2 +- src/USER-MISC/fix_flow_gauss.cpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/src/fix_flow_gauss.txt b/doc/src/fix_flow_gauss.txt index 463d55c0e3..e4088cd02f 100644 --- a/doc/src/fix_flow_gauss.txt +++ b/doc/src/fix_flow_gauss.txt @@ -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 diff --git a/src/USER-MISC/fix_flow_gauss.cpp b/src/USER-MISC/fix_flow_gauss.cpp index 05d5786296..ad4c78f87f 100644 --- a/src/USER-MISC/fix_flow_gauss.cpp +++ b/src/USER-MISC/fix_flow_gauss.cpp @@ -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); } }