Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
SWIFT
SWIFTsim
Commits
4086d084
Commit
4086d084
authored
Feb 27, 2020
by
Matthieu Schaller
Browse files
Updated the README for the new runtime options
parent
bb7ed0d1
Changes
4
Hide whitespace changes
Inline
Side-by-side
README
View file @
4086d084
...
...
@@ -43,6 +43,7 @@ Parameters:
--limiter Run with time-step limiter.
--sync Run with time-step synchronization
of particles hit by feedback events.
--logger Run with the particle logger.
Simulation meta-options:
...
...
README.md
View file @
4086d084
...
...
@@ -94,6 +94,8 @@ Parameters:
--limiter Run with time-step limiter.
--sync Run with time-step synchronization
of particles hit by feedback events.
--logger Run with the particle logger.
Simulation meta-options:
--eagle Run with all the options needed for the
...
...
doc/RTD/source/CommandLineOptions/index.rst
View file @
4086d084
...
...
@@ -40,6 +40,8 @@ can be found by typing ``./swift -h``:
--limiter Run with time-step limiter.
--sync Run with time-step synchronization
of particles hit by feedback events.
--logger Run with the particle logger.
Simulation meta-options:
--eagle Run with all the options needed for the
...
...
examples/main.c
View file @
4086d084
...
...
@@ -228,6 +228,8 @@ int main(int argc, char *argv[]) {
"Run with time-step synchronization of particles hit by "
"feedback events."
,
NULL
,
0
,
0
),
OPT_BOOLEAN
(
0
,
"logger"
,
&
with_logger
,
"Run with the particle logger."
,
NULL
,
0
,
0
),
OPT_GROUP
(
" Simulation meta-options:
\n
"
),
OPT_BOOLEAN
(
...
...
@@ -253,8 +255,6 @@ int main(int argc, char *argv[]) {
"Overwrite the CPU "
"frequency (Hz) to be used for time measurements."
,
NULL
,
0
,
0
),
OPT_BOOLEAN
(
0
,
"logger"
,
&
with_logger
,
"Run with the particle logger."
,
NULL
,
0
,
0
),
OPT_INTEGER
(
'n'
,
"steps"
,
&
nsteps
,
"Execute a fixed number of time steps. When unset use the "
"time_end parameter to stop."
,
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment