forked from ThummeTo/FMI.jl
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* added information readme/docu * Fmi3 refactor reworked (ThummeTo#165) * added FMI3_JLD2.jl * V0.11.0 (#157) * adjustments for implicite solvers * major refactoring * fixed dtmin issue (#159) * fixed dtmin issue * version inc * Docstrings dec22 (#158) * Updated FMI.jl * Updated FMI.jl * Update FMI.jl * Updated FMI.jl * Updated FMI.jl * Updated FMI.jl * Updated * Updated * Update Doc-String * Update Doc-String * Update Doc-String * Update library.md * Update libraray.md * Update libraray.md * Update library.md * Update src/FMI.jl * Updtate Doc-String FMI2_additional * Update Doc-String FMI2_plot * Updtate Doc-String FMI2_additional * Update Doc-String and library.md * Update library.md * Update library.md Co-authored-by: adribrune <[email protected]> Co-authored-by: Adrian Brune <[email protected]> Co-authored-by: adribrune <[email protected]> * Update the repo structure (#160) * Update the repo structure * Bug fix * Bug fix in examples * Bug fix * Run the examples in parallel (#162) * v0.11.2 (ThummeTo#163) * fixed testa * added test for execution config, fixed bug with freeInstance * compatibility to new FMI3 topology * added FMI3 tests * add fmi3 version of files * add missing deps * tests changes * made most of the tests work * first changes for fixing sim * minor changes * fix tests for fmi 3 * fix stuff lost in merge * update tests * mmore work on tests * finish tests * bump version * add warning for ME simulation --------- Co-authored-by: ThummeTo <[email protected]> Co-authored-by: adribrune <[email protected]> Co-authored-by: Adrian Brune <[email protected]> Co-authored-by: adribrune <[email protected]> Co-authored-by: Johannes Stoljar <[email protected]> * docs(FMI): fix typo for `deperecated` (ThummeTo#169) * fixed test * added warning for failed simulation * allow string return code from solver * cleaned dependencies, adapted to new SciMLBase.Retcode * cleaned dependencies * divided test action into latest and LTS * run examples on latest * cleane dup --------- Co-authored-by: JoKircher <[email protected]> Co-authored-by: adribrune <[email protected]> Co-authored-by: Adrian Brune <[email protected]> Co-authored-by: adribrune <[email protected]> Co-authored-by: Johannes Stoljar <[email protected]> Co-authored-by: Sathvik Bhagavan <[email protected]>
- Loading branch information
1 parent
7d3b6d2
commit 2d22ae1
Showing
28 changed files
with
3,817 additions
and
1,691 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
name: Test v1.6 (LTS) | ||
|
||
on: | ||
workflow_dispatch: | ||
pull_request: | ||
push: | ||
branches: | ||
- main | ||
paths: | ||
- 'src/**' | ||
- 'test/**' | ||
- '.github/workflows/Test.yml' | ||
- 'Project.toml' | ||
|
||
jobs: | ||
test: | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
julia-version: ['1.6'] | ||
julia-arch: [x64] | ||
os: [ubuntu-latest, windows-latest] | ||
experimental: [false] | ||
|
||
steps: | ||
# Checks-out your repository | ||
- name: Check out repository | ||
uses: actions/checkout@v3 | ||
|
||
# Set up Julia | ||
- name: "Set up Julia" | ||
uses: julia-actions/setup-julia@v1 | ||
with: | ||
version: ${{ matrix.julia-version }} | ||
arch: ${{ matrix.julia-arch }} | ||
|
||
# Set up cache | ||
- name: "Set up cache" | ||
uses: actions/cache@v3 | ||
env: | ||
cache-name: cache-artifacts | ||
with: | ||
path: ~/.julia/artifacts | ||
key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }} | ||
restore-keys: | | ||
${{ runner.os }}-test-${{ env.cache-name }}- | ||
${{ runner.os }}-test- | ||
${{ runner.os }}- | ||
# Build package | ||
- name: "Build package" | ||
uses: julia-actions/julia-buildpkg@v1 | ||
|
||
# Run the tests | ||
- name: "Run tests" | ||
uses: julia-actions/julia-runtest@v1 | ||
|
||
# Preprocess Coverage | ||
- name: "Preprocess Coverage" | ||
uses: julia-actions/julia-processcoverage@v1 | ||
|
||
# Run codecov | ||
- name: "Run CodeCov" | ||
uses: codecov/codecov-action@v3 | ||
with: | ||
file: lcov.info |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,26 @@ | ||
name = "FMI" | ||
uuid = "14a09403-18e3-468f-ad8a-74f8dda2d9ac" | ||
authors = ["TT <[email protected]>", "LM <[email protected]>", "JK <[email protected]>"] | ||
version = "0.11.3" | ||
version = "0.12.0" | ||
|
||
[deps] | ||
ChainRulesCore = "d360d2e6-b24c-11e9-a2a3-2a2ae2dbcce4" | ||
Downloads = "f43a241f-c20a-4ad4-852c-f6b1247861c6" | ||
DiffEqCallbacks = "459566f4-90b8-5000-8ac3-15dfb0a30def" | ||
DifferentialEquations = "0c46a032-eb83-5123-abaf-570d42b7fbaa" | ||
Downloads = "f43a241f-c20a-4ad4-852c-f6b1247861c6" | ||
FMIExport = "31b88311-cab6-44ed-ba9c-fe5a9abbd67a" | ||
FMIImport = "9fcbc62e-52a0-44e9-a616-1359a0008194" | ||
ForwardDiff = "f6369f11-7733-5829-9624-2563aa707210" | ||
ProgressMeter = "92933f4c-e287-5a05-a399-4b506db050ca" | ||
Requires = "ae029012-a4dd-5104-9daa-d747884805df" | ||
SciMLBase = "0bca4576-84f4-4d90-8ffe-ffa030f20462" | ||
|
||
[compat] | ||
ChainRulesCore = "1.15.0" | ||
DiffEqCallbacks = "2.24.0" | ||
DifferentialEquations = "7.5.0" | ||
DiffEqCallbacks = "2.26.0" | ||
DifferentialEquations = "7.7.0" | ||
FMIExport = "0.1.0" | ||
FMIImport = "0.14.0" | ||
ForwardDiff = "0.10.0" | ||
FMIImport = "0.15" | ||
ProgressMeter = "1.7.0" | ||
Requires = "1.3.0" | ||
SciMLBase = "1.59.0" | ||
SciMLBase = "1.89.0" | ||
julia = "1.6" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.