diff --git a/CHANGELOG.md b/CHANGELOG.md index fcd583a..03b2bbc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -49,6 +49,7 @@ The changelog format is based on [Keep a Changelog](https://keepachangelog.com/e * Changed publishing workflow to use OpenID Connect (Trusted Publisher Management) when publishing to PyPI * Updated copyright statement * VS Code settings: Turned off automatic venv activation +* Edited descriptions in the examples/wind_to_power/config/interface.json ### Added diff --git a/examples/wind_to_power/config/interface.json b/examples/wind_to_power/config/interface.json index bba9af3..1808f3c 100644 --- a/examples/wind_to_power/config/interface.json +++ b/examples/wind_to_power/config/interface.json @@ -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": [] } \ No newline at end of file