Go to file
Martin Scheidt 71ff668cc3 moved #History from README.md to CHANGELOG.md 2022-04-19 19:52:54 +02:00
data Refactor input and import and set default values 2022-04-08 17:30:34 +02:00
examples Refactor input and import and set default values 2022-04-08 21:28:02 +02:00
src Refactor input and import and set default values 2022-04-08 17:30:34 +02:00
test Integrate calculation for additional points of interest 2022-01-22 03:11:43 +01:00
.gitignore master thesis submission 2021-10-13 16:49:42 +02:00
CHANGELOG.md moved #History from README.md to CHANGELOG.md 2022-04-19 19:52:54 +02:00
LICENSE master thesis submission 2021-10-13 16:49:42 +02:00
Project.toml Rename the module Preparation to Characteristics 2022-01-20 13:53:11 +01:00
README.md moved #History from README.md to CHANGELOG.md 2022-04-19 19:52:54 +02:00
TODO.md master thesis submission 2021-10-13 16:49:42 +02:00

README.md

TrainRun


Installation

The required julia packages are

  • YAML.jl
  • Dates.jl
  • DataFrames.jl
  • CSV.jl
  • Plots.jl

Review the settings.yaml file for your appropriate settings.


Minimal working example

include("../src/TrainRun.jl")
using .TrainRun

train_directory =  "data/trains/train_freight_V90withOreConsist.yaml"
running_path_directory = "data/paths/path_1_10km_nConst_vConst.yaml"
settings_directory = "data/settings.yaml"
(train, running_path, settings) = importYamlFiles(train_directory, running_path_directory, setting_directory)

train_run = calculateDrivingDynamics(train, running_path, settings)

Acknowledgement

This work was supervised by South Westphalia University of Applied Sciences and Technical University Braunschweig.


License

Open Source Initiative Approved License logo

ISC License (ISC)

Copyright 2021 Max Kannenberg

Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.

THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.