EnergyModelsX / EnergyModelsBase.jl

MIT License
8 stars 0 forks source link

Replacement of `multiple` with `scale_op_sp` #42

Closed JulStraus closed 1 month ago

JulStraus commented 1 month ago

As outlined in #40, there were some ambiguities with the function multiple(t_inv, t) declared in EnergyModelsBase:

The same function with the same input was also declared within TimeStruct. That is the reason we did not export it from EnergyModelsBase. However, we realized that this is unsatisfactory. Hence, we renamed it to scale_op_sp and exported the function.

multiple(t_inv, t) will be still available, but removed eventually.

This PR closes #40.