diff --git a/NEWS.md b/NEWS.md index c3c742f..a58a438 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,6 +1,6 @@ # Release Notes -## Unversioned +## Version 0.1.3 (2025-10-20) ### New subtype for thermal energy storage @@ -13,6 +13,7 @@ * Switched from `Data` to `ExtensionData` as described within [`EnergyModelsBase` v0.9.1](https://github.com/EnergyModelsX/EnergyModelsBase.jl/releases/tag/v0.9.1). * Removed the folder `submodels` as the CHP model was moved to *[a new repository](https://github.com/iDesignRES/CHP_modelling)*. * Unified and extended the test structure. +* Included the descriptive names for `EnergyModelsGUI`. ### Fixes diff --git a/Project.toml b/Project.toml index 5ec3b67..3ba0d2b 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "EnergyModelsHeat" uuid = "ad1b8b27-e232-4da9-b498-bea9c19a30d7" authors = ["Lars Hellemo, Hanne Kauko, and Till Holmes"] -version = "0.1.2" +version = "0.1.3" [deps] EnergyModelsBase = "5d7e687e-f956-46f3-9045-6f5a5fd49f50" diff --git a/ext/EMGUIExt/descriptive_names.yml b/ext/EMGUIExt/descriptive_names.yml new file mode 100644 index 0000000..83ebbf0 --- /dev/null +++ b/ext/EMGUIExt/descriptive_names.yml @@ -0,0 +1,28 @@ +# This file contains descriptions of EnergyModelsHeat-structures and variables +# with fields of type TimeStruct.TimeProfile +structures: + HeatPump: + cap: "Installed capacity" + t_source: "Temperature profile of the heat source" + t_sink: "Sink temperature of the condensator" + eff_carnot: "Carnot Efficiency" + opex_var: "Variable operating expense per energy unit produced" + opex_fixed: "Fixed operating expense per installed capacity" + ResourceHeat: + t_supply: "Supply temperature in °C" + t_return: "Return temperature in °C" + DHPipe: + cap: "Heat transport capacity of the pipe" + t_ground: "Ground temperature in °C" + HeatExchanger: + cap: "Installed capacity" + opex_var: "Variable operating expense per energy unit produced" + opex_fixed: "Fixed operating expense" + DirectHeatUpgrade: + cap: "Installed capacity" + opex_var: "Variable operating expense per energy unit produced" + opex_fixed: "Fixed operating expense" + +# Add description for all JuMP variables using a TimeStruct.TimeProfile type +variables: + dh_pipe_loss: "Heat losses in DH pipes"