-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
moved docs from FMIImport&Core into FMI.jl (#204)
* added FMIImport doc to FMI.jl * doc fixes * fixes for doc * doc improvements, doc structure finalized * added many functions to doc-manual * added all funcs to doc manual * doc fixes * doc fixes * fixed typo * Update Documentation.yml to use julia 1.9 * docs for FMI_exten according to format & docfixes * fixed docs for nonFMI spec fucs & notes to plot funcs * fixed bad links in doc + export addtional fmifuncs * removed Manifest.toml from docs env * doc updates for comp_wraps * doc updates for sim * added deprecated flags * typo fixes * fixes * doc fixes * doc fixes for merge * minor doc fixes (link check) * fixed fmi2SimulateCS wrapper * documentation action uses PR-repo-state * fix for Example action
- Loading branch information
1 parent
7b29861
commit 3bedc81
Showing
31 changed files
with
1,809 additions
and
967 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
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 was deleted.
Oops, something went wrong.
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,5 +1,12 @@ | ||
[deps] | ||
CSV = "336ed68f-0bac-5ca0-87d4-7b16caf5d00b" | ||
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0" | ||
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4" | ||
FMICore = "8af89139-c281-408e-bce2-3005eb87462f" | ||
FMIImport = "9fcbc62e-52a0-44e9-a616-1359a0008194" | ||
JLD2 = "033835bb-8acc-5ee8-8aae-3f567f8a3819" | ||
MAT = "23992714-dd62-5051-b70f-ba57cb901cac" | ||
Plots = "91a5bcdd-55d7-5caf-9e0b-520d859cae80" | ||
|
||
[compat] | ||
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,56 @@ | ||
# deprecated Functions | ||
|
||
this doc page is necessary as all exported functions must be documented in the manual with documenter configred to check for missing documentation, therefor this hidden page exists | ||
|
||
### internal funtions: remove export? | ||
```@docs | ||
fmi2CallbackLogger | ||
fmi2CallbackAllocateMemory | ||
fmi2CallbackFreeMemory | ||
fmi3CallbackLogger | ||
fmi2CallbackFunctions | ||
fmi2CallbackStepFinished | ||
``` | ||
|
||
### deprecated | ||
Mostly wrappers that are not supposed to be used (call specific wrapped functions instead) | ||
|
||
```@docs | ||
fmiSetReal | ||
fmiReset | ||
fmiGetGenerationTool | ||
fmiEnterContinuousTimeMode | ||
fmiGetEventIndicators | ||
fmiSetBoolean | ||
fmiFreeInstance! | ||
fmiInstantiate! | ||
fmiTerminate | ||
fmiDoStep | ||
fmiSetInteger | ||
fmiCompletedIntegratorStep | ||
fmiExitInitializationMode | ||
fmiSetupExperiment | ||
fmiSetDebugLogging | ||
fmiSerializedFMUstateSize | ||
fmiSerializeFMUstate | ||
fmiDeSerializeFMUstate | ||
fmiEnterInitializationMode | ||
fmiGetDirectionalDerivative! | ||
fmiNewDiscreteStates | ||
fmiGetDirectionalDerivative | ||
fmiSetRealInputDerivatives | ||
fmiGetGenerationDateAndTime | ||
fmiGetContinuousStates | ||
fmiSetContinuousStates | ||
fmiGetNominalsOfContinuousStates | ||
fmiSetTime | ||
fmiSetString | ||
fmiGetString | ||
fmiGetString! | ||
fmiGetInteger | ||
fmiGetInteger! | ||
fmiGetReal | ||
fmiGetReal! | ||
fmiGetBoolean | ||
fmiGetBoolean! | ||
``` |
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.