Go to file
Martin Scheidt 980899379d renamed git branch "master" into "main" 2022-05-04 16:41:53 +02:00
.github/workflows renamed git branch "master" into "main" 2022-05-04 16:41:53 +02:00
docs renamed git branch "master" into "main" 2022-05-04 16:41:53 +02:00
src new type Path as a struct, working test sets, structure rework 2022-05-04 16:34:17 +02:00
test new type Path as a struct, working test sets, structure rework 2022-05-04 16:34:17 +02:00
.gitignore master thesis submission 2021-10-13 16:49:42 +02:00
CHANGELOG.md renamed git branch "master" into "main" 2022-05-04 16:41:53 +02:00
CITATION.cff Providing more meta information for potential collaborators 2022-04-19 20:12:40 +02:00
CODE_OF_CONDUCT.md Providing more meta information for potential collaborators 2022-04-19 20:12:40 +02:00
CONTRIBUTING.md renamed git branch "master" into "main" 2022-05-04 16:41:53 +02:00
LICENSE master thesis submission 2021-10-13 16:49:42 +02:00
Project.toml new type Path as a struct, working test sets, structure rework 2022-05-04 16:34:17 +02:00
README.md renamed git branch "master" into "main" 2022-05-04 16:41:53 +02:00

README.md

TrainRun

License: ISC DOI Build Status


About

TrainRun.jl is a step towards open science and open data in railway engineering. Its modular design offers the possibility to serve as a basis for future optimization and development. TrainRun.jl is suitable for qualitative calculations to compare different trains, and it is publicly available, and we invite others to collaborate.


Installation

The required julia packages are

  • YAML.jl
  • JSONSchema.jl
  • Dates.jl
  • DataFrames.jl
  • CSV.jl

Minimal working example

import TrainRun

train = Train("test/data/trains/freight.yaml")
path  = Path("test/data/paths/const.yaml")

runtime = trainrun(train, path)

println("The train needs $runtime seconds for the running path.")

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.