├── .gitignore ├── LICENSE ├── README.md ├── docs-sphinx ├── Makefile ├── make.bat └── source │ ├── api.rst │ ├── conf.py │ ├── gfx │ ├── architecture.png │ └── multiple_shooting.png │ ├── index.rst │ ├── installation.rst │ ├── license.rst │ └── modules │ ├── interfaces.rst │ ├── mpcemulation.rst │ └── mshoot.rst ├── docs ├── .buildinfo ├── .nojekyll ├── _images │ ├── architecture.png │ └── multiple_shooting.png ├── _sources │ ├── api.rst.txt │ ├── index.rst.txt │ ├── installation.rst.txt │ ├── license.rst.txt │ └── modules │ │ ├── interfaces.rst.txt │ │ ├── mpc_emulation.rst.txt │ │ ├── mpcemulation.rst.txt │ │ ├── mshoot.rst.txt │ │ └── simmodel.rst.txt ├── _static │ ├── ajax-loader.gif │ ├── alabaster.css │ ├── basic.css │ ├── classic.css │ ├── comment-bright.png │ ├── comment-close.png │ ├── comment.png │ ├── css │ │ ├── badge_only.css │ │ └── theme.css │ ├── custom.css │ ├── doctools.js │ ├── documentation_options.js │ ├── down-pressed.png │ ├── down.png │ ├── file.png │ ├── fonts │ │ ├── Lato │ │ │ ├── lato-bold.eot │ │ │ ├── lato-bold.ttf │ │ │ ├── lato-bold.woff │ │ │ ├── lato-bold.woff2 │ │ │ ├── lato-bolditalic.eot │ │ │ ├── lato-bolditalic.ttf │ │ │ ├── lato-bolditalic.woff │ │ │ ├── lato-bolditalic.woff2 │ │ │ ├── lato-italic.eot │ │ │ ├── lato-italic.ttf │ │ │ ├── lato-italic.woff │ │ │ ├── lato-italic.woff2 │ │ │ ├── lato-regular.eot │ │ │ ├── lato-regular.ttf │ │ │ ├── lato-regular.woff │ │ │ └── lato-regular.woff2 │ │ ├── RobotoSlab │ │ │ ├── roboto-slab-v7-bold.eot │ │ │ ├── roboto-slab-v7-bold.ttf │ │ │ ├── roboto-slab-v7-bold.woff │ │ │ ├── roboto-slab-v7-bold.woff2 │ │ │ ├── roboto-slab-v7-regular.eot │ │ │ ├── roboto-slab-v7-regular.ttf │ │ │ ├── roboto-slab-v7-regular.woff │ │ │ └── roboto-slab-v7-regular.woff2 │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ └── fontawesome-webfont.woff2 │ ├── jquery-3.2.1.js │ ├── jquery.js │ ├── js │ │ ├── modernizr.min.js │ │ └── theme.js │ ├── minus.png │ ├── plus.png │ ├── pygments.css │ ├── searchtools.js │ ├── sidebar.js │ ├── underscore-1.3.1.js │ ├── underscore.js │ ├── up-pressed.png │ ├── up.png │ └── websupport.js ├── api.html ├── genindex.html ├── index.html ├── installation.html ├── license.html ├── modules │ ├── interfaces.html │ ├── mpc_emulation.html │ ├── mpcemulation.html │ ├── mshoot.html │ └── simmodel.html ├── objects.inv ├── search.html └── searchindex.js ├── examples ├── README.md ├── __init__.py ├── bs2019 │ ├── MShootBS2019.mo │ ├── README.md │ ├── analysis.py │ ├── case1 │ │ ├── case1_est.py │ │ ├── case1_fmu_speed.py │ │ ├── case1_mpc.py │ │ ├── models │ │ │ ├── r1c1_dymola_1e-11.fmu │ │ │ ├── r1c1_dymola_1e-4.fmu │ │ │ ├── r1c1_dymola_1e-6.fmu │ │ │ ├── r1c1_dymola_1e-7.fmu │ │ │ └── r1c1_dymola_1e-9.fmu │ │ └── results │ │ │ ├── est │ │ │ ├── ideal.csv │ │ │ ├── ideal_training.png │ │ │ ├── ideal_validation.png │ │ │ ├── inp.csv │ │ │ ├── inp_training.png │ │ │ ├── inp_validation.png │ │ │ ├── r1c1_dymola_1e-11 │ │ │ │ ├── GA_1.png │ │ │ │ ├── SCIPY-L-BFGS-B_1.png │ │ │ │ ├── best_per_run.csv │ │ │ │ ├── errors.png │ │ │ │ ├── final.csv │ │ │ │ ├── parameters.csv │ │ │ │ ├── parameters_rel.csv │ │ │ │ ├── summary_1.csv │ │ │ │ ├── validation.png │ │ │ │ ├── vld_err.txt │ │ │ │ └── vld_res.csv │ │ │ ├── r1c1_dymola_1e-4 │ │ │ │ ├── GA_1.png │ │ │ │ ├── SCIPY-L-BFGS-B_1.png │ │ │ │ ├── best_per_run.csv │ │ │ │ ├── errors.png │ │ │ │ ├── final.csv │ │ │ │ ├── parameters.csv │ │ │ │ ├── parameters_rel.csv │ │ │ │ ├── summary_1.csv │ │ │ │ ├── validation.png │ │ │ │ ├── vld_err.txt │ │ │ │ └── vld_res.csv │ │ │ ├── r1c1_dymola_1e-6 │ │ │ │ ├── GA_1.png │ │ │ │ ├── SCIPY-L-BFGS-B_1.png │ │ │ │ ├── best_per_run.csv │ │ │ │ ├── errors.png │ │ │ │ ├── final.csv │ │ │ │ ├── parameters.csv │ │ │ │ ├── parameters_rel.csv │ │ │ │ ├── summary_1.csv │ │ │ │ ├── validation.png │ │ │ │ ├── vld_err.txt │ │ │ │ └── vld_res.csv │ │ │ ├── r1c1_dymola_1e-7 │ │ │ │ ├── GA_1.png │ │ │ │ ├── SCIPY-L-BFGS-B_1.png │ │ │ │ ├── best_per_run.csv │ │ │ │ ├── errors.png │ │ │ │ ├── final.csv │ │ │ │ ├── parameters.csv │ │ │ │ ├── parameters_rel.csv │ │ │ │ ├── summary_1.csv │ │ │ │ ├── validation.png │ │ │ │ ├── vld_err.txt │ │ │ │ └── vld_res.csv │ │ │ └── r1c1_dymola_1e-9 │ │ │ │ ├── GA_1.png │ │ │ │ ├── SCIPY-L-BFGS-B_1.png │ │ │ │ ├── best_per_run.csv │ │ │ │ ├── errors.png │ │ │ │ ├── final.csv │ │ │ │ ├── parameters.csv │ │ │ │ ├── parameters_rel.csv │ │ │ │ ├── summary_1.csv │ │ │ │ ├── validation.png │ │ │ │ ├── vld_err.txt │ │ │ │ └── vld_res.csv │ │ │ └── mpc │ │ │ ├── r1c1_dymola_1e-11 │ │ │ ├── h10 │ │ │ │ ├── constr.csv │ │ │ │ ├── cputime.txt │ │ │ │ ├── u.csv │ │ │ │ ├── u0.csv │ │ │ │ ├── u1.csv │ │ │ │ ├── u10.csv │ │ │ │ ├── u11.csv │ │ │ │ ├── u12.csv │ │ │ │ ├── u13.csv │ │ │ │ ├── u14.csv │ │ │ │ ├── u15.csv │ │ │ │ ├── u16.csv │ │ │ │ ├── u17.csv │ │ │ │ ├── u18.csv │ │ │ │ ├── u19.csv │ │ │ │ ├── u2.csv │ │ │ │ ├── u20.csv │ │ │ │ ├── u21.csv │ │ │ │ ├── u22.csv │ │ │ │ ├── u23.csv │ │ │ │ ├── u24.csv │ │ │ │ ├── u25.csv │ │ │ │ ├── u26.csv │ │ │ │ ├── u27.csv │ │ │ │ ├── u28.csv │ │ │ │ ├── u29.csv │ │ │ │ ├── u3.csv │ │ │ │ ├── u30.csv │ │ │ │ ├── u31.csv │ │ │ │ ├── u32.csv │ │ │ │ ├── u33.csv │ │ │ │ ├── u34.csv │ │ │ │ ├── u35.csv │ │ │ │ ├── u36.csv │ │ │ │ ├── u37.csv │ │ │ │ ├── u38.csv │ │ │ │ ├── u39.csv │ │ │ │ ├── u4.csv │ │ │ │ ├── u40.csv │ │ │ │ ├── u41.csv │ │ │ │ ├── u42.csv │ │ │ │ ├── u43.csv │ │ │ │ ├── u44.csv │ │ │ │ ├── u45.csv │ │ │ │ ├── u46.csv │ │ │ │ ├── u47.csv │ │ │ │ ├── u48.csv │ │ │ │ ├── u49.csv │ │ │ │ ├── u5.csv │ │ │ │ ├── u50.csv │ │ │ │ ├── u51.csv │ │ │ │ ├── u52.csv │ │ │ │ ├── u53.csv │ │ │ │ ├── u54.csv │ │ │ │ ├── u55.csv │ │ │ │ ├── u56.csv │ │ │ │ ├── u57.csv │ │ │ │ ├── u58.csv │ │ │ │ ├── u59.csv │ │ │ │ ├── u6.csv │ │ │ │ ├── u60.csv │ │ │ │ ├── u61.csv │ │ │ │ ├── u62.csv │ │ │ │ ├── u63.csv │ │ │ │ ├── u7.csv │ │ │ │ ├── u8.csv │ │ │ │ ├── u9.csv │ │ │ │ ├── xctr.csv │ │ │ │ ├── xemu.csv │ │ │ │ └── yemu.csv │ │ │ ├── h2 │ │ │ │ ├── constr.csv │ │ │ │ ├── cputime.txt │ │ │ │ ├── u.csv │ │ │ │ ├── u0.csv │ │ │ │ ├── u1.csv │ │ │ │ ├── u10.csv │ │ │ │ ├── u11.csv │ │ │ │ ├── u12.csv │ │ │ │ ├── u13.csv │ │ │ │ ├── u14.csv │ │ │ │ ├── u15.csv │ │ │ │ ├── u16.csv │ │ │ │ ├── u17.csv │ │ │ │ ├── u18.csv │ │ │ │ ├── u19.csv │ │ │ │ ├── u2.csv │ │ │ │ ├── u20.csv │ │ │ │ ├── u21.csv │ │ │ │ ├── u22.csv │ │ │ │ ├── u23.csv │ │ │ │ ├── u24.csv │ │ │ │ ├── u25.csv │ │ │ │ ├── u26.csv │ │ │ │ ├── u27.csv │ │ │ │ ├── u28.csv │ │ │ │ ├── u29.csv │ │ │ │ ├── u3.csv │ │ │ │ ├── u30.csv │ │ │ │ ├── u31.csv │ │ │ │ ├── u32.csv │ │ │ │ ├── u33.csv │ │ │ │ ├── u34.csv │ │ │ │ ├── u35.csv │ │ │ │ ├── u36.csv │ │ │ │ ├── u37.csv │ │ │ │ ├── u38.csv │ │ │ │ ├── u39.csv │ │ │ │ ├── u4.csv │ │ │ │ ├── u40.csv │ │ │ │ ├── u41.csv │ │ │ │ ├── u42.csv │ │ │ │ ├── u43.csv │ │ │ │ ├── u44.csv │ │ │ │ ├── u45.csv │ │ │ │ ├── u46.csv │ │ │ │ ├── u47.csv │ │ │ │ ├── u48.csv │ │ │ │ ├── u49.csv │ │ │ │ ├── u5.csv │ │ │ │ ├── u50.csv │ │ │ │ ├── u51.csv │ │ │ │ ├── u52.csv │ │ │ │ ├── u53.csv │ │ │ │ ├── u54.csv │ │ │ │ ├── u55.csv │ │ │ │ ├── u56.csv │ │ │ │ ├── u57.csv │ │ │ │ ├── u58.csv │ │ │ │ ├── u59.csv │ │ │ │ ├── u6.csv │ │ │ │ ├── u60.csv │ │ │ │ ├── u61.csv │ │ │ │ ├── u62.csv │ │ │ │ ├── u63.csv │ │ │ │ ├── u64.csv │ │ │ │ ├── u65.csv │ │ │ │ ├── u66.csv │ │ │ │ ├── u67.csv │ │ │ │ ├── u68.csv │ │ │ │ ├── u69.csv │ │ │ │ ├── u7.csv │ │ │ │ ├── u70.csv │ │ │ │ ├── u71.csv │ │ │ │ ├── u8.csv │ │ │ │ ├── u9.csv │ │ │ │ ├── xctr.csv │ │ │ │ ├── xemu.csv │ │ │ │ └── yemu.csv │ │ │ ├── h4 │ │ │ │ ├── constr.csv │ │ │ │ ├── cputime.txt │ │ │ │ ├── u.csv │ │ │ │ ├── u0.csv │ │ │ │ ├── u1.csv │ │ │ │ ├── u10.csv │ │ │ │ ├── u11.csv │ │ │ │ ├── u12.csv │ │ │ │ ├── u13.csv │ │ │ │ ├── u14.csv │ │ │ │ ├── u15.csv │ │ │ │ ├── u16.csv │ │ │ │ ├── u17.csv │ │ │ │ ├── u18.csv │ │ │ │ ├── u19.csv │ │ │ │ ├── u2.csv │ │ │ │ ├── u20.csv │ │ │ │ ├── u21.csv │ │ │ │ ├── u22.csv │ │ │ │ ├── u23.csv │ │ │ │ ├── u24.csv │ │ │ │ ├── u25.csv │ │ │ │ ├── u26.csv │ │ │ │ ├── u27.csv │ │ │ │ ├── u28.csv │ │ │ │ ├── u29.csv │ │ │ │ ├── u3.csv │ │ │ │ ├── u30.csv │ │ │ │ ├── u31.csv │ │ │ │ ├── u32.csv │ │ │ │ ├── u33.csv │ │ │ │ ├── u34.csv │ │ │ │ ├── u35.csv │ │ │ │ ├── u36.csv │ │ │ │ ├── u37.csv │ │ │ │ ├── u38.csv │ │ │ │ ├── u39.csv │ │ │ │ ├── u4.csv │ │ │ │ ├── u40.csv │ │ │ │ ├── u41.csv │ │ │ │ ├── u42.csv │ │ │ │ ├── u43.csv │ │ │ │ ├── u44.csv │ │ │ │ ├── u45.csv │ │ │ │ ├── u46.csv │ │ │ │ ├── u47.csv │ │ │ │ ├── u48.csv │ │ │ │ ├── u49.csv │ │ │ │ ├── u5.csv │ │ │ │ ├── u50.csv │ │ │ │ ├── u51.csv │ │ │ │ ├── u52.csv │ │ │ │ ├── u53.csv │ │ │ │ ├── u54.csv │ │ │ │ ├── u55.csv │ │ │ │ ├── u56.csv │ │ │ │ ├── u57.csv │ │ │ │ ├── u58.csv │ │ │ │ ├── u59.csv │ │ │ │ ├── u6.csv │ │ │ │ ├── u60.csv │ │ │ │ ├── u61.csv │ │ │ │ ├── u62.csv │ │ │ │ ├── u63.csv │ │ │ │ ├── u64.csv │ │ │ │ ├── u65.csv │ │ │ │ ├── u66.csv │ │ │ │ ├── u67.csv │ │ │ │ ├── u68.csv │ │ │ │ ├── u69.csv │ │ │ │ ├── u7.csv │ │ │ │ ├── u8.csv │ │ │ │ ├── u9.csv │ │ │ │ ├── xctr.csv │ │ │ │ ├── xemu.csv │ │ │ │ └── yemu.csv │ │ │ ├── h6 │ │ │ │ ├── constr.csv │ │ │ │ ├── cputime.txt │ │ │ │ ├── u.csv │ │ │ │ ├── u0.csv │ │ │ │ ├── u1.csv │ │ │ │ ├── u10.csv │ │ │ │ ├── u11.csv │ │ │ │ ├── u12.csv │ │ │ │ ├── u13.csv │ │ │ │ ├── u14.csv │ │ │ │ ├── u15.csv │ │ │ │ ├── u16.csv │ │ │ │ ├── u17.csv │ │ │ │ ├── u18.csv │ │ │ │ ├── u19.csv │ │ │ │ ├── u2.csv │ │ │ │ ├── u20.csv │ │ │ │ ├── u21.csv │ │ │ │ ├── u22.csv │ │ │ │ ├── u23.csv │ │ │ │ ├── u24.csv │ │ │ │ ├── u25.csv │ │ │ │ ├── u26.csv │ │ │ │ ├── u27.csv │ │ │ │ ├── u28.csv │ │ │ │ ├── u29.csv │ │ │ │ ├── u3.csv │ │ │ │ ├── u30.csv │ │ │ │ ├── u31.csv │ │ │ │ ├── u32.csv │ │ │ │ ├── u33.csv │ │ │ │ ├── u34.csv │ │ │ │ ├── u35.csv │ │ │ │ ├── u36.csv │ │ │ │ ├── u37.csv │ │ │ │ ├── u38.csv │ │ │ │ ├── u39.csv │ │ │ │ ├── u4.csv │ │ │ │ ├── u40.csv │ │ │ │ ├── u41.csv │ │ │ │ ├── u42.csv │ │ │ │ ├── u43.csv │ │ │ │ ├── u44.csv │ │ │ │ ├── u45.csv │ │ │ │ ├── u46.csv │ │ │ │ ├── u47.csv │ │ │ │ ├── u48.csv │ │ │ │ ├── u49.csv │ │ │ │ ├── u5.csv │ │ │ │ ├── u50.csv │ │ │ │ ├── u51.csv │ │ │ │ ├── u52.csv │ │ │ │ ├── u53.csv │ │ │ │ ├── u54.csv │ │ │ │ ├── u55.csv │ │ │ │ ├── u56.csv │ │ │ │ ├── u57.csv │ │ │ │ ├── u58.csv │ │ │ │ ├── u59.csv │ │ │ │ ├── u6.csv │ │ │ │ ├── u60.csv │ │ │ │ ├── u61.csv │ │ │ │ ├── u62.csv │ │ │ │ ├── u63.csv │ │ │ │ ├── u64.csv │ │ │ │ ├── u65.csv │ │ │ │ ├── u66.csv │ │ │ │ ├── u67.csv │ │ │ │ ├── u7.csv │ │ │ │ ├── u8.csv │ │ │ │ ├── u9.csv │ │ │ │ ├── xctr.csv │ │ │ │ ├── xemu.csv │ │ │ │ └── yemu.csv │ │ │ └── h8 │ │ │ │ ├── constr.csv │ │ │ │ ├── cputime.txt │ │ │ │ ├── u.csv │ │ │ │ ├── u0.csv │ │ │ │ ├── u1.csv │ │ │ │ ├── u10.csv │ │ │ │ ├── u11.csv │ │ │ │ ├── u12.csv │ │ │ │ ├── u13.csv │ │ │ │ ├── u14.csv │ │ │ │ ├── u15.csv │ │ │ │ ├── u16.csv │ │ │ │ ├── u17.csv │ │ │ │ ├── u18.csv │ │ │ │ ├── u19.csv │ │ │ │ ├── u2.csv │ │ │ │ ├── u20.csv │ │ │ │ ├── u21.csv │ │ │ │ ├── u22.csv │ │ │ │ ├── u23.csv │ │ │ │ ├── u24.csv │ │ │ │ ├── u25.csv │ │ │ │ ├── u26.csv │ │ │ │ ├── u27.csv │ │ │ │ ├── u28.csv │ │ │ │ ├── u29.csv │ │ │ │ ├── u3.csv │ │ │ │ ├── u30.csv │ │ │ │ ├── u31.csv │ │ │ │ ├── u32.csv │ │ │ │ ├── u33.csv │ │ │ │ ├── u34.csv │ │ │ │ ├── u35.csv │ │ │ │ ├── u36.csv │ │ │ │ ├── u37.csv │ │ │ │ ├── u38.csv │ │ │ │ ├── u39.csv │ │ │ │ ├── u4.csv │ │ │ │ ├── u40.csv │ │ │ │ ├── u41.csv │ │ │ │ ├── u42.csv │ │ │ │ ├── u43.csv │ │ │ │ ├── u44.csv │ │ │ │ ├── u45.csv │ │ │ │ ├── u46.csv │ │ │ │ ├── u47.csv │ │ │ │ ├── u48.csv │ │ │ │ ├── u49.csv │ │ │ │ ├── u5.csv │ │ │ │ ├── u50.csv │ │ │ │ ├── u51.csv │ │ │ │ ├── u52.csv │ │ │ │ ├── u53.csv │ │ │ │ ├── u54.csv │ │ │ │ ├── u55.csv │ │ │ │ ├── u56.csv │ │ │ │ ├── u57.csv │ │ │ │ ├── u58.csv │ │ │ │ ├── u59.csv │ │ │ │ ├── u6.csv │ │ │ │ ├── u60.csv │ │ │ │ ├── u61.csv │ │ │ │ ├── u62.csv │ │ │ │ ├── u63.csv │ │ │ │ ├── u64.csv │ │ │ │ ├── u65.csv │ │ │ │ ├── u7.csv │ │ │ │ ├── u8.csv │ │ │ │ ├── u9.csv │ │ │ │ ├── xctr.csv │ │ │ │ ├── xemu.csv │ │ │ │ └── yemu.csv │ │ │ ├── r1c1_dymola_1e-4 │ │ │ ├── h10 │ │ │ │ ├── constr.csv │ │ │ │ ├── cputime.txt │ │ │ │ ├── u.csv │ │ │ │ ├── u0.csv │ │ │ │ ├── u1.csv │ │ │ │ ├── u10.csv │ │ │ │ ├── u11.csv │ │ │ │ ├── u12.csv │ │ │ │ ├── u13.csv │ │ │ │ ├── u14.csv │ │ │ │ ├── u15.csv │ │ │ │ ├── u16.csv │ │ │ │ ├── u17.csv │ │ │ │ ├── u18.csv │ │ │ │ ├── u19.csv │ │ │ │ ├── u2.csv │ │ │ │ ├── u20.csv │ │ │ │ ├── u21.csv │ │ │ │ ├── u22.csv │ │ │ │ ├── u23.csv │ │ │ │ ├── u24.csv │ │ │ │ ├── u25.csv │ │ │ │ ├── u26.csv │ │ │ │ ├── u27.csv │ │ │ │ ├── u28.csv │ │ │ │ ├── u29.csv │ │ │ │ ├── u3.csv │ │ │ │ ├── u30.csv │ │ │ │ ├── u31.csv │ │ │ │ ├── u32.csv │ │ │ │ ├── u33.csv │ │ │ │ ├── u34.csv │ │ │ │ ├── u35.csv │ │ │ │ ├── u36.csv │ │ │ │ ├── u37.csv │ │ │ │ ├── u38.csv │ │ │ │ ├── u39.csv │ │ │ │ ├── u4.csv │ │ │ │ ├── u40.csv │ │ │ │ ├── u41.csv │ │ │ │ ├── u42.csv │ │ │ │ ├── u43.csv │ │ │ │ ├── u44.csv │ │ │ │ ├── u45.csv │ │ │ │ ├── u46.csv │ │ │ │ ├── u47.csv │ │ │ │ ├── u48.csv │ │ │ │ ├── u49.csv │ │ │ │ ├── u5.csv │ │ │ │ ├── u50.csv │ │ │ │ ├── u51.csv │ │ │ │ ├── u52.csv │ │ │ │ ├── u53.csv │ │ │ │ ├── u54.csv │ │ │ │ ├── u55.csv │ │ │ │ ├── u56.csv │ │ │ │ ├── u57.csv │ │ │ │ ├── u58.csv │ │ │ │ ├── u59.csv │ │ │ │ ├── u6.csv │ │ │ │ ├── u60.csv │ │ │ │ ├── u61.csv │ │ │ │ ├── u62.csv │ │ │ │ ├── u63.csv │ │ │ │ ├── u7.csv │ │ │ │ ├── u8.csv │ │ │ │ ├── u9.csv │ │ │ │ ├── xctr.csv │ │ │ │ ├── xemu.csv │ │ │ │ └── yemu.csv │ │ │ ├── h2 │ │ │ │ ├── constr.csv │ │ │ │ ├── cputime.txt │ │ │ │ ├── u.csv │ │ │ │ ├── u0.csv │ │ │ │ ├── u1.csv │ │ │ │ ├── u10.csv │ │ │ │ ├── u11.csv │ │ │ │ ├── u12.csv │ │ │ │ ├── u13.csv │ │ │ │ ├── u14.csv │ │ │ │ ├── u15.csv │ │ │ │ ├── u16.csv │ │ │ │ ├── u17.csv │ │ │ │ ├── u18.csv │ │ │ │ ├── u19.csv │ │ │ │ ├── u2.csv │ │ │ │ ├── u20.csv │ │ │ │ ├── u21.csv │ │ │ │ ├── u22.csv │ │ │ │ ├── u23.csv │ │ │ │ ├── u24.csv │ │ │ │ ├── u25.csv │ │ │ │ ├── u26.csv │ │ │ │ ├── u27.csv │ │ │ │ ├── u28.csv │ │ │ │ ├── u29.csv │ │ │ │ ├── u3.csv │ │ │ │ ├── u30.csv │ │ │ │ ├── u31.csv │ │ │ │ ├── u32.csv │ │ │ │ ├── u33.csv │ │ │ │ ├── u34.csv │ │ │ │ ├── u35.csv │ │ │ │ ├── u36.csv │ │ │ │ ├── u37.csv │ │ │ │ ├── u38.csv │ │ │ │ ├── u39.csv │ │ │ │ ├── u4.csv │ │ │ │ ├── u40.csv │ │ │ │ ├── u41.csv │ │ │ │ ├── u42.csv │ │ │ │ ├── u43.csv │ │ │ │ ├── u44.csv │ │ │ │ ├── u45.csv │ │ │ │ ├── u46.csv │ │ │ │ ├── u47.csv │ │ │ │ ├── u48.csv │ │ │ │ ├── u49.csv │ │ │ │ ├── u5.csv │ │ │ │ ├── u50.csv │ │ │ │ ├── u51.csv │ │ │ │ ├── u52.csv │ │ │ │ ├── u53.csv │ │ │ │ ├── u54.csv │ │ │ │ ├── u55.csv │ │ │ │ ├── u56.csv │ │ │ │ ├── u57.csv │ │ │ │ ├── u58.csv │ │ │ │ ├── u59.csv │ │ │ │ ├── u6.csv │ │ │ │ ├── u60.csv │ │ │ │ ├── u61.csv │ │ │ │ ├── u62.csv │ │ │ │ ├── u63.csv │ │ │ │ ├── u64.csv │ │ │ │ ├── u65.csv │ │ │ │ ├── u66.csv │ │ │ │ ├── u67.csv │ │ │ │ ├── u68.csv │ │ │ │ ├── u69.csv │ │ │ │ ├── u7.csv │ │ │ │ ├── u70.csv │ │ │ │ ├── u71.csv │ │ │ │ ├── u8.csv │ │ │ │ ├── u9.csv │ │ │ │ ├── xctr.csv │ │ │ │ ├── xemu.csv │ │ │ │ └── yemu.csv │ │ │ ├── h4 │ │ │ │ ├── constr.csv │ │ │ │ ├── cputime.txt │ │ │ │ ├── u.csv │ │ │ │ ├── u0.csv │ │ │ │ ├── u1.csv │ │ │ │ ├── u10.csv │ │ │ │ ├── u11.csv │ │ │ │ ├── u12.csv │ │ │ │ ├── u13.csv │ │ │ │ ├── u14.csv │ │ │ │ ├── u15.csv │ │ │ │ ├── u16.csv │ │ │ │ ├── u17.csv │ │ │ │ ├── u18.csv │ │ │ │ ├── u19.csv │ │ │ │ ├── u2.csv │ │ │ │ ├── u20.csv │ │ │ │ ├── u21.csv │ │ │ │ ├── u22.csv │ │ │ │ ├── u23.csv │ │ │ │ ├── u24.csv │ │ │ │ ├── u25.csv │ │ │ │ ├── u26.csv │ │ │ │ ├── u27.csv │ │ │ │ ├── u28.csv │ │ │ │ ├── u29.csv │ │ │ │ ├── u3.csv │ │ │ │ ├── u30.csv │ │ │ │ ├── u31.csv │ │ │ │ ├── u32.csv │ │ │ │ ├── u33.csv │ │ │ │ ├── u34.csv │ │ │ │ ├── u35.csv │ │ │ │ ├── u36.csv │ │ │ │ ├── u37.csv │ │ │ │ ├── u38.csv │ │ │ │ ├── u39.csv │ │ │ │ ├── u4.csv │ │ │ │ ├── u40.csv │ │ │ │ ├── u41.csv │ │ │ │ ├── u42.csv │ │ │ │ ├── u43.csv │ │ │ │ ├── u44.csv │ │ │ │ ├── u45.csv │ │ │ │ ├── u46.csv │ │ │ │ ├── u47.csv │ │ │ │ ├── u48.csv │ │ │ │ ├── u49.csv │ │ │ │ ├── u5.csv │ │ │ │ ├── u50.csv │ │ │ │ ├── u51.csv │ │ │ │ ├── u52.csv │ │ │ │ ├── u53.csv │ │ │ │ ├── u54.csv │ │ │ │ ├── u55.csv │ │ │ │ ├── u56.csv │ │ │ │ ├── u57.csv │ │ │ │ ├── u58.csv │ │ │ │ ├── u59.csv │ │ │ │ ├── u6.csv │ │ │ │ ├── u60.csv │ │ │ │ ├── u61.csv │ │ │ │ ├── u62.csv │ │ │ │ ├── u63.csv │ │ │ │ ├── u64.csv │ │ │ │ ├── u65.csv │ │ │ │ ├── u66.csv │ │ │ │ ├── u67.csv │ │ │ │ ├── u68.csv │ │ │ │ ├── u69.csv │ │ │ │ ├── u7.csv │ │ │ │ ├── u8.csv │ │ │ │ ├── u9.csv │ │ │ │ ├── xctr.csv │ │ │ │ ├── xemu.csv │ │ │ │ └── yemu.csv │ │ │ ├── h6 │ │ │ │ ├── constr.csv │ │ │ │ ├── cputime.txt │ │ │ │ ├── u.csv │ │ │ │ ├── u0.csv │ │ │ │ ├── u1.csv │ │ │ │ ├── u10.csv │ │ │ │ ├── u11.csv │ │ │ │ ├── u12.csv │ │ │ │ ├── u13.csv │ │ │ │ ├── u14.csv │ │ │ │ ├── u15.csv │ │ │ │ ├── u16.csv │ │ │ │ ├── u17.csv │ │ │ │ ├── u18.csv │ │ │ │ ├── u19.csv │ │ │ │ ├── u2.csv │ │ │ │ ├── u20.csv │ │ │ │ ├── u21.csv │ │ │ │ ├── u22.csv │ │ │ │ ├── u23.csv │ │ │ │ ├── u24.csv │ │ │ │ ├── u25.csv │ │ │ │ ├── u26.csv │ │ │ │ ├── u27.csv │ │ │ │ ├── u28.csv │ │ │ │ ├── u29.csv │ │ │ │ ├── u3.csv │ │ │ │ ├── u30.csv │ │ │ │ ├── u31.csv │ │ │ │ ├── u32.csv │ │ │ │ ├── u33.csv │ │ │ │ ├── u34.csv │ │ │ │ ├── u35.csv │ │ │ │ ├── u36.csv │ │ │ │ ├── u37.csv │ │ │ │ ├── u38.csv │ │ │ │ ├── u39.csv │ │ │ │ ├── u4.csv │ │ │ │ ├── u40.csv │ │ │ │ ├── u41.csv │ │ │ │ ├── u42.csv │ │ │ │ ├── u43.csv │ │ │ │ ├── u44.csv │ │ │ │ ├── u45.csv │ │ │ │ ├── u46.csv │ │ │ │ ├── u47.csv │ │ │ │ ├── u48.csv │ │ │ │ ├── u49.csv │ │ │ │ ├── u5.csv │ │ │ │ ├── u50.csv │ │ │ │ ├── u51.csv │ │ │ │ ├── u52.csv │ │ │ │ ├── u53.csv │ │ │ │ ├── u54.csv │ │ │ │ ├── u55.csv │ │ │ │ ├── u56.csv │ │ │ │ ├── u57.csv │ │ │ │ ├── u58.csv │ │ │ │ ├── u59.csv │ │ │ │ ├── u6.csv │ │ │ │ ├── u60.csv │ │ │ │ ├── u61.csv │ │ │ │ ├── u62.csv │ │ │ │ ├── u63.csv │ │ │ │ ├── u64.csv │ │ │ │ ├── u65.csv │ │ │ │ ├── u66.csv │ │ │ │ ├── u67.csv │ │ │ │ ├── u7.csv │ │ │ │ ├── u8.csv │ │ │ │ ├── u9.csv │ │ │ │ ├── xctr.csv │ │ │ │ ├── xemu.csv │ │ │ │ └── yemu.csv │ │ │ └── h8 │ │ │ │ ├── constr.csv │ │ │ │ ├── cputime.txt │ │ │ │ ├── u.csv │ │ │ │ ├── u0.csv │ │ │ │ ├── u1.csv │ │ │ │ ├── u10.csv │ │ │ │ ├── u11.csv │ │ │ │ ├── u12.csv │ │ │ │ ├── u13.csv │ │ │ │ ├── u14.csv │ │ │ │ ├── u15.csv │ │ │ │ ├── u16.csv │ │ │ │ ├── u17.csv │ │ │ │ ├── u18.csv │ │ │ │ ├── u19.csv │ │ │ │ ├── u2.csv │ │ │ │ ├── u20.csv │ │ │ │ ├── u21.csv │ │ │ │ ├── u22.csv │ │ │ │ ├── u23.csv │ │ │ │ ├── u24.csv │ │ │ │ ├── u25.csv │ │ │ │ ├── u26.csv │ │ │ │ ├── u27.csv │ │ │ │ ├── u28.csv │ │ │ │ ├── u29.csv │ │ │ │ ├── u3.csv │ │ │ │ ├── u30.csv │ │ │ │ ├── u31.csv │ │ │ │ ├── u32.csv │ │ │ │ ├── u33.csv │ │ │ │ ├── u34.csv │ │ │ │ ├── u35.csv │ │ │ │ ├── u36.csv │ │ │ │ ├── u37.csv │ │ │ │ ├── u38.csv │ │ │ │ ├── u39.csv │ │ │ │ ├── u4.csv │ │ │ │ ├── u40.csv │ │ │ │ ├── u41.csv │ │ │ │ ├── u42.csv │ │ │ │ ├── u43.csv │ │ │ │ ├── u44.csv │ │ │ │ ├── u45.csv │ │ │ │ ├── u46.csv │ │ │ │ ├── u47.csv │ │ │ │ ├── u48.csv │ │ │ │ ├── u49.csv │ │ │ │ ├── u5.csv │ │ │ │ ├── u50.csv │ │ │ │ ├── u51.csv │ │ │ │ ├── u52.csv │ │ │ │ ├── u53.csv │ │ │ │ ├── u54.csv │ │ │ │ ├── u55.csv │ │ │ │ ├── u56.csv │ │ │ │ ├── u57.csv │ │ │ │ ├── u58.csv │ │ │ │ ├── u59.csv │ │ │ │ ├── u6.csv │ │ │ │ ├── u60.csv │ │ │ │ ├── u61.csv │ │ │ │ ├── u62.csv │ │ │ │ ├── u63.csv │ │ │ │ ├── u64.csv │ │ │ │ ├── u65.csv │ │ │ │ ├── u7.csv │ │ │ │ ├── u8.csv │ │ │ │ ├── u9.csv │ │ │ │ ├── xctr.csv │ │ │ │ ├── xemu.csv │ │ │ │ └── yemu.csv │ │ │ ├── r1c1_dymola_1e-6 │ │ │ ├── h10 │ │ │ │ ├── constr.csv │ │ │ │ ├── cputime.txt │ │ │ │ ├── u.csv │ │ │ │ ├── u0.csv │ │ │ │ ├── u1.csv │ │ │ │ ├── u10.csv │ │ │ │ ├── u11.csv │ │ │ │ ├── u12.csv │ │ │ │ ├── u13.csv │ │ │ │ ├── u14.csv │ │ │ │ ├── u15.csv │ │ │ │ ├── u16.csv │ │ │ │ ├── u17.csv │ │ │ │ ├── u18.csv │ │ │ │ ├── u19.csv │ │ │ │ ├── u2.csv │ │ │ │ ├── u20.csv │ │ │ │ ├── u21.csv │ │ │ │ ├── u22.csv │ │ │ │ ├── u23.csv │ │ │ │ ├── u24.csv │ │ │ │ ├── u25.csv │ │ │ │ ├── u26.csv │ │ │ │ ├── u27.csv │ │ │ │ ├── u28.csv │ │ │ │ ├── u29.csv │ │ │ │ ├── u3.csv │ │ │ │ ├── u30.csv │ │ │ │ ├── u31.csv │ │ │ │ ├── u32.csv │ │ │ │ ├── u33.csv │ │ │ │ ├── u34.csv │ │ │ │ ├── u35.csv │ │ │ │ ├── u36.csv │ │ │ │ ├── u37.csv │ │ │ │ ├── u38.csv │ │ │ │ ├── u39.csv │ │ │ │ ├── u4.csv │ │ │ │ ├── u40.csv │ │ │ │ ├── u41.csv │ │ │ │ ├── u42.csv │ │ │ │ ├── u43.csv │ │ │ │ ├── u44.csv │ │ │ │ ├── u45.csv │ │ │ │ ├── u46.csv │ │ │ │ ├── u47.csv │ │ │ │ ├── u48.csv │ │ │ │ ├── u49.csv │ │ │ │ ├── u5.csv │ │ │ │ ├── u50.csv │ │ │ │ ├── u51.csv │ │ │ │ ├── u52.csv │ │ │ │ ├── u53.csv │ │ │ │ ├── u54.csv │ │ │ │ ├── u55.csv │ │ │ │ ├── u56.csv │ │ │ │ ├── u57.csv │ │ │ │ ├── u58.csv │ │ │ │ ├── u59.csv │ │ │ │ ├── u6.csv │ │ │ │ ├── u60.csv │ │ │ │ ├── u61.csv │ │ │ │ ├── u62.csv │ │ │ │ ├── u63.csv │ │ │ │ ├── u7.csv │ │ │ │ ├── u8.csv │ │ │ │ ├── u9.csv │ │ │ │ ├── xctr.csv │ │ │ │ ├── xemu.csv │ │ │ │ └── yemu.csv │ │ │ ├── h2 │ │ │ │ ├── constr.csv │ │ │ │ ├── cputime.txt │ │ │ │ ├── u.csv │ │ │ │ ├── u0.csv │ │ │ │ ├── u1.csv │ │ │ │ ├── u10.csv │ │ │ │ ├── u11.csv │ │ │ │ ├── u12.csv │ │ │ │ ├── u13.csv │ │ │ │ ├── u14.csv │ │ │ │ ├── u15.csv │ │ │ │ ├── u16.csv │ │ │ │ ├── u17.csv │ │ │ │ ├── u18.csv │ │ │ │ ├── u19.csv │ │ │ │ ├── u2.csv │ │ │ │ ├── u20.csv │ │ │ │ ├── u21.csv │ │ │ │ ├── u22.csv │ │ │ │ ├── u23.csv │ │ │ │ ├── u24.csv │ │ │ │ ├── u25.csv │ │ │ │ ├── u26.csv │ │ │ │ ├── u27.csv │ │ │ │ ├── u28.csv │ │ │ │ ├── u29.csv │ │ │ │ ├── u3.csv │ │ │ │ ├── u30.csv │ │ │ │ ├── u31.csv │ │ │ │ ├── u32.csv │ │ │ │ ├── u33.csv │ │ │ │ ├── u34.csv │ │ │ │ ├── u35.csv │ │ │ │ ├── u36.csv │ │ │ │ ├── u37.csv │ │ │ │ ├── u38.csv │ │ │ │ ├── u39.csv │ │ │ │ ├── u4.csv │ │ │ │ ├── u40.csv │ │ │ │ ├── u41.csv │ │ │ │ ├── u42.csv │ │ │ │ ├── u43.csv │ │ │ │ ├── u44.csv │ │ │ │ ├── u45.csv │ │ │ │ ├── u46.csv │ │ │ │ ├── u47.csv │ │ │ │ ├── u48.csv │ │ │ │ ├── u49.csv │ │ │ │ ├── u5.csv │ │ │ │ ├── u50.csv │ │ │ │ ├── u51.csv │ │ │ │ ├── u52.csv │ │ │ │ ├── u53.csv │ │ │ │ ├── u54.csv │ │ │ │ ├── u55.csv │ │ │ │ ├── u56.csv │ │ │ │ ├── u57.csv │ │ │ │ ├── u58.csv │ │ │ │ ├── u59.csv │ │ │ │ ├── u6.csv │ │ │ │ ├── u60.csv │ │ │ │ ├── u61.csv │ │ │ │ ├── u62.csv │ │ │ │ ├── u63.csv │ │ │ │ ├── u64.csv │ │ │ │ ├── u65.csv │ │ │ │ ├── u66.csv │ │ │ │ ├── u67.csv │ │ │ │ ├── u68.csv │ │ │ │ ├── u69.csv │ │ │ │ ├── u7.csv │ │ │ │ ├── u70.csv │ │ │ │ ├── u71.csv │ │ │ │ ├── u8.csv │ │ │ │ ├── u9.csv │ │ │ │ ├── xctr.csv │ │ │ │ ├── xemu.csv │ │ │ │ └── yemu.csv │ │ │ ├── h4 │ │ │ │ ├── constr.csv │ │ │ │ ├── cputime.txt │ │ │ │ ├── u.csv │ │ │ │ ├── u0.csv │ │ │ │ ├── u1.csv │ │ │ │ ├── u10.csv │ │ │ │ ├── u11.csv │ │ │ │ ├── u12.csv │ │ │ │ ├── u13.csv │ │ │ │ ├── u14.csv │ │ │ │ ├── u15.csv │ │ │ │ ├── u16.csv │ │ │ │ ├── u17.csv │ │ │ │ ├── u18.csv │ │ │ │ ├── u19.csv │ │ │ │ ├── u2.csv │ │ │ │ ├── u20.csv │ │ │ │ ├── u21.csv │ │ │ │ ├── u22.csv │ │ │ │ ├── u23.csv │ │ │ │ ├── u24.csv │ │ │ │ ├── u25.csv │ │ │ │ ├── u26.csv │ │ │ │ ├── u27.csv │ │ │ │ ├── u28.csv │ │ │ │ ├── u29.csv │ │ │ │ ├── u3.csv │ │ │ │ ├── u30.csv │ │ │ │ ├── u31.csv │ │ │ │ ├── u32.csv │ │ │ │ ├── u33.csv │ │ │ │ ├── u34.csv │ │ │ │ ├── u35.csv │ │ │ │ ├── u36.csv │ │ │ │ ├── u37.csv │ │ │ │ ├── u38.csv │ │ │ │ ├── u39.csv │ │ │ │ ├── u4.csv │ │ │ │ ├── u40.csv │ │ │ │ ├── u41.csv │ │ │ │ ├── u42.csv │ │ │ │ ├── u43.csv │ │ │ │ ├── u44.csv │ │ │ │ ├── u45.csv │ │ │ │ ├── u46.csv │ │ │ │ ├── u47.csv │ │ │ │ ├── u48.csv │ │ │ │ ├── u49.csv │ │ │ │ ├── u5.csv │ │ │ │ ├── u50.csv │ │ │ │ ├── u51.csv │ │ │ │ ├── u52.csv │ │ │ │ ├── u53.csv │ │ │ │ ├── u54.csv │ │ │ │ ├── u55.csv │ │ │ │ ├── u56.csv │ │ │ │ ├── u57.csv │ │ │ │ ├── u58.csv │ │ │ │ ├── u59.csv │ │ │ │ ├── u6.csv │ │ │ │ ├── u60.csv │ │ │ │ ├── u61.csv │ │ │ │ ├── u62.csv │ │ │ │ ├── u63.csv │ │ │ │ ├── u64.csv │ │ │ │ ├── u65.csv │ │ │ │ ├── u66.csv │ │ │ │ ├── u67.csv │ │ │ │ ├── u68.csv │ │ │ │ ├── u69.csv │ │ │ │ ├── u7.csv │ │ │ │ ├── u8.csv │ │ │ │ ├── u9.csv │ │ │ │ ├── xctr.csv │ │ │ │ ├── xemu.csv │ │ │ │ └── yemu.csv │ │ │ ├── h6 │ │ │ │ ├── constr.csv │ │ │ │ ├── cputime.txt │ │ │ │ ├── u.csv │ │ │ │ ├── u0.csv │ │ │ │ ├── u1.csv │ │ │ │ ├── u10.csv │ │ │ │ ├── u11.csv │ │ │ │ ├── u12.csv │ │ │ │ ├── u13.csv │ │ │ │ ├── u14.csv │ │ │ │ ├── u15.csv │ │ │ │ ├── u16.csv │ │ │ │ ├── u17.csv │ │ │ │ ├── u18.csv │ │ │ │ ├── u19.csv │ │ │ │ ├── u2.csv │ │ │ │ ├── u20.csv │ │ │ │ ├── u21.csv │ │ │ │ ├── u22.csv │ │ │ │ ├── u23.csv │ │ │ │ ├── u24.csv │ │ │ │ ├── u25.csv │ │ │ │ ├── u26.csv │ │ │ │ ├── u27.csv │ │ │ │ ├── u28.csv │ │ │ │ ├── u29.csv │ │ │ │ ├── u3.csv │ │ │ │ ├── u30.csv │ │ │ │ ├── u31.csv │ │ │ │ ├── u32.csv │ │ │ │ ├── u33.csv │ │ │ │ ├── u34.csv │ │ │ │ ├── u35.csv │ │ │ │ ├── u36.csv │ │ │ │ ├── u37.csv │ │ │ │ ├── u38.csv │ │ │ │ ├── u39.csv │ │ │ │ ├── u4.csv │ │ │ │ ├── u40.csv │ │ │ │ ├── u41.csv │ │ │ │ ├── u42.csv │ │ │ │ ├── u43.csv │ │ │ │ ├── u44.csv │ │ │ │ ├── u45.csv │ │ │ │ ├── u46.csv │ │ │ │ ├── u47.csv │ │ │ │ ├── u48.csv │ │ │ │ ├── u49.csv │ │ │ │ ├── u5.csv │ │ │ │ ├── u50.csv │ │ │ │ ├── u51.csv │ │ │ │ ├── u52.csv │ │ │ │ ├── u53.csv │ │ │ │ ├── u54.csv │ │ │ │ ├── u55.csv │ │ │ │ ├── u56.csv │ │ │ │ ├── u57.csv │ │ │ │ ├── u58.csv │ │ │ │ ├── u59.csv │ │ │ │ ├── u6.csv │ │ │ │ ├── u60.csv │ │ │ │ ├── u61.csv │ │ │ │ ├── u62.csv │ │ │ │ ├── u63.csv │ │ │ │ ├── u64.csv │ │ │ │ ├── u65.csv │ │ │ │ ├── u66.csv │ │ │ │ ├── u67.csv │ │ │ │ ├── u7.csv │ │ │ │ ├── u8.csv │ │ │ │ ├── u9.csv │ │ │ │ ├── xctr.csv │ │ │ │ ├── xemu.csv │ │ │ │ └── yemu.csv │ │ │ └── h8 │ │ │ │ ├── constr.csv │ │ │ │ ├── cputime.txt │ │ │ │ ├── u.csv │ │ │ │ ├── u0.csv │ │ │ │ ├── u1.csv │ │ │ │ ├── u10.csv │ │ │ │ ├── u11.csv │ │ │ │ ├── u12.csv │ │ │ │ ├── u13.csv │ │ │ │ ├── u14.csv │ │ │ │ ├── u15.csv │ │ │ │ ├── u16.csv │ │ │ │ ├── u17.csv │ │ │ │ ├── u18.csv │ │ │ │ ├── u19.csv │ │ │ │ ├── u2.csv │ │ │ │ ├── u20.csv │ │ │ │ ├── u21.csv │ │ │ │ ├── u22.csv │ │ │ │ ├── u23.csv │ │ │ │ ├── u24.csv │ │ │ │ ├── u25.csv │ │ │ │ ├── u26.csv │ │ │ │ ├── u27.csv │ │ │ │ ├── u28.csv │ │ │ │ ├── u29.csv │ │ │ │ ├── u3.csv │ │ │ │ ├── u30.csv │ │ │ │ ├── u31.csv │ │ │ │ ├── u32.csv │ │ │ │ ├── u33.csv │ │ │ │ ├── u34.csv │ │ │ │ ├── u35.csv │ │ │ │ ├── u36.csv │ │ │ │ ├── u37.csv │ │ │ │ ├── u38.csv │ │ │ │ ├── u39.csv │ │ │ │ ├── u4.csv │ │ │ │ ├── u40.csv │ │ │ │ ├── u41.csv │ │ │ │ ├── u42.csv │ │ │ │ ├── u43.csv │ │ │ │ ├── u44.csv │ │ │ │ ├── u45.csv │ │ │ │ ├── u46.csv │ │ │ │ ├── u47.csv │ │ │ │ ├── u48.csv │ │ │ │ ├── u49.csv │ │ │ │ ├── u5.csv │ │ │ │ ├── u50.csv │ │ │ │ ├── u51.csv │ │ │ │ ├── u52.csv │ │ │ │ ├── u53.csv │ │ │ │ ├── u54.csv │ │ │ │ ├── u55.csv │ │ │ │ ├── u56.csv │ │ │ │ ├── u57.csv │ │ │ │ ├── u58.csv │ │ │ │ ├── u59.csv │ │ │ │ ├── u6.csv │ │ │ │ ├── u60.csv │ │ │ │ ├── u61.csv │ │ │ │ ├── u62.csv │ │ │ │ ├── u63.csv │ │ │ │ ├── u64.csv │ │ │ │ ├── u65.csv │ │ │ │ ├── u7.csv │ │ │ │ ├── u8.csv │ │ │ │ ├── u9.csv │ │ │ │ ├── xctr.csv │ │ │ │ ├── xemu.csv │ │ │ │ └── yemu.csv │ │ │ ├── r1c1_dymola_1e-7 │ │ │ ├── h10 │ │ │ │ ├── constr.csv │ │ │ │ ├── cputime.txt │ │ │ │ ├── u.csv │ │ │ │ ├── u0.csv │ │ │ │ ├── u1.csv │ │ │ │ ├── u10.csv │ │ │ │ ├── u11.csv │ │ │ │ ├── u12.csv │ │ │ │ ├── u13.csv │ │ │ │ ├── u14.csv │ │ │ │ ├── u15.csv │ │ │ │ ├── u16.csv │ │ │ │ ├── u17.csv │ │ │ │ ├── u18.csv │ │ │ │ ├── u19.csv │ │ │ │ ├── u2.csv │ │ │ │ ├── u20.csv │ │ │ │ ├── u21.csv │ │ │ │ ├── u22.csv │ │ │ │ ├── u23.csv │ │ │ │ ├── u24.csv │ │ │ │ ├── u25.csv │ │ │ │ ├── u26.csv │ │ │ │ ├── u27.csv │ │ │ │ ├── u28.csv │ │ │ │ ├── u29.csv │ │ │ │ ├── u3.csv │ │ │ │ ├── u30.csv │ │ │ │ ├── u31.csv │ │ │ │ ├── u32.csv │ │ │ │ ├── u33.csv │ │ │ │ ├── u34.csv │ │ │ │ ├── u35.csv │ │ │ │ ├── u36.csv │ │ │ │ ├── u37.csv │ │ │ │ ├── u38.csv │ │ │ │ ├── u39.csv │ │ │ │ ├── u4.csv │ │ │ │ ├── u40.csv │ │ │ │ ├── u41.csv │ │ │ │ ├── u42.csv │ │ │ │ ├── u43.csv │ │ │ │ ├── u44.csv │ │ │ │ ├── u45.csv │ │ │ │ ├── u46.csv │ │ │ │ ├── u47.csv │ │ │ │ ├── u48.csv │ │ │ │ ├── u49.csv │ │ │ │ ├── u5.csv │ │ │ │ ├── u50.csv │ │ │ │ ├── u51.csv │ │ │ │ ├── u52.csv │ │ │ │ ├── u53.csv │ │ │ │ ├── u54.csv │ │ │ │ ├── u55.csv │ │ │ │ ├── u56.csv │ │ │ │ ├── u57.csv │ │ │ │ ├── u58.csv │ │ │ │ ├── u59.csv │ │ │ │ ├── u6.csv │ │ │ │ ├── u60.csv │ │ │ │ ├── u61.csv │ │ │ │ ├── u62.csv │ │ │ │ ├── u63.csv │ │ │ │ ├── u7.csv │ │ │ │ ├── u8.csv │ │ │ │ ├── u9.csv │ │ │ │ ├── xctr.csv │ │ │ │ ├── xemu.csv │ │ │ │ └── yemu.csv │ │ │ ├── h2 │ │ │ │ ├── constr.csv │ │ │ │ ├── cputime.txt │ │ │ │ ├── u.csv │ │ │ │ ├── u0.csv │ │ │ │ ├── u1.csv │ │ │ │ ├── u10.csv │ │ │ │ ├── u11.csv │ │ │ │ ├── u12.csv │ │ │ │ ├── u13.csv │ │ │ │ ├── u14.csv │ │ │ │ ├── u15.csv │ │ │ │ ├── u16.csv │ │ │ │ ├── u17.csv │ │ │ │ ├── u18.csv │ │ │ │ ├── u19.csv │ │ │ │ ├── u2.csv │ │ │ │ ├── u20.csv │ │ │ │ ├── u21.csv │ │ │ │ ├── u22.csv │ │ │ │ ├── u23.csv │ │ │ │ ├── u24.csv │ │ │ │ ├── u25.csv │ │ │ │ ├── u26.csv │ │ │ │ ├── u27.csv │ │ │ │ ├── u28.csv │ │ │ │ ├── u29.csv │ │ │ │ ├── u3.csv │ │ │ │ ├── u30.csv │ │ │ │ ├── u31.csv │ │ │ │ ├── u32.csv │ │ │ │ ├── u33.csv │ │ │ │ ├── u34.csv │ │ │ │ ├── u35.csv │ │ │ │ ├── u36.csv │ │ │ │ ├── u37.csv │ │ │ │ ├── u38.csv │ │ │ │ ├── u39.csv │ │ │ │ ├── u4.csv │ │ │ │ ├── u40.csv │ │ │ │ ├── u41.csv │ │ │ │ ├── u42.csv │ │ │ │ ├── u43.csv │ │ │ │ ├── u44.csv │ │ │ │ ├── u45.csv │ │ │ │ ├── u46.csv │ │ │ │ ├── u47.csv │ │ │ │ ├── u48.csv │ │ │ │ ├── u49.csv │ │ │ │ ├── u5.csv │ │ │ │ ├── u50.csv │ │ │ │ ├── u51.csv │ │ │ │ ├── u52.csv │ │ │ │ ├── u53.csv │ │ │ │ ├── u54.csv │ │ │ │ ├── u55.csv │ │ │ │ ├── u56.csv │ │ │ │ ├── u57.csv │ │ │ │ ├── u58.csv │ │ │ │ ├── u59.csv │ │ │ │ ├── u6.csv │ │ │ │ ├── u60.csv │ │ │ │ ├── u61.csv │ │ │ │ ├── u62.csv │ │ │ │ ├── u63.csv │ │ │ │ ├── u64.csv │ │ │ │ ├── u65.csv │ │ │ │ ├── u66.csv │ │ │ │ ├── u67.csv │ │ │ │ ├── u68.csv │ │ │ │ ├── u69.csv │ │ │ │ ├── u7.csv │ │ │ │ ├── u70.csv │ │ │ │ ├── u71.csv │ │ │ │ ├── u8.csv │ │ │ │ ├── u9.csv │ │ │ │ ├── xctr.csv │ │ │ │ ├── xemu.csv │ │ │ │ └── yemu.csv │ │ │ ├── h4 │ │ │ │ ├── constr.csv │ │ │ │ ├── cputime.txt │ │ │ │ ├── u.csv │ │ │ │ ├── u0.csv │ │ │ │ ├── u1.csv │ │ │ │ ├── u10.csv │ │ │ │ ├── u11.csv │ │ │ │ ├── u12.csv │ │ │ │ ├── u13.csv │ │ │ │ ├── u14.csv │ │ │ │ ├── u15.csv │ │ │ │ ├── u16.csv │ │ │ │ ├── u17.csv │ │ │ │ ├── u18.csv │ │ │ │ ├── u19.csv │ │ │ │ ├── u2.csv │ │ │ │ ├── u20.csv │ │ │ │ ├── u21.csv │ │ │ │ ├── u22.csv │ │ │ │ ├── u23.csv │ │ │ │ ├── u24.csv │ │ │ │ ├── u25.csv │ │ │ │ ├── u26.csv │ │ │ │ ├── u27.csv │ │ │ │ ├── u28.csv │ │ │ │ ├── u29.csv │ │ │ │ ├── u3.csv │ │ │ │ ├── u30.csv │ │ │ │ ├── u31.csv │ │ │ │ ├── u32.csv │ │ │ │ ├── u33.csv │ │ │ │ ├── u34.csv │ │ │ │ ├── u35.csv │ │ │ │ ├── u36.csv │ │ │ │ ├── u37.csv │ │ │ │ ├── u38.csv │ │ │ │ ├── u39.csv │ │ │ │ ├── u4.csv │ │ │ │ ├── u40.csv │ │ │ │ ├── u41.csv │ │ │ │ ├── u42.csv │ │ │ │ ├── u43.csv │ │ │ │ ├── u44.csv │ │ │ │ ├── u45.csv │ │ │ │ ├── u46.csv │ │ │ │ ├── u47.csv │ │ │ │ ├── u48.csv │ │ │ │ ├── u49.csv │ │ │ │ ├── u5.csv │ │ │ │ ├── u50.csv │ │ │ │ ├── u51.csv │ │ │ │ ├── u52.csv │ │ │ │ ├── u53.csv │ │ │ │ ├── u54.csv │ │ │ │ ├── u55.csv │ │ │ │ ├── u56.csv │ │ │ │ ├── u57.csv │ │ │ │ ├── u58.csv │ │ │ │ ├── u59.csv │ │ │ │ ├── u6.csv │ │ │ │ ├── u60.csv │ │ │ │ ├── u61.csv │ │ │ │ ├── u62.csv │ │ │ │ ├── u63.csv │ │ │ │ ├── u64.csv │ │ │ │ ├── u65.csv │ │ │ │ ├── u66.csv │ │ │ │ ├── u67.csv │ │ │ │ ├── u68.csv │ │ │ │ ├── u69.csv │ │ │ │ ├── u7.csv │ │ │ │ ├── u8.csv │ │ │ │ ├── u9.csv │ │ │ │ ├── xctr.csv │ │ │ │ ├── xemu.csv │ │ │ │ └── yemu.csv │ │ │ ├── h6 │ │ │ │ ├── constr.csv │ │ │ │ ├── cputime.txt │ │ │ │ ├── u.csv │ │ │ │ ├── u0.csv │ │ │ │ ├── u1.csv │ │ │ │ ├── u10.csv │ │ │ │ ├── u11.csv │ │ │ │ ├── u12.csv │ │ │ │ ├── u13.csv │ │ │ │ ├── u14.csv │ │ │ │ ├── u15.csv │ │ │ │ ├── u16.csv │ │ │ │ ├── u17.csv │ │ │ │ ├── u18.csv │ │ │ │ ├── u19.csv │ │ │ │ ├── u2.csv │ │ │ │ ├── u20.csv │ │ │ │ ├── u21.csv │ │ │ │ ├── u22.csv │ │ │ │ ├── u23.csv │ │ │ │ ├── u24.csv │ │ │ │ ├── u25.csv │ │ │ │ ├── u26.csv │ │ │ │ ├── u27.csv │ │ │ │ ├── u28.csv │ │ │ │ ├── u29.csv │ │ │ │ ├── u3.csv │ │ │ │ ├── u30.csv │ │ │ │ ├── u31.csv │ │ │ │ ├── u32.csv │ │ │ │ ├── u33.csv │ │ │ │ ├── u34.csv │ │ │ │ ├── u35.csv │ │ │ │ ├── u36.csv │ │ │ │ ├── u37.csv │ │ │ │ ├── u38.csv │ │ │ │ ├── u39.csv │ │ │ │ ├── u4.csv │ │ │ │ ├── u40.csv │ │ │ │ ├── u41.csv │ │ │ │ ├── u42.csv │ │ │ │ ├── u43.csv │ │ │ │ ├── u44.csv │ │ │ │ ├── u45.csv │ │ │ │ ├── u46.csv │ │ │ │ ├── u47.csv │ │ │ │ ├── u48.csv │ │ │ │ ├── u49.csv │ │ │ │ ├── u5.csv │ │ │ │ ├── u50.csv │ │ │ │ ├── u51.csv │ │ │ │ ├── u52.csv │ │ │ │ ├── u53.csv │ │ │ │ ├── u54.csv │ │ │ │ ├── u55.csv │ │ │ │ ├── u56.csv │ │ │ │ ├── u57.csv │ │ │ │ ├── u58.csv │ │ │ │ ├── u59.csv │ │ │ │ ├── u6.csv │ │ │ │ ├── u60.csv │ │ │ │ ├── u61.csv │ │ │ │ ├── u62.csv │ │ │ │ ├── u63.csv │ │ │ │ ├── u64.csv │ │ │ │ ├── u65.csv │ │ │ │ ├── u66.csv │ │ │ │ ├── u67.csv │ │ │ │ ├── u7.csv │ │ │ │ ├── u8.csv │ │ │ │ ├── u9.csv │ │ │ │ ├── xctr.csv │ │ │ │ ├── xemu.csv │ │ │ │ └── yemu.csv │ │ │ └── h8 │ │ │ │ ├── constr.csv │ │ │ │ ├── cputime.txt │ │ │ │ ├── u.csv │ │ │ │ ├── u0.csv │ │ │ │ ├── u1.csv │ │ │ │ ├── u10.csv │ │ │ │ ├── u11.csv │ │ │ │ ├── u12.csv │ │ │ │ ├── u13.csv │ │ │ │ ├── u14.csv │ │ │ │ ├── u15.csv │ │ │ │ ├── u16.csv │ │ │ │ ├── u17.csv │ │ │ │ ├── u18.csv │ │ │ │ ├── u19.csv │ │ │ │ ├── u2.csv │ │ │ │ ├── u20.csv │ │ │ │ ├── u21.csv │ │ │ │ ├── u22.csv │ │ │ │ ├── u23.csv │ │ │ │ ├── u24.csv │ │ │ │ ├── u25.csv │ │ │ │ ├── u26.csv │ │ │ │ ├── u27.csv │ │ │ │ ├── u28.csv │ │ │ │ ├── u29.csv │ │ │ │ ├── u3.csv │ │ │ │ ├── u30.csv │ │ │ │ ├── u31.csv │ │ │ │ ├── u32.csv │ │ │ │ ├── u33.csv │ │ │ │ ├── u34.csv │ │ │ │ ├── u35.csv │ │ │ │ ├── u36.csv │ │ │ │ ├── u37.csv │ │ │ │ ├── u38.csv │ │ │ │ ├── u39.csv │ │ │ │ ├── u4.csv │ │ │ │ ├── u40.csv │ │ │ │ ├── u41.csv │ │ │ │ ├── u42.csv │ │ │ │ ├── u43.csv │ │ │ │ ├── u44.csv │ │ │ │ ├── u45.csv │ │ │ │ ├── u46.csv │ │ │ │ ├── u47.csv │ │ │ │ ├── u48.csv │ │ │ │ ├── u49.csv │ │ │ │ ├── u5.csv │ │ │ │ ├── u50.csv │ │ │ │ ├── u51.csv │ │ │ │ ├── u52.csv │ │ │ │ ├── u53.csv │ │ │ │ ├── u54.csv │ │ │ │ ├── u55.csv │ │ │ │ ├── u56.csv │ │ │ │ ├── u57.csv │ │ │ │ ├── u58.csv │ │ │ │ ├── u59.csv │ │ │ │ ├── u6.csv │ │ │ │ ├── u60.csv │ │ │ │ ├── u61.csv │ │ │ │ ├── u62.csv │ │ │ │ ├── u63.csv │ │ │ │ ├── u64.csv │ │ │ │ ├── u65.csv │ │ │ │ ├── u7.csv │ │ │ │ ├── u8.csv │ │ │ │ ├── u9.csv │ │ │ │ ├── xctr.csv │ │ │ │ ├── xemu.csv │ │ │ │ └── yemu.csv │ │ │ └── r1c1_dymola_1e-9 │ │ │ ├── h10 │ │ │ ├── constr.csv │ │ │ ├── cputime.txt │ │ │ ├── u.csv │ │ │ ├── u0.csv │ │ │ ├── u1.csv │ │ │ ├── u10.csv │ │ │ ├── u11.csv │ │ │ ├── u12.csv │ │ │ ├── u13.csv │ │ │ ├── u14.csv │ │ │ ├── u15.csv │ │ │ ├── u16.csv │ │ │ ├── u17.csv │ │ │ ├── u18.csv │ │ │ ├── u19.csv │ │ │ ├── u2.csv │ │ │ ├── u20.csv │ │ │ ├── u21.csv │ │ │ ├── u22.csv │ │ │ ├── u23.csv │ │ │ ├── u24.csv │ │ │ ├── u25.csv │ │ │ ├── u26.csv │ │ │ ├── u27.csv │ │ │ ├── u28.csv │ │ │ ├── u29.csv │ │ │ ├── u3.csv │ │ │ ├── u30.csv │ │ │ ├── u31.csv │ │ │ ├── u32.csv │ │ │ ├── u33.csv │ │ │ ├── u34.csv │ │ │ ├── u35.csv │ │ │ ├── u36.csv │ │ │ ├── u37.csv │ │ │ ├── u38.csv │ │ │ ├── u39.csv │ │ │ ├── u4.csv │ │ │ ├── u40.csv │ │ │ ├── u41.csv │ │ │ ├── u42.csv │ │ │ ├── u43.csv │ │ │ ├── u44.csv │ │ │ ├── u45.csv │ │ │ ├── u46.csv │ │ │ ├── u47.csv │ │ │ ├── u48.csv │ │ │ ├── u49.csv │ │ │ ├── u5.csv │ │ │ ├── u50.csv │ │ │ ├── u51.csv │ │ │ ├── u52.csv │ │ │ ├── u53.csv │ │ │ ├── u54.csv │ │ │ ├── u55.csv │ │ │ ├── u56.csv │ │ │ ├── u57.csv │ │ │ ├── u58.csv │ │ │ ├── u59.csv │ │ │ ├── u6.csv │ │ │ ├── u60.csv │ │ │ ├── u61.csv │ │ │ ├── u62.csv │ │ │ ├── u63.csv │ │ │ ├── u7.csv │ │ │ ├── u8.csv │ │ │ ├── u9.csv │ │ │ ├── xctr.csv │ │ │ ├── xemu.csv │ │ │ └── yemu.csv │ │ │ ├── h2 │ │ │ ├── constr.csv │ │ │ ├── cputime.txt │ │ │ ├── u.csv │ │ │ ├── u0.csv │ │ │ ├── u1.csv │ │ │ ├── u10.csv │ │ │ ├── u11.csv │ │ │ ├── u12.csv │ │ │ ├── u13.csv │ │ │ ├── u14.csv │ │ │ ├── u15.csv │ │ │ ├── u16.csv │ │ │ ├── u17.csv │ │ │ ├── u18.csv │ │ │ ├── u19.csv │ │ │ ├── u2.csv │ │ │ ├── u20.csv │ │ │ ├── u21.csv │ │ │ ├── u22.csv │ │ │ ├── u23.csv │ │ │ ├── u24.csv │ │ │ ├── u25.csv │ │ │ ├── u26.csv │ │ │ ├── u27.csv │ │ │ ├── u28.csv │ │ │ ├── u29.csv │ │ │ ├── u3.csv │ │ │ ├── u30.csv │ │ │ ├── u31.csv │ │ │ ├── u32.csv │ │ │ ├── u33.csv │ │ │ ├── u34.csv │ │ │ ├── u35.csv │ │ │ ├── u36.csv │ │ │ ├── u37.csv │ │ │ ├── u38.csv │ │ │ ├── u39.csv │ │ │ ├── u4.csv │ │ │ ├── u40.csv │ │ │ ├── u41.csv │ │ │ ├── u42.csv │ │ │ ├── u43.csv │ │ │ ├── u44.csv │ │ │ ├── u45.csv │ │ │ ├── u46.csv │ │ │ ├── u47.csv │ │ │ ├── u48.csv │ │ │ ├── u49.csv │ │ │ ├── u5.csv │ │ │ ├── u50.csv │ │ │ ├── u51.csv │ │ │ ├── u52.csv │ │ │ ├── u53.csv │ │ │ ├── u54.csv │ │ │ ├── u55.csv │ │ │ ├── u56.csv │ │ │ ├── u57.csv │ │ │ ├── u58.csv │ │ │ ├── u59.csv │ │ │ ├── u6.csv │ │ │ ├── u60.csv │ │ │ ├── u61.csv │ │ │ ├── u62.csv │ │ │ ├── u63.csv │ │ │ ├── u64.csv │ │ │ ├── u65.csv │ │ │ ├── u66.csv │ │ │ ├── u67.csv │ │ │ ├── u68.csv │ │ │ ├── u69.csv │ │ │ ├── u7.csv │ │ │ ├── u70.csv │ │ │ ├── u71.csv │ │ │ ├── u8.csv │ │ │ ├── u9.csv │ │ │ ├── xctr.csv │ │ │ ├── xemu.csv │ │ │ └── yemu.csv │ │ │ ├── h4 │ │ │ ├── constr.csv │ │ │ ├── cputime.txt │ │ │ ├── u.csv │ │ │ ├── u0.csv │ │ │ ├── u1.csv │ │ │ ├── u10.csv │ │ │ ├── u11.csv │ │ │ ├── u12.csv │ │ │ ├── u13.csv │ │ │ ├── u14.csv │ │ │ ├── u15.csv │ │ │ ├── u16.csv │ │ │ ├── u17.csv │ │ │ ├── u18.csv │ │ │ ├── u19.csv │ │ │ ├── u2.csv │ │ │ ├── u20.csv │ │ │ ├── u21.csv │ │ │ ├── u22.csv │ │ │ ├── u23.csv │ │ │ ├── u24.csv │ │ │ ├── u25.csv │ │ │ ├── u26.csv │ │ │ ├── u27.csv │ │ │ ├── u28.csv │ │ │ ├── u29.csv │ │ │ ├── u3.csv │ │ │ ├── u30.csv │ │ │ ├── u31.csv │ │ │ ├── u32.csv │ │ │ ├── u33.csv │ │ │ ├── u34.csv │ │ │ ├── u35.csv │ │ │ ├── u36.csv │ │ │ ├── u37.csv │ │ │ ├── u38.csv │ │ │ ├── u39.csv │ │ │ ├── u4.csv │ │ │ ├── u40.csv │ │ │ ├── u41.csv │ │ │ ├── u42.csv │ │ │ ├── u43.csv │ │ │ ├── u44.csv │ │ │ ├── u45.csv │ │ │ ├── u46.csv │ │ │ ├── u47.csv │ │ │ ├── u48.csv │ │ │ ├── u49.csv │ │ │ ├── u5.csv │ │ │ ├── u50.csv │ │ │ ├── u51.csv │ │ │ ├── u52.csv │ │ │ ├── u53.csv │ │ │ ├── u54.csv │ │ │ ├── u55.csv │ │ │ ├── u56.csv │ │ │ ├── u57.csv │ │ │ ├── u58.csv │ │ │ ├── u59.csv │ │ │ ├── u6.csv │ │ │ ├── u60.csv │ │ │ ├── u61.csv │ │ │ ├── u62.csv │ │ │ ├── u63.csv │ │ │ ├── u64.csv │ │ │ ├── u65.csv │ │ │ ├── u66.csv │ │ │ ├── u67.csv │ │ │ ├── u68.csv │ │ │ ├── u69.csv │ │ │ ├── u7.csv │ │ │ ├── u8.csv │ │ │ ├── u9.csv │ │ │ ├── xctr.csv │ │ │ ├── xemu.csv │ │ │ └── yemu.csv │ │ │ ├── h6 │ │ │ ├── constr.csv │ │ │ ├── cputime.txt │ │ │ ├── u.csv │ │ │ ├── u0.csv │ │ │ ├── u1.csv │ │ │ ├── u10.csv │ │ │ ├── u11.csv │ │ │ ├── u12.csv │ │ │ ├── u13.csv │ │ │ ├── u14.csv │ │ │ ├── u15.csv │ │ │ ├── u16.csv │ │ │ ├── u17.csv │ │ │ ├── u18.csv │ │ │ ├── u19.csv │ │ │ ├── u2.csv │ │ │ ├── u20.csv │ │ │ ├── u21.csv │ │ │ ├── u22.csv │ │ │ ├── u23.csv │ │ │ ├── u24.csv │ │ │ ├── u25.csv │ │ │ ├── u26.csv │ │ │ ├── u27.csv │ │ │ ├── u28.csv │ │ │ ├── u29.csv │ │ │ ├── u3.csv │ │ │ ├── u30.csv │ │ │ ├── u31.csv │ │ │ ├── u32.csv │ │ │ ├── u33.csv │ │ │ ├── u34.csv │ │ │ ├── u35.csv │ │ │ ├── u36.csv │ │ │ ├── u37.csv │ │ │ ├── u38.csv │ │ │ ├── u39.csv │ │ │ ├── u4.csv │ │ │ ├── u40.csv │ │ │ ├── u41.csv │ │ │ ├── u42.csv │ │ │ ├── u43.csv │ │ │ ├── u44.csv │ │ │ ├── u45.csv │ │ │ ├── u46.csv │ │ │ ├── u47.csv │ │ │ ├── u48.csv │ │ │ ├── u49.csv │ │ │ ├── u5.csv │ │ │ ├── u50.csv │ │ │ ├── u51.csv │ │ │ ├── u52.csv │ │ │ ├── u53.csv │ │ │ ├── u54.csv │ │ │ ├── u55.csv │ │ │ ├── u56.csv │ │ │ ├── u57.csv │ │ │ ├── u58.csv │ │ │ ├── u59.csv │ │ │ ├── u6.csv │ │ │ ├── u60.csv │ │ │ ├── u61.csv │ │ │ ├── u62.csv │ │ │ ├── u63.csv │ │ │ ├── u64.csv │ │ │ ├── u65.csv │ │ │ ├── u66.csv │ │ │ ├── u67.csv │ │ │ ├── u7.csv │ │ │ ├── u8.csv │ │ │ ├── u9.csv │ │ │ ├── xctr.csv │ │ │ ├── xemu.csv │ │ │ └── yemu.csv │ │ │ └── h8 │ │ │ ├── constr.csv │ │ │ ├── cputime.txt │ │ │ ├── u.csv │ │ │ ├── u0.csv │ │ │ ├── u1.csv │ │ │ ├── u10.csv │ │ │ ├── u11.csv │ │ │ ├── u12.csv │ │ │ ├── u13.csv │ │ │ ├── u14.csv │ │ │ ├── u15.csv │ │ │ ├── u16.csv │ │ │ ├── u17.csv │ │ │ ├── u18.csv │ │ │ ├── u19.csv │ │ │ ├── u2.csv │ │ │ ├── u20.csv │ │ │ ├── u21.csv │ │ │ ├── u22.csv │ │ │ ├── u23.csv │ │ │ ├── u24.csv │ │ │ ├── u25.csv │ │ │ ├── u26.csv │ │ │ ├── u27.csv │ │ │ ├── u28.csv │ │ │ ├── u29.csv │ │ │ ├── u3.csv │ │ │ ├── u30.csv │ │ │ ├── u31.csv │ │ │ ├── u32.csv │ │ │ ├── u33.csv │ │ │ ├── u34.csv │ │ │ ├── u35.csv │ │ │ ├── u36.csv │ │ │ ├── u37.csv │ │ │ ├── u38.csv │ │ │ ├── u39.csv │ │ │ ├── u4.csv │ │ │ ├── u40.csv │ │ │ ├── u41.csv │ │ │ ├── u42.csv │ │ │ ├── u43.csv │ │ │ ├── u44.csv │ │ │ ├── u45.csv │ │ │ ├── u46.csv │ │ │ ├── u47.csv │ │ │ ├── u48.csv │ │ │ ├── u49.csv │ │ │ ├── u5.csv │ │ │ ├── u50.csv │ │ │ ├── u51.csv │ │ │ ├── u52.csv │ │ │ ├── u53.csv │ │ │ ├── u54.csv │ │ │ ├── u55.csv │ │ │ ├── u56.csv │ │ │ ├── u57.csv │ │ │ ├── u58.csv │ │ │ ├── u59.csv │ │ │ ├── u6.csv │ │ │ ├── u60.csv │ │ │ ├── u61.csv │ │ │ ├── u62.csv │ │ │ ├── u63.csv │ │ │ ├── u64.csv │ │ │ ├── u65.csv │ │ │ ├── u7.csv │ │ │ ├── u8.csv │ │ │ ├── u9.csv │ │ │ ├── xctr.csv │ │ │ ├── xemu.csv │ │ │ └── yemu.csv │ ├── case2 │ │ ├── case2_est.py │ │ ├── case2_mpc_lin_svm.py │ │ ├── models │ │ │ ├── r1c1_dymola_1e-11.fmu │ │ │ └── r1c1_dymola_1e-11_dpos0.fmu │ │ └── results │ │ │ ├── est │ │ │ ├── ideal.csv │ │ │ ├── ideal_training.png │ │ │ ├── ideal_validation.png │ │ │ ├── inp.csv │ │ │ ├── inp_training.png │ │ │ ├── inp_validation.png │ │ │ ├── r1c1_dymola_1e-11 │ │ │ │ ├── GA_1.png │ │ │ │ ├── SCIPY-L-BFGS-B_1.png │ │ │ │ ├── best_per_run.csv │ │ │ │ ├── errors.png │ │ │ │ ├── final.csv │ │ │ │ ├── parameters.csv │ │ │ │ ├── parameters_rel.csv │ │ │ │ ├── summary_1.csv │ │ │ │ ├── validation.png │ │ │ │ ├── vld_err.txt │ │ │ │ └── vld_res.csv │ │ │ └── r1c1_dymola_1e-11_dpos0 │ │ │ │ ├── GA_1.png │ │ │ │ ├── SCIPY-L-BFGS-B_1.png │ │ │ │ ├── best_per_run.csv │ │ │ │ ├── errors.png │ │ │ │ ├── final.csv │ │ │ │ ├── parameters.csv │ │ │ │ ├── parameters_rel.csv │ │ │ │ ├── summary_1.csv │ │ │ │ ├── validation.png │ │ │ │ ├── vld_err.txt │ │ │ │ └── vld_res.csv │ │ │ └── mpc-lin │ │ │ ├── h10 │ │ │ ├── constr.csv │ │ │ ├── cputime.txt │ │ │ ├── u.csv │ │ │ ├── u0.csv │ │ │ ├── u1.csv │ │ │ ├── u10.csv │ │ │ ├── u11.csv │ │ │ ├── u12.csv │ │ │ ├── u13.csv │ │ │ ├── u14.csv │ │ │ ├── u15.csv │ │ │ ├── u16.csv │ │ │ ├── u17.csv │ │ │ ├── u18.csv │ │ │ ├── u19.csv │ │ │ ├── u2.csv │ │ │ ├── u20.csv │ │ │ ├── u21.csv │ │ │ ├── u22.csv │ │ │ ├── u23.csv │ │ │ ├── u24.csv │ │ │ ├── u25.csv │ │ │ ├── u26.csv │ │ │ ├── u27.csv │ │ │ ├── u28.csv │ │ │ ├── u29.csv │ │ │ ├── u3.csv │ │ │ ├── u30.csv │ │ │ ├── u31.csv │ │ │ ├── u32.csv │ │ │ ├── u33.csv │ │ │ ├── u34.csv │ │ │ ├── u35.csv │ │ │ ├── u36.csv │ │ │ ├── u37.csv │ │ │ ├── u38.csv │ │ │ ├── u39.csv │ │ │ ├── u4.csv │ │ │ ├── u40.csv │ │ │ ├── u41.csv │ │ │ ├── u42.csv │ │ │ ├── u43.csv │ │ │ ├── u44.csv │ │ │ ├── u45.csv │ │ │ ├── u46.csv │ │ │ ├── u47.csv │ │ │ ├── u48.csv │ │ │ ├── u49.csv │ │ │ ├── u5.csv │ │ │ ├── u50.csv │ │ │ ├── u51.csv │ │ │ ├── u52.csv │ │ │ ├── u53.csv │ │ │ ├── u54.csv │ │ │ ├── u55.csv │ │ │ ├── u56.csv │ │ │ ├── u57.csv │ │ │ ├── u58.csv │ │ │ ├── u59.csv │ │ │ ├── u6.csv │ │ │ ├── u60.csv │ │ │ ├── u61.csv │ │ │ ├── u62.csv │ │ │ ├── u63.csv │ │ │ ├── u7.csv │ │ │ ├── u8.csv │ │ │ ├── u9.csv │ │ │ ├── xctr.csv │ │ │ ├── xemu.csv │ │ │ └── yemu.csv │ │ │ ├── h2 │ │ │ ├── constr.csv │ │ │ ├── cputime.txt │ │ │ ├── u.csv │ │ │ ├── u0.csv │ │ │ ├── u1.csv │ │ │ ├── u10.csv │ │ │ ├── u11.csv │ │ │ ├── u12.csv │ │ │ ├── u13.csv │ │ │ ├── u14.csv │ │ │ ├── u15.csv │ │ │ ├── u16.csv │ │ │ ├── u17.csv │ │ │ ├── u18.csv │ │ │ ├── u19.csv │ │ │ ├── u2.csv │ │ │ ├── u20.csv │ │ │ ├── u21.csv │ │ │ ├── u22.csv │ │ │ ├── u23.csv │ │ │ ├── u24.csv │ │ │ ├── u25.csv │ │ │ ├── u26.csv │ │ │ ├── u27.csv │ │ │ ├── u28.csv │ │ │ ├── u29.csv │ │ │ ├── u3.csv │ │ │ ├── u30.csv │ │ │ ├── u31.csv │ │ │ ├── u32.csv │ │ │ ├── u33.csv │ │ │ ├── u34.csv │ │ │ ├── u35.csv │ │ │ ├── u36.csv │ │ │ ├── u37.csv │ │ │ ├── u38.csv │ │ │ ├── u39.csv │ │ │ ├── u4.csv │ │ │ ├── u40.csv │ │ │ ├── u41.csv │ │ │ ├── u42.csv │ │ │ ├── u43.csv │ │ │ ├── u44.csv │ │ │ ├── u45.csv │ │ │ ├── u46.csv │ │ │ ├── u47.csv │ │ │ ├── u48.csv │ │ │ ├── u49.csv │ │ │ ├── u5.csv │ │ │ ├── u50.csv │ │ │ ├── u51.csv │ │ │ ├── u52.csv │ │ │ ├── u53.csv │ │ │ ├── u54.csv │ │ │ ├── u55.csv │ │ │ ├── u56.csv │ │ │ ├── u57.csv │ │ │ ├── u58.csv │ │ │ ├── u59.csv │ │ │ ├── u6.csv │ │ │ ├── u60.csv │ │ │ ├── u61.csv │ │ │ ├── u62.csv │ │ │ ├── u63.csv │ │ │ ├── u64.csv │ │ │ ├── u65.csv │ │ │ ├── u66.csv │ │ │ ├── u67.csv │ │ │ ├── u68.csv │ │ │ ├── u69.csv │ │ │ ├── u7.csv │ │ │ ├── u70.csv │ │ │ ├── u71.csv │ │ │ ├── u8.csv │ │ │ ├── u9.csv │ │ │ ├── xctr.csv │ │ │ ├── xemu.csv │ │ │ └── yemu.csv │ │ │ ├── h4 │ │ │ ├── constr.csv │ │ │ ├── cputime.txt │ │ │ ├── u.csv │ │ │ ├── u0.csv │ │ │ ├── u1.csv │ │ │ ├── u10.csv │ │ │ ├── u11.csv │ │ │ ├── u12.csv │ │ │ ├── u13.csv │ │ │ ├── u14.csv │ │ │ ├── u15.csv │ │ │ ├── u16.csv │ │ │ ├── u17.csv │ │ │ ├── u18.csv │ │ │ ├── u19.csv │ │ │ ├── u2.csv │ │ │ ├── u20.csv │ │ │ ├── u21.csv │ │ │ ├── u22.csv │ │ │ ├── u23.csv │ │ │ ├── u24.csv │ │ │ ├── u25.csv │ │ │ ├── u26.csv │ │ │ ├── u27.csv │ │ │ ├── u28.csv │ │ │ ├── u29.csv │ │ │ ├── u3.csv │ │ │ ├── u30.csv │ │ │ ├── u31.csv │ │ │ ├── u32.csv │ │ │ ├── u33.csv │ │ │ ├── u34.csv │ │ │ ├── u35.csv │ │ │ ├── u36.csv │ │ │ ├── u37.csv │ │ │ ├── u38.csv │ │ │ ├── u39.csv │ │ │ ├── u4.csv │ │ │ ├── u40.csv │ │ │ ├── u41.csv │ │ │ ├── u42.csv │ │ │ ├── u43.csv │ │ │ ├── u44.csv │ │ │ ├── u45.csv │ │ │ ├── u46.csv │ │ │ ├── u47.csv │ │ │ ├── u48.csv │ │ │ ├── u49.csv │ │ │ ├── u5.csv │ │ │ ├── u50.csv │ │ │ ├── u51.csv │ │ │ ├── u52.csv │ │ │ ├── u53.csv │ │ │ ├── u54.csv │ │ │ ├── u55.csv │ │ │ ├── u56.csv │ │ │ ├── u57.csv │ │ │ ├── u58.csv │ │ │ ├── u59.csv │ │ │ ├── u6.csv │ │ │ ├── u60.csv │ │ │ ├── u61.csv │ │ │ ├── u62.csv │ │ │ ├── u63.csv │ │ │ ├── u64.csv │ │ │ ├── u65.csv │ │ │ ├── u66.csv │ │ │ ├── u67.csv │ │ │ ├── u68.csv │ │ │ ├── u69.csv │ │ │ ├── u7.csv │ │ │ ├── u8.csv │ │ │ ├── u9.csv │ │ │ ├── xctr.csv │ │ │ ├── xemu.csv │ │ │ └── yemu.csv │ │ │ ├── h6 │ │ │ ├── constr.csv │ │ │ ├── cputime.txt │ │ │ ├── u.csv │ │ │ ├── u0.csv │ │ │ ├── u1.csv │ │ │ ├── u10.csv │ │ │ ├── u11.csv │ │ │ ├── u12.csv │ │ │ ├── u13.csv │ │ │ ├── u14.csv │ │ │ ├── u15.csv │ │ │ ├── u16.csv │ │ │ ├── u17.csv │ │ │ ├── u18.csv │ │ │ ├── u19.csv │ │ │ ├── u2.csv │ │ │ ├── u20.csv │ │ │ ├── u21.csv │ │ │ ├── u22.csv │ │ │ ├── u23.csv │ │ │ ├── u24.csv │ │ │ ├── u25.csv │ │ │ ├── u26.csv │ │ │ ├── u27.csv │ │ │ ├── u28.csv │ │ │ ├── u29.csv │ │ │ ├── u3.csv │ │ │ ├── u30.csv │ │ │ ├── u31.csv │ │ │ ├── u32.csv │ │ │ ├── u33.csv │ │ │ ├── u34.csv │ │ │ ├── u35.csv │ │ │ ├── u36.csv │ │ │ ├── u37.csv │ │ │ ├── u38.csv │ │ │ ├── u39.csv │ │ │ ├── u4.csv │ │ │ ├── u40.csv │ │ │ ├── u41.csv │ │ │ ├── u42.csv │ │ │ ├── u43.csv │ │ │ ├── u44.csv │ │ │ ├── u45.csv │ │ │ ├── u46.csv │ │ │ ├── u47.csv │ │ │ ├── u48.csv │ │ │ ├── u49.csv │ │ │ ├── u5.csv │ │ │ ├── u50.csv │ │ │ ├── u51.csv │ │ │ ├── u52.csv │ │ │ ├── u53.csv │ │ │ ├── u54.csv │ │ │ ├── u55.csv │ │ │ ├── u56.csv │ │ │ ├── u57.csv │ │ │ ├── u58.csv │ │ │ ├── u59.csv │ │ │ ├── u6.csv │ │ │ ├── u60.csv │ │ │ ├── u61.csv │ │ │ ├── u62.csv │ │ │ ├── u63.csv │ │ │ ├── u64.csv │ │ │ ├── u65.csv │ │ │ ├── u66.csv │ │ │ ├── u67.csv │ │ │ ├── u7.csv │ │ │ ├── u8.csv │ │ │ ├── u9.csv │ │ │ ├── xctr.csv │ │ │ ├── xemu.csv │ │ │ └── yemu.csv │ │ │ ├── h8 │ │ │ ├── constr.csv │ │ │ ├── cputime.txt │ │ │ ├── u.csv │ │ │ ├── u0.csv │ │ │ ├── u1.csv │ │ │ ├── u10.csv │ │ │ ├── u11.csv │ │ │ ├── u12.csv │ │ │ ├── u13.csv │ │ │ ├── u14.csv │ │ │ ├── u15.csv │ │ │ ├── u16.csv │ │ │ ├── u17.csv │ │ │ ├── u18.csv │ │ │ ├── u19.csv │ │ │ ├── u2.csv │ │ │ ├── u20.csv │ │ │ ├── u21.csv │ │ │ ├── u22.csv │ │ │ ├── u23.csv │ │ │ ├── u24.csv │ │ │ ├── u25.csv │ │ │ ├── u26.csv │ │ │ ├── u27.csv │ │ │ ├── u28.csv │ │ │ ├── u29.csv │ │ │ ├── u3.csv │ │ │ ├── u30.csv │ │ │ ├── u31.csv │ │ │ ├── u32.csv │ │ │ ├── u33.csv │ │ │ ├── u34.csv │ │ │ ├── u35.csv │ │ │ ├── u36.csv │ │ │ ├── u37.csv │ │ │ ├── u38.csv │ │ │ ├── u39.csv │ │ │ ├── u4.csv │ │ │ ├── u40.csv │ │ │ ├── u41.csv │ │ │ ├── u42.csv │ │ │ ├── u43.csv │ │ │ ├── u44.csv │ │ │ ├── u45.csv │ │ │ ├── u46.csv │ │ │ ├── u47.csv │ │ │ ├── u48.csv │ │ │ ├── u49.csv │ │ │ ├── u5.csv │ │ │ ├── u50.csv │ │ │ ├── u51.csv │ │ │ ├── u52.csv │ │ │ ├── u53.csv │ │ │ ├── u54.csv │ │ │ ├── u55.csv │ │ │ ├── u56.csv │ │ │ ├── u57.csv │ │ │ ├── u58.csv │ │ │ ├── u59.csv │ │ │ ├── u6.csv │ │ │ ├── u60.csv │ │ │ ├── u61.csv │ │ │ ├── u62.csv │ │ │ ├── u63.csv │ │ │ ├── u64.csv │ │ │ ├── u65.csv │ │ │ ├── u7.csv │ │ │ ├── u8.csv │ │ │ ├── u9.csv │ │ │ ├── xctr.csv │ │ │ ├── xemu.csv │ │ │ └── yemu.csv │ │ │ ├── svm_validation.pdf │ │ │ ├── vld_xctr.csv │ │ │ ├── vld_xemu.csv │ │ │ ├── vld_yctr.csv │ │ │ └── vld_yemu.csv │ ├── case3 │ │ ├── case3_est.py │ │ ├── case3_mpc.py │ │ ├── case3_pid.py │ │ └── models │ │ │ ├── r1c1co2_dymola_1e-11.fmu │ │ │ └── r1c1co2pid_dymola_1e-11.fmu │ ├── figs │ │ ├── architecture.pdf │ │ ├── architecture.png │ │ ├── architecture.svg │ │ ├── case1_horizon_tol_1e-11.pdf │ │ ├── case1_horizon_tol_1e-4.pdf │ │ ├── case2_horizon.pdf │ │ ├── cputime.pdf │ │ ├── inputs_mpc.pdf │ │ ├── multiple_shooting.pdf │ │ ├── multiple_shooting.png │ │ ├── multiple_shooting.svg │ │ ├── r1c1_model.PNG │ │ ├── r1c1_model_compact.PNG │ │ ├── r1c1co2_model.PNG │ │ ├── solution_quality.pdf │ │ ├── svr_validation.pdf │ │ └── validation_T.pdf │ └── measurements.csv ├── models │ ├── __init__.py │ ├── statespace.py │ └── statespace_price.py ├── mpc_fmi_1.py ├── mpc_fmi_2.py ├── mpc_fmi_3.py ├── mpc_fmi_4.py ├── mpc_fmi_5.py ├── mpc_fmi_6.py ├── mpc_generic.py ├── mpc_scikit.py ├── mshoot_fmi_1.py ├── mshoot_fmi_2.py ├── mshoot_scikit.py ├── mshoot_statespace_1.py ├── mshoot_statespace_2.py ├── train_scikit.py └── tutorial │ ├── modelica │ ├── R2C2.fmu │ ├── R2C2.mo │ ├── R3C3.fmu │ └── R3C3.mo │ └── tutorial.py ├── mshoot ├── __init__.py ├── interfaces │ ├── __init__.py │ ├── fmi.py │ └── scikit.py ├── mpc.py ├── mshoot.py └── optimize.py ├── resources ├── RCModels │ ├── Experiment.mo │ ├── R1C1.mo │ ├── R2C2.mo │ ├── package.mo │ └── package.order ├── __init__.py ├── fmus │ ├── R1C1 │ │ ├── R1C1.fmu │ │ └── R1C1.mo │ ├── R2C2 │ │ ├── R2C2.fmu │ │ └── R2C2.mo │ ├── RCModels_R1C1.fmu │ └── RCModels_R2C2.fmu └── ou44 │ ├── __init__.py │ ├── data │ ├── AHU.png │ ├── README.txt │ ├── areas.txt │ ├── df_FTI1.csv │ ├── df_FTI2.csv │ ├── df_blinds.csv │ ├── df_co2.csv │ ├── df_el_light.csv │ ├── df_heat_supply.csv │ ├── df_hpos.csv │ ├── df_occ.csv │ ├── df_pir.csv │ ├── df_plug_loads.csv │ ├── df_solrad.csv │ ├── df_t.csv │ ├── df_tamb.csv │ ├── df_vav.csv │ ├── df_windspeed.csv │ ├── maxvent.txt │ ├── radiators.txt │ └── volumes.txt │ └── ou44_data.py ├── run_test.py ├── setup.py └── test ├── __init__.py ├── test_fmi.py ├── test_mpc.py └── test_mshoot.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/README.md -------------------------------------------------------------------------------- /docs-sphinx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs-sphinx/Makefile -------------------------------------------------------------------------------- /docs-sphinx/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs-sphinx/make.bat -------------------------------------------------------------------------------- /docs-sphinx/source/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs-sphinx/source/api.rst -------------------------------------------------------------------------------- /docs-sphinx/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs-sphinx/source/conf.py -------------------------------------------------------------------------------- /docs-sphinx/source/gfx/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs-sphinx/source/gfx/architecture.png -------------------------------------------------------------------------------- /docs-sphinx/source/gfx/multiple_shooting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs-sphinx/source/gfx/multiple_shooting.png -------------------------------------------------------------------------------- /docs-sphinx/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs-sphinx/source/index.rst -------------------------------------------------------------------------------- /docs-sphinx/source/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs-sphinx/source/installation.rst -------------------------------------------------------------------------------- /docs-sphinx/source/license.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs-sphinx/source/license.rst -------------------------------------------------------------------------------- /docs-sphinx/source/modules/interfaces.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs-sphinx/source/modules/interfaces.rst -------------------------------------------------------------------------------- /docs-sphinx/source/modules/mpcemulation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs-sphinx/source/modules/mpcemulation.rst -------------------------------------------------------------------------------- /docs-sphinx/source/modules/mshoot.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs-sphinx/source/modules/mshoot.rst -------------------------------------------------------------------------------- /docs/.buildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs/.buildinfo -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/_images/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs/_images/architecture.png -------------------------------------------------------------------------------- /docs/_images/multiple_shooting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs/_images/multiple_shooting.png -------------------------------------------------------------------------------- /docs/_sources/api.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs/_sources/api.rst.txt -------------------------------------------------------------------------------- /docs/_sources/index.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs/_sources/index.rst.txt -------------------------------------------------------------------------------- /docs/_sources/installation.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs/_sources/installation.rst.txt -------------------------------------------------------------------------------- /docs/_sources/license.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs/_sources/license.rst.txt -------------------------------------------------------------------------------- /docs/_sources/modules/interfaces.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs/_sources/modules/interfaces.rst.txt -------------------------------------------------------------------------------- /docs/_sources/modules/mpc_emulation.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs/_sources/modules/mpc_emulation.rst.txt -------------------------------------------------------------------------------- /docs/_sources/modules/mpcemulation.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs/_sources/modules/mpcemulation.rst.txt -------------------------------------------------------------------------------- /docs/_sources/modules/mshoot.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs/_sources/modules/mshoot.rst.txt -------------------------------------------------------------------------------- /docs/_sources/modules/simmodel.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs/_sources/modules/simmodel.rst.txt -------------------------------------------------------------------------------- /docs/_static/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs/_static/ajax-loader.gif -------------------------------------------------------------------------------- /docs/_static/alabaster.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs/_static/alabaster.css -------------------------------------------------------------------------------- /docs/_static/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs/_static/basic.css -------------------------------------------------------------------------------- /docs/_static/classic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs/_static/classic.css -------------------------------------------------------------------------------- /docs/_static/comment-bright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs/_static/comment-bright.png -------------------------------------------------------------------------------- /docs/_static/comment-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs/_static/comment-close.png -------------------------------------------------------------------------------- /docs/_static/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs/_static/comment.png -------------------------------------------------------------------------------- /docs/_static/css/badge_only.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs/_static/css/badge_only.css -------------------------------------------------------------------------------- /docs/_static/css/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs/_static/css/theme.css -------------------------------------------------------------------------------- /docs/_static/custom.css: -------------------------------------------------------------------------------- 1 | /* This file intentionally left blank. */ 2 | -------------------------------------------------------------------------------- /docs/_static/doctools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs/_static/doctools.js -------------------------------------------------------------------------------- /docs/_static/documentation_options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs/_static/documentation_options.js -------------------------------------------------------------------------------- /docs/_static/down-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs/_static/down-pressed.png -------------------------------------------------------------------------------- /docs/_static/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs/_static/down.png -------------------------------------------------------------------------------- /docs/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs/_static/file.png -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs/_static/fonts/Lato/lato-bold.eot -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs/_static/fonts/Lato/lato-bold.ttf -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs/_static/fonts/Lato/lato-bold.woff -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs/_static/fonts/Lato/lato-bold.woff2 -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-bolditalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs/_static/fonts/Lato/lato-bolditalic.eot -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-bolditalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs/_static/fonts/Lato/lato-bolditalic.ttf -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-bolditalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs/_static/fonts/Lato/lato-bolditalic.woff -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-bolditalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs/_static/fonts/Lato/lato-bolditalic.woff2 -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs/_static/fonts/Lato/lato-italic.eot -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs/_static/fonts/Lato/lato-italic.ttf -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs/_static/fonts/Lato/lato-italic.woff -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs/_static/fonts/Lato/lato-italic.woff2 -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs/_static/fonts/Lato/lato-regular.eot -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs/_static/fonts/Lato/lato-regular.ttf -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs/_static/fonts/Lato/lato-regular.woff -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs/_static/fonts/Lato/lato-regular.woff2 -------------------------------------------------------------------------------- /docs/_static/fonts/RobotoSlab/roboto-slab-v7-bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs/_static/fonts/RobotoSlab/roboto-slab-v7-bold.eot -------------------------------------------------------------------------------- /docs/_static/fonts/RobotoSlab/roboto-slab-v7-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs/_static/fonts/RobotoSlab/roboto-slab-v7-bold.ttf -------------------------------------------------------------------------------- /docs/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff -------------------------------------------------------------------------------- /docs/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff2 -------------------------------------------------------------------------------- /docs/_static/fonts/RobotoSlab/roboto-slab-v7-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs/_static/fonts/RobotoSlab/roboto-slab-v7-regular.eot -------------------------------------------------------------------------------- /docs/_static/fonts/RobotoSlab/roboto-slab-v7-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs/_static/fonts/RobotoSlab/roboto-slab-v7-regular.ttf -------------------------------------------------------------------------------- /docs/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff -------------------------------------------------------------------------------- /docs/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff2 -------------------------------------------------------------------------------- /docs/_static/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs/_static/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /docs/_static/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs/_static/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /docs/_static/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs/_static/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /docs/_static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs/_static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /docs/_static/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs/_static/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /docs/_static/jquery-3.2.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs/_static/jquery-3.2.1.js -------------------------------------------------------------------------------- /docs/_static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs/_static/jquery.js -------------------------------------------------------------------------------- /docs/_static/js/modernizr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs/_static/js/modernizr.min.js -------------------------------------------------------------------------------- /docs/_static/js/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs/_static/js/theme.js -------------------------------------------------------------------------------- /docs/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs/_static/minus.png -------------------------------------------------------------------------------- /docs/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs/_static/plus.png -------------------------------------------------------------------------------- /docs/_static/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs/_static/pygments.css -------------------------------------------------------------------------------- /docs/_static/searchtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs/_static/searchtools.js -------------------------------------------------------------------------------- /docs/_static/sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs/_static/sidebar.js -------------------------------------------------------------------------------- /docs/_static/underscore-1.3.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs/_static/underscore-1.3.1.js -------------------------------------------------------------------------------- /docs/_static/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs/_static/underscore.js -------------------------------------------------------------------------------- /docs/_static/up-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs/_static/up-pressed.png -------------------------------------------------------------------------------- /docs/_static/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs/_static/up.png -------------------------------------------------------------------------------- /docs/_static/websupport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs/_static/websupport.js -------------------------------------------------------------------------------- /docs/api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs/api.html -------------------------------------------------------------------------------- /docs/genindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs/genindex.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/installation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs/installation.html -------------------------------------------------------------------------------- /docs/license.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs/license.html -------------------------------------------------------------------------------- /docs/modules/interfaces.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs/modules/interfaces.html -------------------------------------------------------------------------------- /docs/modules/mpc_emulation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs/modules/mpc_emulation.html -------------------------------------------------------------------------------- /docs/modules/mpcemulation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs/modules/mpcemulation.html -------------------------------------------------------------------------------- /docs/modules/mshoot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs/modules/mshoot.html -------------------------------------------------------------------------------- /docs/modules/simmodel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs/modules/simmodel.html -------------------------------------------------------------------------------- /docs/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs/objects.inv -------------------------------------------------------------------------------- /docs/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs/search.html -------------------------------------------------------------------------------- /docs/searchindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/docs/searchindex.js -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/bs2019/MShootBS2019.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/MShootBS2019.mo -------------------------------------------------------------------------------- /examples/bs2019/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/README.md -------------------------------------------------------------------------------- /examples/bs2019/analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/analysis.py -------------------------------------------------------------------------------- /examples/bs2019/case1/case1_est.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/case1_est.py -------------------------------------------------------------------------------- /examples/bs2019/case1/case1_fmu_speed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/case1_fmu_speed.py -------------------------------------------------------------------------------- /examples/bs2019/case1/case1_mpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/case1_mpc.py -------------------------------------------------------------------------------- /examples/bs2019/case1/models/r1c1_dymola_1e-11.fmu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/models/r1c1_dymola_1e-11.fmu -------------------------------------------------------------------------------- /examples/bs2019/case1/models/r1c1_dymola_1e-4.fmu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/models/r1c1_dymola_1e-4.fmu -------------------------------------------------------------------------------- /examples/bs2019/case1/models/r1c1_dymola_1e-6.fmu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/models/r1c1_dymola_1e-6.fmu -------------------------------------------------------------------------------- /examples/bs2019/case1/models/r1c1_dymola_1e-7.fmu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/models/r1c1_dymola_1e-7.fmu -------------------------------------------------------------------------------- /examples/bs2019/case1/models/r1c1_dymola_1e-9.fmu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/models/r1c1_dymola_1e-9.fmu -------------------------------------------------------------------------------- /examples/bs2019/case1/results/est/ideal.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/est/ideal.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/est/ideal_training.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/est/ideal_training.png -------------------------------------------------------------------------------- /examples/bs2019/case1/results/est/ideal_validation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/est/ideal_validation.png -------------------------------------------------------------------------------- /examples/bs2019/case1/results/est/inp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/est/inp.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/est/inp_training.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/est/inp_training.png -------------------------------------------------------------------------------- /examples/bs2019/case1/results/est/inp_validation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/est/inp_validation.png -------------------------------------------------------------------------------- /examples/bs2019/case1/results/est/r1c1_dymola_1e-11/GA_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/est/r1c1_dymola_1e-11/GA_1.png -------------------------------------------------------------------------------- /examples/bs2019/case1/results/est/r1c1_dymola_1e-11/final.csv: -------------------------------------------------------------------------------- 1 | RExt,occheff,shgc,tmass 2 | 4.0,2.0836995296486704,4.608961327935981,50.0 3 | -------------------------------------------------------------------------------- /examples/bs2019/case1/results/est/r1c1_dymola_1e-4/GA_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/est/r1c1_dymola_1e-4/GA_1.png -------------------------------------------------------------------------------- /examples/bs2019/case1/results/est/r1c1_dymola_1e-4/errors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/est/r1c1_dymola_1e-4/errors.png -------------------------------------------------------------------------------- /examples/bs2019/case1/results/est/r1c1_dymola_1e-4/final.csv: -------------------------------------------------------------------------------- 1 | RExt,occheff,shgc,tmass 2 | 4.0,2.0836765735771934,4.6084527139424045,50.0 3 | -------------------------------------------------------------------------------- /examples/bs2019/case1/results/est/r1c1_dymola_1e-4/parameters_rel.csv: -------------------------------------------------------------------------------- 1 | tmass,shgc,occheff,RExt 2 | 1.0,0.4608452713942405,0.6334706294308774,1.0 3 | -------------------------------------------------------------------------------- /examples/bs2019/case1/results/est/r1c1_dymola_1e-6/GA_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/est/r1c1_dymola_1e-6/GA_1.png -------------------------------------------------------------------------------- /examples/bs2019/case1/results/est/r1c1_dymola_1e-6/errors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/est/r1c1_dymola_1e-6/errors.png -------------------------------------------------------------------------------- /examples/bs2019/case1/results/est/r1c1_dymola_1e-6/final.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/est/r1c1_dymola_1e-6/final.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/est/r1c1_dymola_1e-7/GA_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/est/r1c1_dymola_1e-7/GA_1.png -------------------------------------------------------------------------------- /examples/bs2019/case1/results/est/r1c1_dymola_1e-7/errors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/est/r1c1_dymola_1e-7/errors.png -------------------------------------------------------------------------------- /examples/bs2019/case1/results/est/r1c1_dymola_1e-7/final.csv: -------------------------------------------------------------------------------- 1 | RExt,occheff,shgc,tmass 2 | 4.0,2.083713064266142,4.608966913577263,50.0 3 | -------------------------------------------------------------------------------- /examples/bs2019/case1/results/est/r1c1_dymola_1e-7/parameters_rel.csv: -------------------------------------------------------------------------------- 1 | tmass,shgc,occheff,RExt 2 | 1.0,0.4608966913577263,0.6334852257064568,1.0 3 | -------------------------------------------------------------------------------- /examples/bs2019/case1/results/est/r1c1_dymola_1e-9/GA_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/est/r1c1_dymola_1e-9/GA_1.png -------------------------------------------------------------------------------- /examples/bs2019/case1/results/est/r1c1_dymola_1e-9/errors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/est/r1c1_dymola_1e-9/errors.png -------------------------------------------------------------------------------- /examples/bs2019/case1/results/est/r1c1_dymola_1e-9/final.csv: -------------------------------------------------------------------------------- 1 | RExt,occheff,shgc,tmass 2 | 4.0,2.0836965146621127,4.6089641567718935,50.0 3 | -------------------------------------------------------------------------------- /examples/bs2019/case1/results/est/r1c1_dymola_1e-9/parameters_rel.csv: -------------------------------------------------------------------------------- 1 | tmass,shgc,occheff,RExt 2 | 1.0,0.46089641567718936,0.6334786058648451,1.0 3 | -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h10/cputime.txt: -------------------------------------------------------------------------------- 1 | CPU time: 3485 s -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h10/u.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h10/u.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h2/cputime.txt: -------------------------------------------------------------------------------- 1 | CPU time: 116 s -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h2/u.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h2/u.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h2/u0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h2/u0.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h2/u1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h2/u1.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h2/u2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h2/u2.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h2/u3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h2/u3.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h2/u4.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h2/u4.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h2/u5.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h2/u5.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h2/u6.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h2/u6.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h2/u7.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h2/u7.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h2/u8.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h2/u8.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h2/u9.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h2/u9.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h4/cputime.txt: -------------------------------------------------------------------------------- 1 | CPU time: 531 s -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h4/u.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h4/u.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h4/u0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h4/u0.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h4/u1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h4/u1.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h4/u2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h4/u2.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h4/u3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h4/u3.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h4/u4.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h4/u4.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h4/u5.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h4/u5.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h4/u6.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h4/u6.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h4/u7.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h4/u7.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h4/u8.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h4/u8.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h4/u9.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h4/u9.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h6/cputime.txt: -------------------------------------------------------------------------------- 1 | CPU time: 1473 s -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h6/u.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h6/u.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h6/u0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h6/u0.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h6/u1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h6/u1.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h6/u2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h6/u2.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h6/u3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h6/u3.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h6/u4.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h6/u4.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h6/u5.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h6/u5.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h6/u6.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h6/u6.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h6/u7.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h6/u7.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h6/u8.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h6/u8.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h6/u9.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h6/u9.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h8/cputime.txt: -------------------------------------------------------------------------------- 1 | CPU time: 2413 s -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h8/u.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h8/u.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h8/u0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h8/u0.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h8/u1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h8/u1.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h8/u2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h8/u2.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h8/u3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h8/u3.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h8/u4.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h8/u4.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h8/u5.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h8/u5.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h8/u6.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h8/u6.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h8/u7.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h8/u7.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h8/u8.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h8/u8.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h8/u9.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-11/h8/u9.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h10/cputime.txt: -------------------------------------------------------------------------------- 1 | CPU time: 4056 s -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h10/u.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h10/u.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h10/u0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h10/u0.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h10/u1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h10/u1.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h10/u2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h10/u2.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h10/u3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h10/u3.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h10/u4.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h10/u4.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h10/u5.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h10/u5.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h10/u6.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h10/u6.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h10/u7.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h10/u7.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h10/u8.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h10/u8.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h10/u9.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h10/u9.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/cputime.txt: -------------------------------------------------------------------------------- 1 | CPU time: 178 s -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u0.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u1.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u10.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u10.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u11.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u11.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u12.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u12.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u13.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u13.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u14.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u14.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u15.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u15.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u16.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u16.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u17.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u17.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u18.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u18.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u19.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u19.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u2.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u20.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u20.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u21.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u21.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u22.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u22.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u23.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u23.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u24.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u24.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u25.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u25.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u26.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u26.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u27.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u27.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u28.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u28.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u29.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u29.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u3.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u30.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u30.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u31.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u31.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u32.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u32.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u33.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u33.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u34.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u34.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u35.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u35.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u36.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u36.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u37.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u37.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u38.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u38.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u39.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u39.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u4.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u4.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u40.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u40.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u41.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u41.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u42.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u42.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u43.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u43.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u44.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u44.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u45.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u45.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u46.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u46.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u47.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u47.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u48.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u48.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u49.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u49.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u5.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u5.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u50.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u50.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u51.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u51.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u52.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u52.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u53.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u53.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u54.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u54.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u55.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u55.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u56.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u56.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u57.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u57.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u58.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u58.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u59.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u59.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u6.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u6.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u60.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u60.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u61.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u61.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u62.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u62.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u63.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u63.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u64.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u64.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u65.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u65.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u66.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u66.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u67.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u67.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u68.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u68.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u69.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u69.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u7.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u7.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u70.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u70.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u71.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u71.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u8.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u8.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u9.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h2/u9.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h4/cputime.txt: -------------------------------------------------------------------------------- 1 | CPU time: 753 s -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h4/u.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h4/u.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h4/u0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h4/u0.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h4/u1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h4/u1.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h4/u10.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h4/u10.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h4/u11.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h4/u11.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h4/u12.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h4/u12.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h4/u13.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h4/u13.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h4/u14.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h4/u14.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h4/u15.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h4/u15.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h4/u16.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h4/u16.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h4/u17.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h4/u17.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h4/u18.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h4/u18.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h4/u19.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h4/u19.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h4/u2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h4/u2.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h4/u20.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h4/u20.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h4/u21.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h4/u21.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h4/u22.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h4/u22.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h4/u23.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h4/u23.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h4/u24.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h4/u24.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h4/u25.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h4/u25.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h4/u26.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h4/u26.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h4/u27.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h4/u27.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h4/u28.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h4/u28.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h4/u29.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h4/u29.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h4/u3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h4/u3.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h4/u30.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h4/u30.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h4/u31.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h4/u31.csv -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h6/cputime.txt: -------------------------------------------------------------------------------- 1 | CPU time: 1685 s -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-4/h8/cputime.txt: -------------------------------------------------------------------------------- 1 | CPU time: 2682 s -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-6/h10/cputime.txt: -------------------------------------------------------------------------------- 1 | CPU time: 6207 s -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-6/h2/cputime.txt: -------------------------------------------------------------------------------- 1 | CPU time: 151 s -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-6/h4/cputime.txt: -------------------------------------------------------------------------------- 1 | CPU time: 760 s -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-6/h6/cputime.txt: -------------------------------------------------------------------------------- 1 | CPU time: 1703 s -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-6/h8/cputime.txt: -------------------------------------------------------------------------------- 1 | CPU time: 2919 s -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-7/h10/cputime.txt: -------------------------------------------------------------------------------- 1 | CPU time: 4665 s -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-7/h2/cputime.txt: -------------------------------------------------------------------------------- 1 | CPU time: 140 s -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-7/h4/cputime.txt: -------------------------------------------------------------------------------- 1 | CPU time: 799 s -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-7/h6/cputime.txt: -------------------------------------------------------------------------------- 1 | CPU time: 1737 s -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-7/h8/cputime.txt: -------------------------------------------------------------------------------- 1 | CPU time: 3047 s -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-9/h10/cputime.txt: -------------------------------------------------------------------------------- 1 | CPU time: 4398 s -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-9/h2/cputime.txt: -------------------------------------------------------------------------------- 1 | CPU time: 133 s -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-9/h4/cputime.txt: -------------------------------------------------------------------------------- 1 | CPU time: 627 s -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-9/h6/cputime.txt: -------------------------------------------------------------------------------- 1 | CPU time: 1601 s -------------------------------------------------------------------------------- /examples/bs2019/case1/results/mpc/r1c1_dymola_1e-9/h8/cputime.txt: -------------------------------------------------------------------------------- 1 | CPU time: 2899 s -------------------------------------------------------------------------------- /examples/bs2019/case2/case2_est.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/case2_est.py -------------------------------------------------------------------------------- /examples/bs2019/case2/case2_mpc_lin_svm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/case2_mpc_lin_svm.py -------------------------------------------------------------------------------- /examples/bs2019/case2/models/r1c1_dymola_1e-11.fmu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/models/r1c1_dymola_1e-11.fmu -------------------------------------------------------------------------------- /examples/bs2019/case2/models/r1c1_dymola_1e-11_dpos0.fmu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/models/r1c1_dymola_1e-11_dpos0.fmu -------------------------------------------------------------------------------- /examples/bs2019/case2/results/est/ideal.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/est/ideal.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/est/ideal_training.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/est/ideal_training.png -------------------------------------------------------------------------------- /examples/bs2019/case2/results/est/ideal_validation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/est/ideal_validation.png -------------------------------------------------------------------------------- /examples/bs2019/case2/results/est/inp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/est/inp.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/est/inp_training.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/est/inp_training.png -------------------------------------------------------------------------------- /examples/bs2019/case2/results/est/inp_validation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/est/inp_validation.png -------------------------------------------------------------------------------- /examples/bs2019/case2/results/est/r1c1_dymola_1e-11/final.csv: -------------------------------------------------------------------------------- 1 | RExt,occheff,shgc,tmass 2 | 4.0,2.0836995296486704,4.608961327935981,50.0 3 | -------------------------------------------------------------------------------- /examples/bs2019/case2/results/est/r1c1_dymola_1e-11_dpos0/final.csv: -------------------------------------------------------------------------------- 1 | RExt,occheff,shgc,tmass 2 | 4.0,1.9413943981002855,0.486163648419154,50.0 3 | -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h10/constr.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h10/constr.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h10/cputime.txt: -------------------------------------------------------------------------------- 1 | CPU time: 1609 s -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h10/u.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h10/u.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h10/u0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h10/u0.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h10/u1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h10/u1.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h10/u10.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h10/u10.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h10/u11.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h10/u11.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h10/u12.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h10/u12.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h10/u13.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h10/u13.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h10/u14.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h10/u14.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h10/u15.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h10/u15.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h10/u16.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h10/u16.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h10/u17.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h10/u17.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h10/u18.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h10/u18.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h10/u19.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h10/u19.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h10/u2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h10/u2.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h10/u20.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h10/u20.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h10/u21.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h10/u21.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h10/u22.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h10/u22.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h10/u23.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h10/u23.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h10/u24.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h10/u24.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h10/u25.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h10/u25.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h10/u26.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h10/u26.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h10/u27.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h10/u27.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h10/u28.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h10/u28.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h10/u29.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h10/u29.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h10/u3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h10/u3.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h10/u30.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h10/u30.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h10/u31.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h10/u31.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h10/u32.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h10/u32.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h10/u33.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h10/u33.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h10/u34.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h10/u34.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h10/u35.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h10/u35.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h10/u36.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h10/u36.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h10/u37.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h10/u37.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h10/u38.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h10/u38.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h10/u39.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h10/u39.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h10/u4.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h10/u4.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h10/u40.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h10/u40.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h10/u41.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h10/u41.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h10/u42.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h10/u42.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h10/u43.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h10/u43.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h10/u44.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h10/u44.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h10/u45.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h10/u45.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h10/u46.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h10/u46.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h10/u47.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h10/u47.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h10/u48.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h10/u48.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h10/u49.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h10/u49.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h10/u5.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h10/u5.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h10/u50.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h10/u50.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h10/u51.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h10/u51.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h10/u52.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h10/u52.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h10/u53.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h10/u53.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h10/u54.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h10/u54.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h10/u55.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h10/u55.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h10/u56.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h10/u56.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h10/u57.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h10/u57.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h10/u58.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h10/u58.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h10/u59.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h10/u59.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h10/u6.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h10/u6.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h10/u60.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h10/u60.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h10/u61.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h10/u61.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h10/u62.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h10/u62.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h10/u63.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h10/u63.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h10/u7.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h10/u7.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h10/u8.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h10/u8.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h10/u9.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h10/u9.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h10/xctr.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h10/xctr.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h10/xemu.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h10/xemu.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h10/yemu.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h10/yemu.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h2/constr.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h2/constr.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h2/cputime.txt: -------------------------------------------------------------------------------- 1 | CPU time: 51 s -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h2/u.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h2/u.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h2/u0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h2/u0.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h2/u1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h2/u1.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h2/u10.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h2/u10.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h2/u11.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h2/u11.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h2/u12.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h2/u12.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h2/u13.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h2/u13.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h2/u14.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h2/u14.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h2/u15.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h2/u15.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h2/u16.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h2/u16.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h2/u17.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h2/u17.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h2/u18.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h2/u18.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h2/u19.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h2/u19.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h2/u2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h2/u2.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h2/u20.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h2/u20.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h2/u21.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h2/u21.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h2/u22.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h2/u22.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h2/u23.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h2/u23.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h2/u24.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h2/u24.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h2/u25.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h2/u25.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h2/u26.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h2/u26.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h2/u27.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h2/u27.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h2/u28.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h2/u28.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h2/u29.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h2/u29.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h2/u3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h2/u3.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h2/u30.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h2/u30.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h2/u31.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h2/u31.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h2/u32.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h2/u32.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h2/u33.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h2/u33.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h2/u34.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h2/u34.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h2/u35.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h2/u35.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h2/u36.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h2/u36.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h2/u37.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h2/u37.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h2/u38.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h2/u38.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h2/u39.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h2/u39.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h2/u4.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h2/u4.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h2/u40.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h2/u40.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h2/u41.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h2/u41.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h2/u42.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h2/u42.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h2/u43.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h2/u43.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h2/u44.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h2/u44.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h2/u45.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h2/u45.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h2/u46.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h2/u46.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h2/u47.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h2/u47.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h2/u48.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h2/u48.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h2/u49.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h2/u49.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h2/u5.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h2/u5.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h2/u50.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h2/u50.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h2/u51.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h2/u51.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h2/u52.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h2/u52.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h2/u53.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h2/u53.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h2/u54.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h2/u54.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h2/u55.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h2/u55.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h2/u56.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h2/u56.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h2/u57.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h2/u57.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h2/u58.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h2/u58.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h2/u59.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h2/u59.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h2/u6.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h2/u6.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h2/u60.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h2/u60.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h2/u61.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h2/u61.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h2/u62.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h2/u62.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h2/u63.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h2/u63.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h2/u64.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h2/u64.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h2/u65.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h2/u65.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h2/u66.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h2/u66.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h2/u67.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h2/u67.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h2/u68.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h2/u68.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h2/u69.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h2/u69.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h2/u7.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h2/u7.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h2/u70.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h2/u70.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h2/u71.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h2/u71.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h2/u8.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h2/u8.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h2/u9.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h2/u9.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h2/xctr.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h2/xctr.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h2/xemu.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h2/xemu.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h2/yemu.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h2/yemu.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h4/constr.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h4/constr.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h4/cputime.txt: -------------------------------------------------------------------------------- 1 | CPU time: 217 s -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h4/u.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h4/u.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h4/u0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h4/u0.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h4/u1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h4/u1.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h4/u10.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h4/u10.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h4/u11.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h4/u11.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h4/u12.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h4/u12.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h4/u13.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h4/u13.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h4/u14.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h4/u14.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h4/u15.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h4/u15.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h4/u16.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h4/u16.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h4/u17.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h4/u17.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h4/u18.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h4/u18.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h4/u19.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h4/u19.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h4/u2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h4/u2.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h4/u20.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h4/u20.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h4/u21.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h4/u21.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h4/u22.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h4/u22.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h4/u23.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h4/u23.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h4/u24.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h4/u24.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h4/u25.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h4/u25.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h4/u26.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h4/u26.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h4/u27.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h4/u27.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h4/u28.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h4/u28.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h4/u29.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h4/u29.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h4/u3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h4/u3.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h4/u30.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h4/u30.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h4/u31.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h4/u31.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h4/u32.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h4/u32.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h4/u33.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h4/u33.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h4/u34.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h4/u34.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h4/u35.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h4/u35.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h4/u36.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h4/u36.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h4/u37.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h4/u37.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h4/u38.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h4/u38.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h4/u39.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h4/u39.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h4/u4.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h4/u4.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h4/u40.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h4/u40.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h4/u41.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h4/u41.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h4/u42.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h4/u42.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h4/u43.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h4/u43.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h4/u44.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h4/u44.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h4/u45.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h4/u45.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h4/u46.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h4/u46.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h4/u47.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h4/u47.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h4/u48.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h4/u48.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h4/u49.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h4/u49.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h4/u5.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h4/u5.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h4/u50.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h4/u50.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h4/u51.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h4/u51.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h4/u52.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h4/u52.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h4/u53.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h4/u53.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h4/u54.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h4/u54.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h4/u55.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h4/u55.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h4/u56.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h4/u56.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h4/u57.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h4/u57.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h4/u58.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h4/u58.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h4/u59.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h4/u59.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h4/u6.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h4/u6.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h4/u60.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h4/u60.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h4/u61.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h4/u61.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h4/u62.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h4/u62.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h4/u63.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h4/u63.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h4/u64.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h4/u64.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h4/u65.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h4/u65.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h4/u66.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h4/u66.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h4/u67.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h4/u67.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h4/u68.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h4/u68.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h4/u69.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h4/u69.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h4/u7.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h4/u7.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h4/u8.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h4/u8.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h4/u9.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h4/u9.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h4/xctr.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h4/xctr.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h4/xemu.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h4/xemu.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h4/yemu.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h4/yemu.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h6/constr.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h6/constr.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h6/cputime.txt: -------------------------------------------------------------------------------- 1 | CPU time: 560 s -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h6/u.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h6/u.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h6/u0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h6/u0.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h6/u1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h6/u1.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h6/u10.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h6/u10.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h6/u11.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h6/u11.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h6/u12.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h6/u12.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h6/u13.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h6/u13.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h6/u14.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h6/u14.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h6/u15.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h6/u15.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h6/u16.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h6/u16.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h6/u17.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h6/u17.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h6/u18.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h6/u18.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h6/u19.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h6/u19.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h6/u2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h6/u2.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h6/u20.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h6/u20.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h6/u21.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h6/u21.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h6/u22.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h6/u22.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h6/u23.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h6/u23.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h6/u24.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h6/u24.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h6/u25.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h6/u25.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h6/u26.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h6/u26.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h6/u27.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h6/u27.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h6/u28.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h6/u28.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h6/u29.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h6/u29.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h6/u3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h6/u3.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h6/u30.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h6/u30.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h6/u31.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h6/u31.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h6/u32.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h6/u32.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h6/u33.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h6/u33.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h6/u34.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h6/u34.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h6/u35.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h6/u35.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h6/u36.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h6/u36.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h6/u37.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h6/u37.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h6/u38.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h6/u38.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h6/u39.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h6/u39.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h6/u4.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h6/u4.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h6/u40.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h6/u40.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h6/u41.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h6/u41.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h6/u42.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h6/u42.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h6/u43.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h6/u43.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h6/u44.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h6/u44.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h6/u45.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h6/u45.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h6/u46.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h6/u46.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h6/u47.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h6/u47.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h6/u48.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h6/u48.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h6/u49.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h6/u49.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h6/u5.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h6/u5.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h6/u50.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h6/u50.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h6/u51.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h6/u51.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h6/u52.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h6/u52.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h6/u53.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h6/u53.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h6/u54.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h6/u54.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h6/u55.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h6/u55.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h6/u56.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h6/u56.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h6/u57.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h6/u57.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h6/u58.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h6/u58.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h6/u59.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h6/u59.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h6/u6.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h6/u6.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h6/u60.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h6/u60.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h6/u61.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h6/u61.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h6/u62.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h6/u62.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h6/u63.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h6/u63.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h6/u64.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h6/u64.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h6/u65.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h6/u65.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h6/u66.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h6/u66.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h6/u67.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h6/u67.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h6/u7.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h6/u7.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h6/u8.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h6/u8.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h6/u9.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h6/u9.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h6/xctr.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h6/xctr.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h6/xemu.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h6/xemu.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h6/yemu.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h6/yemu.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h8/constr.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h8/constr.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h8/cputime.txt: -------------------------------------------------------------------------------- 1 | CPU time: 972 s -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h8/u.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h8/u.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h8/u0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h8/u0.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h8/u1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h8/u1.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h8/u10.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h8/u10.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h8/u11.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h8/u11.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h8/u12.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h8/u12.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h8/u13.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h8/u13.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h8/u14.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h8/u14.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h8/u15.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h8/u15.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h8/u16.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h8/u16.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h8/u17.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h8/u17.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h8/u18.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h8/u18.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h8/u19.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h8/u19.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h8/u2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h8/u2.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h8/u20.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h8/u20.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h8/u21.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h8/u21.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h8/u22.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h8/u22.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h8/u23.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h8/u23.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h8/u24.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h8/u24.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h8/u25.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h8/u25.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h8/u26.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h8/u26.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h8/u27.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h8/u27.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h8/u28.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h8/u28.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h8/u29.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h8/u29.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h8/u3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h8/u3.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h8/u30.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h8/u30.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h8/u31.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h8/u31.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h8/u32.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h8/u32.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h8/u33.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h8/u33.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h8/u34.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h8/u34.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h8/u35.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h8/u35.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h8/u36.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h8/u36.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h8/u37.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h8/u37.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h8/u38.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h8/u38.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h8/u39.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h8/u39.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h8/u4.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h8/u4.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h8/u40.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h8/u40.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h8/u41.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h8/u41.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h8/u42.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h8/u42.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h8/u43.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h8/u43.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h8/u44.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h8/u44.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h8/u45.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h8/u45.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h8/u46.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h8/u46.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h8/u47.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h8/u47.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h8/u48.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h8/u48.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h8/u49.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h8/u49.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h8/u5.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h8/u5.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h8/u50.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h8/u50.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h8/u51.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h8/u51.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h8/u52.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h8/u52.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h8/u53.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h8/u53.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h8/u54.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h8/u54.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h8/u55.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h8/u55.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h8/u56.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h8/u56.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h8/u57.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h8/u57.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h8/u58.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h8/u58.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h8/u59.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h8/u59.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h8/u6.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h8/u6.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h8/u60.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h8/u60.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h8/u61.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h8/u61.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h8/u62.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h8/u62.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h8/u63.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h8/u63.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h8/u64.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h8/u64.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h8/u65.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h8/u65.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h8/u7.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h8/u7.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h8/u8.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h8/u8.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h8/u9.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h8/u9.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h8/xctr.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h8/xctr.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h8/xemu.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h8/xemu.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/h8/yemu.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/h8/yemu.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/svm_validation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/svm_validation.pdf -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/vld_xctr.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/vld_xctr.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/vld_xemu.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/vld_xemu.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/vld_yctr.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/vld_yctr.csv -------------------------------------------------------------------------------- /examples/bs2019/case2/results/mpc-lin/vld_yemu.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case2/results/mpc-lin/vld_yemu.csv -------------------------------------------------------------------------------- /examples/bs2019/case3/case3_est.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case3/case3_est.py -------------------------------------------------------------------------------- /examples/bs2019/case3/case3_mpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case3/case3_mpc.py -------------------------------------------------------------------------------- /examples/bs2019/case3/case3_pid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case3/case3_pid.py -------------------------------------------------------------------------------- /examples/bs2019/case3/models/r1c1co2_dymola_1e-11.fmu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case3/models/r1c1co2_dymola_1e-11.fmu -------------------------------------------------------------------------------- /examples/bs2019/case3/models/r1c1co2pid_dymola_1e-11.fmu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/case3/models/r1c1co2pid_dymola_1e-11.fmu -------------------------------------------------------------------------------- /examples/bs2019/figs/architecture.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/figs/architecture.pdf -------------------------------------------------------------------------------- /examples/bs2019/figs/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/figs/architecture.png -------------------------------------------------------------------------------- /examples/bs2019/figs/architecture.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/figs/architecture.svg -------------------------------------------------------------------------------- /examples/bs2019/figs/case1_horizon_tol_1e-11.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/figs/case1_horizon_tol_1e-11.pdf -------------------------------------------------------------------------------- /examples/bs2019/figs/case1_horizon_tol_1e-4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/figs/case1_horizon_tol_1e-4.pdf -------------------------------------------------------------------------------- /examples/bs2019/figs/case2_horizon.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/figs/case2_horizon.pdf -------------------------------------------------------------------------------- /examples/bs2019/figs/cputime.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/figs/cputime.pdf -------------------------------------------------------------------------------- /examples/bs2019/figs/inputs_mpc.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/figs/inputs_mpc.pdf -------------------------------------------------------------------------------- /examples/bs2019/figs/multiple_shooting.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/figs/multiple_shooting.pdf -------------------------------------------------------------------------------- /examples/bs2019/figs/multiple_shooting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/figs/multiple_shooting.png -------------------------------------------------------------------------------- /examples/bs2019/figs/multiple_shooting.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/figs/multiple_shooting.svg -------------------------------------------------------------------------------- /examples/bs2019/figs/r1c1_model.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/figs/r1c1_model.PNG -------------------------------------------------------------------------------- /examples/bs2019/figs/r1c1_model_compact.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/figs/r1c1_model_compact.PNG -------------------------------------------------------------------------------- /examples/bs2019/figs/r1c1co2_model.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/figs/r1c1co2_model.PNG -------------------------------------------------------------------------------- /examples/bs2019/figs/solution_quality.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/figs/solution_quality.pdf -------------------------------------------------------------------------------- /examples/bs2019/figs/svr_validation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/figs/svr_validation.pdf -------------------------------------------------------------------------------- /examples/bs2019/figs/validation_T.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/figs/validation_T.pdf -------------------------------------------------------------------------------- /examples/bs2019/measurements.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/bs2019/measurements.csv -------------------------------------------------------------------------------- /examples/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/models/statespace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/models/statespace.py -------------------------------------------------------------------------------- /examples/models/statespace_price.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/models/statespace_price.py -------------------------------------------------------------------------------- /examples/mpc_fmi_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/mpc_fmi_1.py -------------------------------------------------------------------------------- /examples/mpc_fmi_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/mpc_fmi_2.py -------------------------------------------------------------------------------- /examples/mpc_fmi_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/mpc_fmi_3.py -------------------------------------------------------------------------------- /examples/mpc_fmi_4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/mpc_fmi_4.py -------------------------------------------------------------------------------- /examples/mpc_fmi_5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/mpc_fmi_5.py -------------------------------------------------------------------------------- /examples/mpc_fmi_6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/mpc_fmi_6.py -------------------------------------------------------------------------------- /examples/mpc_generic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/mpc_generic.py -------------------------------------------------------------------------------- /examples/mpc_scikit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/mpc_scikit.py -------------------------------------------------------------------------------- /examples/mshoot_fmi_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/mshoot_fmi_1.py -------------------------------------------------------------------------------- /examples/mshoot_fmi_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/mshoot_fmi_2.py -------------------------------------------------------------------------------- /examples/mshoot_scikit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/mshoot_scikit.py -------------------------------------------------------------------------------- /examples/mshoot_statespace_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/mshoot_statespace_1.py -------------------------------------------------------------------------------- /examples/mshoot_statespace_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/mshoot_statespace_2.py -------------------------------------------------------------------------------- /examples/train_scikit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/train_scikit.py -------------------------------------------------------------------------------- /examples/tutorial/modelica/R2C2.fmu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/tutorial/modelica/R2C2.fmu -------------------------------------------------------------------------------- /examples/tutorial/modelica/R2C2.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/tutorial/modelica/R2C2.mo -------------------------------------------------------------------------------- /examples/tutorial/modelica/R3C3.fmu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/tutorial/modelica/R3C3.fmu -------------------------------------------------------------------------------- /examples/tutorial/modelica/R3C3.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/tutorial/modelica/R3C3.mo -------------------------------------------------------------------------------- /examples/tutorial/tutorial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/examples/tutorial/tutorial.py -------------------------------------------------------------------------------- /mshoot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/mshoot/__init__.py -------------------------------------------------------------------------------- /mshoot/interfaces/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mshoot/interfaces/fmi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/mshoot/interfaces/fmi.py -------------------------------------------------------------------------------- /mshoot/interfaces/scikit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/mshoot/interfaces/scikit.py -------------------------------------------------------------------------------- /mshoot/mpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/mshoot/mpc.py -------------------------------------------------------------------------------- /mshoot/mshoot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/mshoot/mshoot.py -------------------------------------------------------------------------------- /mshoot/optimize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/mshoot/optimize.py -------------------------------------------------------------------------------- /resources/RCModels/Experiment.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/resources/RCModels/Experiment.mo -------------------------------------------------------------------------------- /resources/RCModels/R1C1.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/resources/RCModels/R1C1.mo -------------------------------------------------------------------------------- /resources/RCModels/R2C2.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/resources/RCModels/R2C2.mo -------------------------------------------------------------------------------- /resources/RCModels/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/resources/RCModels/package.mo -------------------------------------------------------------------------------- /resources/RCModels/package.order: -------------------------------------------------------------------------------- 1 | R1C1 2 | R2C2 3 | Experiment 4 | -------------------------------------------------------------------------------- /resources/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/fmus/R1C1/R1C1.fmu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/resources/fmus/R1C1/R1C1.fmu -------------------------------------------------------------------------------- /resources/fmus/R1C1/R1C1.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/resources/fmus/R1C1/R1C1.mo -------------------------------------------------------------------------------- /resources/fmus/R2C2/R2C2.fmu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/resources/fmus/R2C2/R2C2.fmu -------------------------------------------------------------------------------- /resources/fmus/R2C2/R2C2.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/resources/fmus/R2C2/R2C2.mo -------------------------------------------------------------------------------- /resources/fmus/RCModels_R1C1.fmu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/resources/fmus/RCModels_R1C1.fmu -------------------------------------------------------------------------------- /resources/fmus/RCModels_R2C2.fmu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/resources/fmus/RCModels_R2C2.fmu -------------------------------------------------------------------------------- /resources/ou44/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/ou44/data/AHU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/resources/ou44/data/AHU.png -------------------------------------------------------------------------------- /resources/ou44/data/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/resources/ou44/data/README.txt -------------------------------------------------------------------------------- /resources/ou44/data/areas.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/resources/ou44/data/areas.txt -------------------------------------------------------------------------------- /resources/ou44/data/df_FTI1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/resources/ou44/data/df_FTI1.csv -------------------------------------------------------------------------------- /resources/ou44/data/df_FTI2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/resources/ou44/data/df_FTI2.csv -------------------------------------------------------------------------------- /resources/ou44/data/df_blinds.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/resources/ou44/data/df_blinds.csv -------------------------------------------------------------------------------- /resources/ou44/data/df_co2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/resources/ou44/data/df_co2.csv -------------------------------------------------------------------------------- /resources/ou44/data/df_el_light.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/resources/ou44/data/df_el_light.csv -------------------------------------------------------------------------------- /resources/ou44/data/df_heat_supply.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/resources/ou44/data/df_heat_supply.csv -------------------------------------------------------------------------------- /resources/ou44/data/df_hpos.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/resources/ou44/data/df_hpos.csv -------------------------------------------------------------------------------- /resources/ou44/data/df_occ.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/resources/ou44/data/df_occ.csv -------------------------------------------------------------------------------- /resources/ou44/data/df_pir.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/resources/ou44/data/df_pir.csv -------------------------------------------------------------------------------- /resources/ou44/data/df_plug_loads.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/resources/ou44/data/df_plug_loads.csv -------------------------------------------------------------------------------- /resources/ou44/data/df_solrad.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/resources/ou44/data/df_solrad.csv -------------------------------------------------------------------------------- /resources/ou44/data/df_t.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/resources/ou44/data/df_t.csv -------------------------------------------------------------------------------- /resources/ou44/data/df_tamb.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/resources/ou44/data/df_tamb.csv -------------------------------------------------------------------------------- /resources/ou44/data/df_vav.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/resources/ou44/data/df_vav.csv -------------------------------------------------------------------------------- /resources/ou44/data/df_windspeed.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/resources/ou44/data/df_windspeed.csv -------------------------------------------------------------------------------- /resources/ou44/data/maxvent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/resources/ou44/data/maxvent.txt -------------------------------------------------------------------------------- /resources/ou44/data/radiators.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/resources/ou44/data/radiators.txt -------------------------------------------------------------------------------- /resources/ou44/data/volumes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/resources/ou44/data/volumes.txt -------------------------------------------------------------------------------- /resources/ou44/ou44_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/resources/ou44/ou44_data.py -------------------------------------------------------------------------------- /run_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/run_test.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/setup.py -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_fmi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/test/test_fmi.py -------------------------------------------------------------------------------- /test/test_mpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/test/test_mpc.py -------------------------------------------------------------------------------- /test/test_mshoot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdu-cfei/mshoot/HEAD/test/test_mshoot.py --------------------------------------------------------------------------------