enhanced help message

development
Martin Scheidt 2022-06-09 15:10:59 +02:00
parent 6404dc5f5c
commit 6e52dfee87
2 changed files with 3 additions and 2 deletions

View File

@ -40,7 +40,7 @@ The running time will be return in seconds.
# Examples
```julia-repl
julia> trainrun(train, path)
julia> trainrun(train, path)[end,:t]
xxx.xx # in seconds
```
"""

View File

@ -14,7 +14,8 @@ The function Settings() will create a set of settings for the train run calculat
# Example
```
julia> my_settings = Settings() # will generate default settings
Settings(mass_point, :distance, 20, 3, running_time, :dataframe)
# massModel, stepVariable, stepSize, approxLevel, outputDetail, outputFormat
Settings(:mass_point, :distance, 20, 3, :running_time, :dataframe)
```
"""
function Settings(file="DEFAULT")