|new| Revised technology definitions and sets
|new| Supply technologies split into two types: supply
and supply_plus
|new| Allow technologies to generate revenue
- |changed| Removed SolutionModel class
- |new| Allow profiling with the
--profile
and--profile_filename
command-line options - |new| Permit setting random seed with
random_seed
in the run configuration - |changed| Updated installation documentation using conda-forge package
- |fixed| Other minor fixes
|new| Added new methods to deal with time resolution: clustering, resampling, and heuristic timestep selection
|changed| |backwards-incompatible| Major change to solution data structure. Model solution is now returned as a single xarray DataSet instead of multiple pandas DataFrames and Panels. Instead of as a generic HDF5 file, complete solutions can be saved as a NetCDF4 file via xarray's NetCDF functionality.
While the recommended way to save and process model results is by NetCDF4, CSV saving functionality has now been upgraded for more flexibility. Each variable is saved as a separate CSV file with a single value column and as many index columns as required.
|changed| |backwards-incompatible| Model data structures simplified and based on xarray
- |new| Functionality to post-process parallel runs into aggregated NetCDF files in
calliope.read
- |changed| Pandas 0.18/0.19 compatibility
- |changed| 1.11 is now the minimum required numpy version. This version makes datetime64 tz-naive by default, thus preventing some odd behavior when displaying time series.
- |changed| Improved logging, status messages, and error reporting
- |fixed| Other minor fixes
|changed| Per-location configuration overrides improved. All technology constraints can now be set on a per-location basis, as can costs. This applies to the following settings:
techname.x_map
techname.constraints.*
techname.constraints_per_distance.*
techname.costs.*
The following settings cannot be overridden on a per-location basis:
- Any other options directly under
techname
, such astechname.parent
ortechname.carrier
techname.costs_per_distance.*
techname.depreciation.*
- |fixed| Improved installation instructions
- |fixed| Pyomo 4.2 API compatibility
- |fixed| Other minor fixes
- |fixed| Version 0.3.5 changes were not reflected in tutorial
|new| New constraint to constrain total (model-wide) installed capacity of a technology (e_cap.total_max
), in addition to its per-node capacity (e_cap.max
)
|changed| Removed the level
option for locations. Level is now implicitly derived from the nested structure given by the within
settings. Locations that define no or an empty within
are implicitly at the topmost (0) level.
|changed| |backwards-incompatible| Revised configuration of capacity constraints: e_cap_max
becomes e_cap.max
, addition of e_cap.min
and e_cap.equals
(analogous for r_cap, s_cap, rb_cap, r_area). The e_cap.equals
constraint supersedes e_cap_max_force
(analogous for the other constraints). No backwards-compatibility is retained, models must change all constraints to the new formulation. See :ref:`config_reference_constraints` for a complete list of all available constraints. Some additional constraints have name changes:
e_cap_max_scale
becomese_cap_scale
rb_cap_follows
becomesrb_cap_follow
, and addition ofrb_cap_follow_mode
s_time_max
becomess_time.max
|changed| |backwards-incompatible| All optional constraints are now grouped together, under constraints.optional
:
constraints.group_fraction.group_fraction
becomesconstraints.optional.group_fraction
constraints.ramping.ramping_rate
becomesconstraints.optional.ramping_rate
- |new| analysis.map_results function to extract solution details from multiple parallel runs
- |new| Various other additions to analysis functionality, particularly in the analysis_utils module
- |new| analysis.get_levelized_cost to get technology and location specific costs
- |new| Allow dynamically loading time mask functions
- |changed| Improved summary table in the model solution: now shows only aggregate information for transmission technologies, also added missing
s_cap
column and technology type - |fixed| Bug causing some total levelized transmission costs to be infinite instead of zero
- |fixed| Bug causing some CSV solution files to be empty
- |fixed| Bug in construction and fixed O&M cost calculations in operational mode
|changed| In preparation for future enhancements, the ordering of location levels is flipped. The top-level locations at which balancing takes place is now level 0, and may contain level 1 locations. This is a backwards-incompatible change.
|changed| |backwards-incompatible| Refactored time resolution adjustment functionality. Can now give a list of masks in the run configuration which will all be applied, via time.masks
, with a base resolution via time.resolution
(or instead, as before, load a resolution series from file via time.file
). Renamed the time_functions
submodule to time_masks
.
- |new| Models and runs can have a
name
- |changed| More verbose
calliope run
- |changed| Analysis tools restructured
- |changed| Renamed
debug.keepfiles
setting todebug.keep_temp_files
and better documented debug configuration
- |new| Run setting
model_override
allows specifying the path to a YAML file with overrides for the model configuration, applied at model initialization (path is given relative to the run configuration file used). This is in addition to the existingoverride
setting, and is applied first (sooverride
can overridemodel_override
). - |new| Run settings
output.save_constraints
andoutput.save_constraints_options
- |new| Run setting
parallel.post_run
- |changed| Solution column names more in line with model component names
- |changed| Can specify more than one output format as a list, e.g.
output.format: ['csv', 'hdf']
- |changed| Run setting
parallel.additional_lines
renamed toparallel.pre_run
- |changed| Better error messages and CLI error handling
- |fixed| Bug on saving YAML files with numpy dtypes fixed
- Other minor improvements and fixes
- Fixes to time_functions
- Other minor improvements and fixes
- Python 3 and Pyomo 4 are now minimum requirements
- Significantly improved documentation
- Improved model solution management by saving to HDF5 instead of CSV
- Calculate shares of technologies, including the ability to define groups for the purpose of computing shares
- Improved operational mode
- Simplified time_tools
- Improved output plotting, including dispatch, transmission flows, and installed capacities, and added model configuration to support these plots
r
can be specified as power or energy- Improved solution speed
- Better error messages and basic logging
- Better sanity checking and error messages for common mistakes
- Basic distance-dependent constraints (only implemented for e_loss and cost of e_cap for now)
- Other improvements and fixes
- Added cost classes with a new set
k
- Added energy carriers with a new set
c
- Added conversion technologies
- Speed improvements and simplifications
- Ability to arbitrarily nest model configuration files with
import
statements - Added additional constraints
- Improved configuration handling
- Ability to define timestep options in run configuration
- Cleared up terminology (nodes vs locations)
- Improved TimeSummarizer masking and added new masks
- Removed technology classes
- Improved operational mode with results output matching planning mode and dynamic updating of parameters in model instance
- Working parallel_tools
- Improved documentation
- Apache 2.0 licensed
- Other improvements and fixes
- Some semblance of documentation
- Usable built-in example model
- Improved and working TimeSummarizer
- More flexible masking for TimeSummarizer
- Ability to add additional constraints without editing core source code
- Some basic test coverage
- Working parallel run configuration system