-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #71 from dnv-innersource/fix/70-example-interface-fix
Fix descriptions in interface json for wind power model
- Loading branch information
Showing
2 changed files
with
30 additions
and
29 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,31 +1,31 @@ | ||
{ | ||
"name": "WindToPower", | ||
"description": "A Machine Learning based FMU that outputs the estimated power output of a windmill given the wind speed and direction.", | ||
"inputs": [ | ||
{ | ||
"name": "windSpeed", | ||
"description": "Noise to be added to the change in wind speed", | ||
"agentInputIndexes": [ | ||
"0" | ||
] | ||
}, | ||
{ | ||
"name": "windDirection", | ||
"description": "Noise to be added to the change in wind direction", | ||
"agentInputIndexes": [ | ||
"1" | ||
] | ||
} | ||
], | ||
"parameters": [], | ||
"outputs": [ | ||
{ | ||
"name": "power", | ||
"description": "The estimated windmill power output", | ||
"agentOutputIndexes": [ | ||
"0" | ||
] | ||
} | ||
], | ||
"states": [] | ||
"name": "WindToPower", | ||
"description": "A Machine Learning based FMU that outputs the estimated power output of a wind turbine given the wind speed and direction.", | ||
"inputs": [ | ||
{ | ||
"name": "windSpeed", | ||
"description": "The speed of the wind", | ||
"agentInputIndexes": [ | ||
"0" | ||
] | ||
}, | ||
{ | ||
"name": "windDirection", | ||
"description": "The direction of the wind", | ||
"agentInputIndexes": [ | ||
"1" | ||
] | ||
} | ||
], | ||
"parameters": [], | ||
"outputs": [ | ||
{ | ||
"name": "power", | ||
"description": "The estimated wind turbine power output", | ||
"agentOutputIndexes": [ | ||
"0" | ||
] | ||
} | ||
], | ||
"states": [] | ||
} |