-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'ThummeTo:main' into patch-docs
- Loading branch information
Showing
46 changed files
with
5,147 additions
and
6,952 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,14 @@ | ||
name: Format suggestions | ||
on: | ||
pull_request: | ||
# this argument is not required if you don't use the `suggestion-label` input | ||
types: [ opened, reopened, synchronize, labeled, unlabeled ] | ||
jobs: | ||
code-style: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: julia-actions/julia-format@v3 | ||
with: | ||
version: '1' # Set `version` to '1.0.54' if you need to use JuliaFormatter.jl v1.0.54 (default: '1') | ||
suggestion-label: 'format-suggest' # leave this unset or empty to show suggestions for all PRs | ||
|
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,21 +1,23 @@ | ||
name = "FMIImport" | ||
uuid = "9fcbc62e-52a0-44e9-a616-1359a0008194" | ||
authors = ["TT <tobias.thummerer@informatik.uni-augsburg.de>", "LM <lars.mikelsons@informatik.uni-augsburg.de>", "JK <josef.kircher@student.uni-augsburg.de>"] | ||
version = "0.16.2" | ||
version = "1.0.4" | ||
|
||
[deps] | ||
Downloads = "f43a241f-c20a-4ad4-852c-f6b1247861c6" | ||
EzXML = "8f5d6c58-4d21-5cfd-889c-e3ad7ee6a615" | ||
FMICore = "8af89139-c281-408e-bce2-3005eb87462f" | ||
FMIBase = "900ee838-d029-460e-b485-d98a826ceef2" | ||
Libdl = "8f399da3-3557-5675-b5ff-fb832c97cbdb" | ||
RelocatableFolders = "05181044-ff0b-4ac5-8273-598c1e38db00" | ||
ZipFile = "a5390f91-8eb1-5f08-bee0-b1d1ffed6cea" | ||
|
||
[weakdeps] | ||
FMIZoo = "724179cf-c260-40a9-bd27-cccc6fe2f195" | ||
|
||
[extensions] | ||
FMIZooExt = ["FMIZoo"] | ||
|
||
[compat] | ||
Downloads = "1" | ||
EzXML = "1.1.0" | ||
FMICore = "0.19.0" | ||
FMIBase = "1.0.0" | ||
Libdl = "1" | ||
RelocatableFolders = "1" | ||
ZipFile = "0.10.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# | ||
# Copyright (c) 2021 Frederic Bruder, Tobias Thummerer, Lars Mikelsons | ||
# Licensed under the MIT license. See LICENSE file in the project root for details. | ||
# | ||
|
||
module FMIZooExt | ||
|
||
using FMIImport, FMIZoo | ||
|
||
function FMIImport.loadFMU( | ||
modelName::AbstractString, | ||
tool::AbstractString, | ||
version::AbstractString, | ||
fmiversion::AbstractString = "2.0"; | ||
kwargs..., | ||
) | ||
fname = get_model_filename(modelName, tool, version, fmiversion) | ||
return FMIImport.loadFMU(fname; kwargs...) | ||
end | ||
|
||
end # FMIZooExt |
Oops, something went wrong.