Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
lammps
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
multiscale
lammps
Commits
144e6a80
Commit
144e6a80
authored
8 years ago
by
Axel Kohlmeyer
Browse files
Options
Downloads
Patches
Plain Diff
whitespace cleanup
parent
72ac0734
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
doc/src/fix_flow_gauss.txt
+1
-1
1 addition, 1 deletion
doc/src/fix_flow_gauss.txt
src/USER-MISC/fix_flow_gauss.cpp
+2
-2
2 additions, 2 deletions
src/USER-MISC/fix_flow_gauss.cpp
with
3 additions
and
3 deletions
doc/src/fix_flow_gauss.txt
+
1
−
1
View file @
144e6a80
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
src/USER-MISC/fix_flow_gauss.cpp
+
2
−
2
View file @
144e6a80
...
...
@@ -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
);
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment