Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Release notes

## Version 0.1.0 (2026-04-25)
## Version 0.1.0 (2026-05-28)

### Added WindFarmParameters

* Introduces `WindFarmParameters` more in line with `PVParameters` and also made the corresponding nodes more consistent.

### Add Building node

Expand All @@ -16,7 +20,7 @@
### Initial version of the package

* Provide sampling routines for C++ and Python for incorporation into `EnergyModelsX` models.
* Utilize the sampling routines for sampling from:.
* Utilize the sampling routines for sampling from:
* C++: `BioCHP` node.
* Python: `MultipleBuildingTypes`, `CSPandPV`, and `WindPower` nodes.
* Incorporation of a `BioResource` for `BiOCHP` plant.
Expand Down
8 changes: 5 additions & 3 deletions docs/src/library/public.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ EMLI.ResourceBio

```@docs
EMLI.PVParameters
EMLI.WindFarmParameters
```

## [New nodal types](@id lib-pub-nodal_types)
Expand All @@ -29,12 +30,12 @@ EMLI.BioCHP
EMLI.WindPower(
::Any,
::TimeStruct.TimeProfile,
::Dict,
::String,
::String,
::TimeStruct.TimeProfile,
::TimeStruct.TimeProfile,
::Dict{<:EnergyModelsBase.Resource,<:Real},
::DateTime,
::DateTime,
::WindFarmParameters,
)
EMLI.PV(
::Any,
Expand Down Expand Up @@ -108,4 +109,5 @@ EMLI.BioCHP(
```@docs
EMLI.call_python_function
EMLI.fetch_element
EMLI.to_dict
```
4 changes: 2 additions & 2 deletions src/EnergyModelsLanguageInterfaces.jl
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ include("constraint_functions.jl")
include("utils.jl")

export call_python_function, fetch_element
export WindPower, CSPandPV, MultipleBuildingTypes
export PVParameters, WindFarmParameters
export PV, WindPower, CSPandPV, MultipleBuildingTypes
export ResourceBio, BioCHP
export PV, PVParameters
export Building

end # module EnergyModelsLanguageInterfaces
Loading
Loading