-
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.
* WIP * preparation for FMIBase.jl * bug fixes, preparations for FMI3 and FMIBase * minor change * Julia 1.9+ extension system * getValue bug fix (strings) * Julia 1.9+ extensions
- Loading branch information
Showing
38 changed files
with
2,740 additions
and
6,378 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 |
---|---|---|
@@ -1,21 +1,27 @@ | ||
name = "FMIImport" | ||
uuid = "9fcbc62e-52a0-44e9-a616-1359a0008194" | ||
authors = ["TT <[email protected]>", "LM <[email protected]>", "JK <[email protected]>"] | ||
version = "0.16.4" | ||
version = "1.0.0" | ||
|
||
[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" | ||
PackageExtensionCompat = "65ce6f38-6b18-4e1d-a461-8949797d7930" | ||
RelocatableFolders = "05181044-ff0b-4ac5-8273-598c1e38db00" | ||
ZipFile = "a5390f91-8eb1-5f08-bee0-b1d1ffed6cea" | ||
Requires = "ae029012-a4dd-5104-9daa-d747884805df" | ||
|
||
[weakdeps] | ||
FMIZoo = "724179cf-c260-40a9-bd27-cccc6fe2f195" | ||
|
||
[extensions] | ||
FMIZooExt = ["FMIZoo"] | ||
|
||
[compat] | ||
Downloads = "1" | ||
EzXML = "1.1.0" | ||
FMICore = "0.20.0" | ||
FMIBase = "1.0.0" | ||
Libdl = "1" | ||
PackageExtensionCompat = "1.0.0" | ||
RelocatableFolders = "1" | ||
ZipFile = "0.10.0" | ||
Requires = "1.3.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,15 @@ | ||
# | ||
# 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.
dc16f48
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@JuliaRegistrator register
dc16f48
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Registration pull request created: JuliaRegistries/General/109205
Tip: Release Notes
Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.
To add them here just re-invoke and the PR will be updated.
Tagging
After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.
This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via: