-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add "FMI" prefix to simulation files and functions (#528)
- Loading branch information
Showing
20 changed files
with
255 additions
and
239 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,12 @@ | ||
#pragma once | ||
|
||
#include "FMI2.h" | ||
#include "FMIModelDescription.h" | ||
#include "FMIRecorder.h" | ||
#include "fmusim_input.h" | ||
#include "fmusim.h" | ||
#include "FMISimulation.h" | ||
|
||
|
||
FMIStatus simulateFMI2CS( | ||
FMIStatus FMI1CSSimulate( | ||
FMIInstance* S, | ||
const FMIModelDescription* modelDescription, | ||
const char* resourceURI, | ||
FMIRecorder* result, | ||
const FMUStaticInput* input, | ||
const FMIStaticInput* input, | ||
const FMISimulationSettings* settings); |
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,11 @@ | ||
#pragma once | ||
|
||
#include "FMISimulation.h" | ||
|
||
|
||
FMIStatus FMI1MESimulate( | ||
FMIInstance* S, | ||
const FMIModelDescription* modelDescription, | ||
FMIRecorder* result, | ||
const FMIStaticInput* input, | ||
const FMISimulationSettings* settings); |
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,16 +1,12 @@ | ||
#pragma once | ||
|
||
#include "FMI1.h" | ||
#include "FMIModelDescription.h" | ||
#include "FMIRecorder.h" | ||
#include "fmusim_input.h" | ||
#include "fmusim.h" | ||
#include "FMISimulation.h" | ||
|
||
|
||
FMIStatus simulateFMI1CS( | ||
FMIStatus FMI2CSSimulate( | ||
FMIInstance* S, | ||
const FMIModelDescription* modelDescription, | ||
const char* resourceURI, | ||
FMIRecorder* result, | ||
const FMUStaticInput* input, | ||
const FMIStaticInput* input, | ||
const FMISimulationSettings* settings); |
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,16 +1,12 @@ | ||
#pragma once | ||
|
||
#include "FMI2.h" | ||
#include "FMIModelDescription.h" | ||
#include "FMIRecorder.h" | ||
#include "fmusim_input.h" | ||
#include "fmusim.h" | ||
#include "FMISimulation.h" | ||
|
||
|
||
FMIStatus simulateFMI2ME( | ||
FMIStatus FMI2MESimulate( | ||
FMIInstance* S, | ||
const FMIModelDescription* modelDescription, | ||
const char* resourceURI, | ||
FMIRecorder* result, | ||
const FMUStaticInput* input, | ||
const FMIStaticInput* input, | ||
const FMISimulationSettings* settings); |
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,16 +1,12 @@ | ||
#pragma once | ||
|
||
#include "FMI3.h" | ||
#include "FMIModelDescription.h" | ||
#include "FMIRecorder.h" | ||
#include "fmusim_input.h" | ||
#include "fmusim.h" | ||
#include "FMISimulation.h" | ||
|
||
|
||
FMIStatus simulateFMI3CS( | ||
FMIStatus FMI3CSSimulate( | ||
FMIInstance* S, | ||
const FMIModelDescription* modelDescription, | ||
const char* resourcePath, | ||
FMIRecorder* result, | ||
const FMUStaticInput* input, | ||
const FMIStaticInput* input, | ||
const FMISimulationSettings* settings); |
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,16 +1,12 @@ | ||
#pragma once | ||
|
||
#include "FMI3.h" | ||
#include "FMIModelDescription.h" | ||
#include "FMIRecorder.h" | ||
#include "fmusim_input.h" | ||
#include "fmusim.h" | ||
#include "FMISimulation.h" | ||
|
||
|
||
FMIStatus simulateFMI3ME( | ||
FMIStatus FMI3MESimulate( | ||
FMIInstance* S, | ||
const FMIModelDescription* modelDescription, | ||
const char* resourcePath, | ||
FMIRecorder* result, | ||
const FMUStaticInput* input, | ||
const FMIStaticInput* input, | ||
const FMISimulationSettings* settings); |
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.