run_all.bat 555 B

123456789101112131415161718192021
  1. @echo off
  2. rem ------------------------------------------------------------
  3. rem This batch runs all FMUs of the FmuSDK and stores simulation
  4. rem results in CSV files, one file per simulation run.
  5. rem Command to run the 32 bit version: run_all
  6. rem Command to run the 64 bit version: run_all -win64
  7. rem Copyright QTronic GmbH. All rights reserved.
  8. rem ------------------------------------------------------------
  9. setlocal
  10. echo Running all FMUs 2.0 of the FmuSDK ...
  11. call run_mass_spring_damper %1
  12. call run_mass_spring_damper_hierarchical %1
  13. endlocal