Recent Releases of Power Grid Model
Power Grid Model - v1.10.3
What's Changed
- Feature/Use None instead of Optional by @mgovers in https://github.com/PowerGridModel/power-grid-model/pull/831
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.10.2...v1.10.3
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 6 months ago

Power Grid Model - v1.10.2
What's Changed
- Feature / use span instead of reference wrapper for cache sequence by @mgovers in https://github.com/PowerGridModel/power-grid-model/pull/824
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.10.1...v1.10.2
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 6 months ago

Power Grid Model - v1.10.1
What's Changed
- [Feature] add check-blocking-labels github action by @mgovers in https://github.com/PowerGridModel/power-grid-model/pull/827
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.10.0...v1.10.1
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 6 months ago

Power Grid Model - v1.10.0
Highlights
- ✅ Added native support for columnar data formats (see #548 and the documentation).
- ✅ Added a generic branch component type (see #729, #752 and the documentation).
- ✅ Update data IDs are now optional in certain cases (see #548 and the documentation).
- 💥 Multiple bug fixes (e.g., see #670, #671, #672, #690, #703).
- 💥 Explicitly forbid certain cases of unsupported usages (see below for details, and #774 and #784).
- 🚀 Improved numeric stability of source injection calculation (see #458).
- 🚀 Various improvements to the user experience (e.g., see #668, #674 and #697).
- 🚀 Improvements and fixes to the documentation.
- 🎉 Various improvements to the internal implementation and compiler support.
Support for Python 3.9 was dropped
As agreed upon during the last Power Grid Model meet-up, support for Python 3.9 was dropped. Please refer to our Release Strategy on details.
Explicitly disallowing unsupported behavior
The following changes affect previously undefined or unsupported behavior. Migration strategies are provided below.
- The
power_grid_model.core
library was renamed topower_grid_model._core
(see #787). Thecore
module was never intended to be directly used by users as it contains the core of thepower_grid_model
implementation. The same is true for several functions in the modules inpower_grid_model.validation
(see #822).- Migration: if you do use the
power_grid_model.core
module in your workflow, please migrate to other functions exposed in the public modules inpower_grid_model
that are not prefixed with a leading underscore (_
). Idem for usage of functions inpower_grid_model.validation
.
- Migration: if you do use the
- Providing data types (dtypes) that are not consistent with ones internally used in the Python library is now explicitly forbidden (see #811). This behavior was already undefined.
- Migration: you can use the
initialize_array
orpower_grid_meta_data
exposed via the Python API, or convert your arrays to conform to the internally used data types.
- Migration: you can use the
Please contact us on the issue board or discussion board if you find missing features or need help otherwise.
What's Changed
- [Feature] Check generated code by @figueroa1395 in https://github.com/PowerGridModel/power-grid-model/pull/658
- Bump fsfe/reuse-action from 3 to 4 by @dependabot in https://github.com/PowerGridModel/power-grid-model/pull/665
- Bump pypa/cibuildwheel from 2.19.1 to 2.19.2 by @dependabot in https://github.com/PowerGridModel/power-grid-model/pull/664
- Feature/Added missing metaclass by @figueroa1395 in https://github.com/PowerGridModel/power-grid-model/pull/667
- fix #669 transformer tap regulator without other transformer type in data by @mgovers in https://github.com/PowerGridModel/power-grid-model/pull/670
- fix also support empty trafo list in validation by @mgovers in https://github.com/PowerGridModel/power-grid-model/pull/671
- [BUG] Fix source param calculation by @nitbharambe in https://github.com/PowerGridModel/power-grid-model/pull/672
- Rectify source documentation by @nitbharambe in https://github.com/PowerGridModel/power-grid-model/pull/673
- Drop python 3.9 by @Jerry-Jinfeng-Guo in https://github.com/PowerGridModel/power-grid-model/pull/638
- Feature/main model wrapper by @mgovers in https://github.com/PowerGridModel/power-grid-model/pull/660
- [FEATURE] Add simple self_test to Python API by @zhen0427 in https://github.com/PowerGridModel/power-grid-model/pull/674
- Feature/test row based dataset by @mgovers in https://github.com/PowerGridModel/power-grid-model/pull/675
- Clearify the reference direction of branch and branch3 by @zhen0427 in https://github.com/PowerGridModel/power-grid-model/pull/679
- Columnar data Python API step 2 by @nitbharambe in https://github.com/PowerGridModel/power-grid-model/pull/676
- [FEATURE] Numerically stable source injection in power flow. by @figueroa1395 in https://github.com/PowerGridModel/power-grid-model/pull/666
- Add type hinting in python API by @zhen0427 in https://github.com/PowerGridModel/power-grid-model/pull/680
- Feature/calculation type in options by @mgovers in https://github.com/PowerGridModel/power-grid-model/pull/681
- Bump pypa/cibuildwheel from 2.19.2 to 2.20.0 by @dependabot in https://github.com/PowerGridModel/power-grid-model/pull/683
- Feature / Binary search in Automatic Tap Changer by @Jerry-Jinfeng-Guo in https://github.com/PowerGridModel/power-grid-model/pull/668
- Feature/columnar dataset by @mgovers in https://github.com/PowerGridModel/power-grid-model/pull/678
- remove erroneously added unused and test logic after #668 by @mgovers in https://github.com/PowerGridModel/power-grid-model/pull/684
- Feature/calculation type options in tests by @mgovers in https://github.com/PowerGridModel/power-grid-model/pull/682
- Remove unused alias topology by @nitbharambe in https://github.com/PowerGridModel/power-grid-model/pull/686
- Bugfix/dont crash on invalid homogeneous batch dataset by @mgovers in https://github.com/PowerGridModel/power-grid-model/pull/690
- Path changes to cmake files by @Laurynas-Jagutis in https://github.com/PowerGridModel/power-grid-model/pull/689
- Implementation of TypeVar in more scripts by @zhen0427 in https://github.com/PowerGridModel/power-grid-model/pull/685
- Refactor meta data generator to remove lambda hack by @TonyXiang8787 in https://github.com/PowerGridModel/power-grid-model/pull/693
- fix compiler flag with new setuptools by @TonyXiang8787 in https://github.com/PowerGridModel/power-grid-model/pull/694
- Feature/enable mypy for users by @mgovers in https://github.com/PowerGridModel/power-grid-model/pull/697
- add columnar data to data types (but don't use yet) by @mgovers in https://github.com/PowerGridModel/power-grid-model/pull/663
- license for py.typed by @mgovers in https://github.com/PowerGridModel/power-grid-model/pull/701
- Use black-jupyter in pre-commit by @nitbharambe in https://github.com/PowerGridModel/power-grid-model/pull/700
- [BUG] data filter of list to not crash by @nitbharambe in https://github.com/PowerGridModel/power-grid-model/pull/705
- BugFix / Handle access violation to unconnected-regulated transformers by @Jerry-Jinfeng-Guo in https://github.com/PowerGridModel/power-grid-model/pull/703
- Update quickstart.md by @PaulSchulz in https://github.com/PowerGridModel/power-grid-model/pull/709
- Feature/C++ header only wrapper for C API by @figueroa1395 in https://github.com/PowerGridModel/power-grid-model/pull/688
- Feature/cpp api tests by @figueroa1395 in https://github.com/PowerGridModel/power-grid-model/pull/707
- Refactor data filter functionality by @nitbharambe in https://github.com/PowerGridModel/power-grid-model/pull/704
- Feature/columnar data serialization by @mgovers in https://github.com/PowerGridModel/power-grid-model/pull/708
- columnar data python api serialization by @nitbharambe in https://github.com/PowerGridModel/power-grid-model/pull/687
- Allow python 3.13 by @TonyXiang8787 in https://github.com/PowerGridModel/power-grid-model/pull/713
- more efficient columnar deserialization by @mgovers in https://github.com/PowerGridModel/power-grid-model/pull/716
- Feature / Add columnar data support in main model by @Jerry-Jinfeng-Guo in https://github.com/PowerGridModel/power-grid-model/pull/712
- Bump pypa/cibuildwheel from 2.20.0 to 2.21.0 by @dependabot in https://github.com/PowerGridModel/power-grid-model/pull/721
- Feature / Rename API tests by @Jerry-Jinfeng-Guo in https://github.com/PowerGridModel/power-grid-model/pull/719
- Feature / Columnar data C API by @Jerry-Jinfeng-Guo in https://github.com/PowerGridModel/power-grid-model/pull/711
- fix quick start by @TonyXiang8787 in https://github.com/PowerGridModel/power-grid-model/pull/724
- Renew build guide by @TonyXiang8787 in https://github.com/PowerGridModel/power-grid-model/pull/725
- Bump pypa/cibuildwheel from 2.21.0 to 2.21.1 by @dependabot in https://github.com/PowerGridModel/power-grid-model/pull/728
- MutableDataset to ConstDataset for columnar data by @nitbharambe in https://github.com/PowerGridModel/power-grid-model/pull/732
- Feature/Update validation for columnar by @figueroa1395 in https://github.com/PowerGridModel/power-grid-model/pull/734
- improve user build guide by @TonyXiang8787 in https://github.com/PowerGridModel/power-grid-model/pull/737
- Feature/add nightly by @mgovers in https://github.com/PowerGridModel/power-grid-model/pull/736
- Improve C and CPP API target structure by @TonyXiang8787 in https://github.com/PowerGridModel/power-grid-model/pull/741
- remove not-needed handle creation in meta data by @TonyXiang8787 in https://github.com/PowerGridModel/power-grid-model/pull/743
- Feature/nightly part 2 by @mgovers in https://github.com/PowerGridModel/power-grid-model/pull/742
- Feature/full clang tidy by @mgovers in https://github.com/PowerGridModel/power-grid-model/pull/744
- Update README.md by @mgovers in https://github.com/PowerGridModel/power-grid-model/pull/745
- Remove static functions in CPP wrapper by @TonyXiang8787 in https://github.com/PowerGridModel/power-grid-model/pull/747
- add check code quality + citations to nightly by @mgovers in https://github.com/PowerGridModel/power-grid-model/pull/750
- Feature / Add enum options to deserialize relevant attributes by @Jerry-Jinfeng-Guo in https://github.com/PowerGridModel/power-grid-model/pull/746
- Add numpy to mypy check by @mgovers in https://github.com/PowerGridModel/power-grid-model/pull/753
- Feature/Update reuse by @figueroa1395 in https://github.com/PowerGridModel/power-grid-model/pull/754
- add component attribute filter options to init by @mgovers in https://github.com/PowerGridModel/power-grid-model/pull/757
- Feature/columnar dataset python extension by @mgovers in https://github.com/PowerGridModel/power-grid-model/pull/699
- remove experimental flag on columnar output by @mgovers in https://github.com/PowerGridModel/power-grid-model/pull/759
- Feature / deserialization data filter relevant logic in place by @Jerry-Jinfeng-Guo in https://github.com/PowerGridModel/power-grid-model/pull/758
- Bump pypa/cibuildwheel from 2.21.1 to 2.21.2 by @dependabot in https://github.com/PowerGridModel/power-grid-model/pull/763
- move datasetype from dataset to _utils by @nitbharambe in https://github.com/PowerGridModel/power-grid-model/pull/761
- Feature/Re route validation tests by @figueroa1395 in https://github.com/PowerGridModel/power-grid-model/pull/718
- create generic_branch #729 by @scud-soptim in https://github.com/PowerGridModel/power-grid-model/pull/752
- columnar data batch list conversion by @nitbharambe in https://github.com/PowerGridModel/power-grid-model/pull/760
- Bug/Fix columnar batch validation function by @figueroa1395 in https://github.com/PowerGridModel/power-grid-model/pull/768
- Feature/Add utils to Cpp wrapper by @figueroa1395 in https://github.com/PowerGridModel/power-grid-model/pull/767
- Repro case for buffer alignment by @mgovers in https://github.com/PowerGridModel/power-grid-model/pull/769
- Bump actions ubuntu 24.04 by @figueroa1395 in https://github.com/PowerGridModel/power-grid-model/pull/770
- Fix Nightly Clang-Tidy run by @mgovers in https://github.com/PowerGridModel/power-grid-model/pull/775
- auto tap validation test for meshed grid with transformers by @mgovers in https://github.com/PowerGridModel/power-grid-model/pull/777
- Bug/Convert to/form row/col util function by @figueroa1395 in https://github.com/PowerGridModel/power-grid-model/pull/779
- Remove sphinx workaround by @mgovers in https://github.com/PowerGridModel/power-grid-model/pull/780
- Bump pypa/cibuildwheel from 2.21.2 to 2.21.3 by @dependabot in https://github.com/PowerGridModel/power-grid-model/pull/782
- Add dtype compatibility check by @nitbharambe in https://github.com/PowerGridModel/power-grid-model/pull/776
- Improvement/Integration tests for columnar data by @figueroa1395 in https://github.com/PowerGridModel/power-grid-model/pull/778
- [Feature] columnar data Python API docs by @mgovers in https://github.com/PowerGridModel/power-grid-model/pull/781
- Bug/Fix feedstock mac by @figueroa1395 in https://github.com/PowerGridModel/power-grid-model/pull/790
- BugFix / Capital enums made lower case by @Jerry-Jinfeng-Guo in https://github.com/PowerGridModel/power-grid-model/pull/792
- Build guide docs - build docs from local by @nitbharambe in https://github.com/PowerGridModel/power-grid-model/pull/789
- Columnar data docs - native data interface serialization by @nitbharambe in https://github.com/PowerGridModel/power-grid-model/pull/788
- Columnar data documentation (Terminology) by @nitbharambe in https://github.com/PowerGridModel/power-grid-model/pull/783
- [Feature] - columnar data examples by @mgovers in https://github.com/PowerGridModel/power-grid-model/pull/785
- improve C API documentation by @mgovers in https://github.com/PowerGridModel/power-grid-model/pull/799
- Bug / Fix error handling tests in API tests by @Jerry-Jinfeng-Guo in https://github.com/PowerGridModel/power-grid-model/pull/795
- Fix/missing validation of k for generic branch by @scud-soptim in https://github.com/PowerGridModel/power-grid-model/pull/804
- Feature - columnar performance docs by @mgovers in https://github.com/PowerGridModel/power-grid-model/pull/801
- Fix const issue in the cpp header by @TonyXiang8787 in https://github.com/PowerGridModel/power-grid-model/pull/808
- UB update unknown id repro case by @mgovers in https://github.com/PowerGridModel/power-grid-model/pull/805
- BUG in test / Memory access violation in update test by @Jerry-Jinfeng-Guo in https://github.com/PowerGridModel/power-grid-model/pull/810
- Feature / Update Python validation to support optional
id
in update data by @Jerry-Jinfeng-Guo in https://github.com/PowerGridModel/power-grid-model/pull/793 - Feature/improve docs by @mgovers in https://github.com/PowerGridModel/power-grid-model/pull/807
- update input data optional ids modification by @nitbharambe in https://github.com/PowerGridModel/power-grid-model/pull/812
- Add branch power calculation explanation in docs by @nitbharambe in https://github.com/PowerGridModel/power-grid-model/pull/815
- fix error msg of validator by @nitbharambe in https://github.com/PowerGridModel/power-grid-model/pull/816
- Feature/resolve comments optional ids by @mgovers in https://github.com/PowerGridModel/power-grid-model/pull/818
- Optional IDs tests by @nitbharambe in https://github.com/PowerGridModel/power-grid-model/pull/817
- Feature / row based data optional id field support in update data by @Jerry-Jinfeng-Guo in https://github.com/PowerGridModel/power-grid-model/pull/813
- Feature / columnar data optional id field support in update data by @Jerry-Jinfeng-Guo in https://github.com/PowerGridModel/power-grid-model/pull/771
- Feature/support for optional IDs per component type by @figueroa1395 in https://github.com/PowerGridModel/power-grid-model/pull/819
- Remove compatibility convert for output by @nitbharambe in https://github.com/PowerGridModel/power-grid-model/pull/821
- Feature/Update documentation for optional update IDs by @figueroa1395 in https://github.com/PowerGridModel/power-grid-model/pull/814
- Throw error on wrong dtype by @mgovers in https://github.com/PowerGridModel/power-grid-model/pull/811
- Feature/private core module by @mgovers in https://github.com/PowerGridModel/power-grid-model/pull/787
- make validation core functions private by @mgovers in https://github.com/PowerGridModel/power-grid-model/pull/822
- Fix/Nightly build by @figueroa1395 in https://github.com/PowerGridModel/power-grid-model/pull/825
- Release/v1.10.x by @mgovers in https://github.com/PowerGridModel/power-grid-model/pull/823
New Contributors
- @PaulSchulz made their first contribution in https://github.com/PowerGridModel/power-grid-model/pull/709
- @scud-soptim made their first contribution in https://github.com/PowerGridModel/power-grid-model/pull/752
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.9.0...v1.10.0
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 6 months ago

Power Grid Model - v1.9.90
What's Changed
- Fix/Nightly build by @figueroa1395 in https://github.com/PowerGridModel/power-grid-model/pull/825
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.9.89...v1.9.90
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 6 months ago

Power Grid Model - v1.9.89
What's Changed
- Feature/Update documentation for optional update IDs by @figueroa1395 in https://github.com/PowerGridModel/power-grid-model/pull/814
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.9.88...v1.9.89
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 6 months ago

Power Grid Model - v1.9.88
What's Changed
- Feature/support for optional IDs per component type by @figueroa1395 in https://github.com/PowerGridModel/power-grid-model/pull/819
- Remove compatibility convert for output by @nitbharambe in https://github.com/PowerGridModel/power-grid-model/pull/821
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.9.87...v1.9.88
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 6 months ago

Power Grid Model - v1.9.87
What's Changed
- UB update unknown id repro case by @mgovers in https://github.com/PowerGridModel/power-grid-model/pull/805
- Feature / Update Python validation to support optional
id
in update data by @Jerry-Jinfeng-Guo in https://github.com/PowerGridModel/power-grid-model/pull/793 - update input data optional ids modification by @nitbharambe in https://github.com/PowerGridModel/power-grid-model/pull/812
- Feature/resolve comments optional ids by @mgovers in https://github.com/PowerGridModel/power-grid-model/pull/818
- Feature / row based data optional id field support in update data by @Jerry-Jinfeng-Guo in https://github.com/PowerGridModel/power-grid-model/pull/813
- Feature / columnar data optional id field support in update data by @Jerry-Jinfeng-Guo in https://github.com/PowerGridModel/power-grid-model/pull/771
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.9.86...v1.9.87
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 6 months ago

Power Grid Model - v1.9.86
What's Changed
- Optional IDs tests by @nitbharambe in https://github.com/PowerGridModel/power-grid-model/pull/817
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.9.85...v1.9.86
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 6 months ago

Power Grid Model - v1.9.85
What's Changed
- Add branch power calculation explanation in docs by @nitbharambe in https://github.com/PowerGridModel/power-grid-model/pull/815
- fix error msg of validator by @nitbharambe in https://github.com/PowerGridModel/power-grid-model/pull/816
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.9.84...v1.9.85
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 6 months ago

Power Grid Model - v1.9.84
What's Changed
- Feature/improve docs by @mgovers in https://github.com/PowerGridModel/power-grid-model/pull/807
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.9.83...v1.9.84
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 6 months ago

Power Grid Model - v1.9.83
What's Changed
- BUG / Memory access violation in buffer span of update data by @Jerry-Jinfeng-Guo in https://github.com/PowerGridModel/power-grid-model/pull/810
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.9.82...v1.9.83
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 6 months ago

Power Grid Model - v1.9.82
What's Changed
- Fix const issue in the cpp header by @TonyXiang8787 in https://github.com/PowerGridModel/power-grid-model/pull/808
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.9.81...v1.9.82
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 6 months ago

Power Grid Model - v1.9.81
What's Changed
- Feature - columnar performance docs by @mgovers in https://github.com/PowerGridModel/power-grid-model/pull/801
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.9.80...v1.9.81
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 6 months ago

Power Grid Model - v1.9.80
What's Changed
- Fix/missing validation of k for generic branch by @sudo-ac in https://github.com/PowerGridModel/power-grid-model/pull/804
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.9.79...v1.9.80
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 6 months ago

Power Grid Model - v1.9.79
What's Changed
- Bug / Fix error handling tests in API tests by @Jerry-Jinfeng-Guo in https://github.com/PowerGridModel/power-grid-model/pull/795
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.9.78...v1.9.79
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 6 months ago

Power Grid Model - v1.9.78
What's Changed
- improve C API documentation by @mgovers in https://github.com/PowerGridModel/power-grid-model/pull/799
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.9.77...v1.9.78
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 6 months ago

Power Grid Model - v1.9.77
What's Changed
- [Feature] - columnar data examples by @mgovers in https://github.com/PowerGridModel/power-grid-model/pull/785
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.9.76...v1.9.77
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 6 months ago

Power Grid Model - v1.9.76
What's Changed
- Build guide docs - build docs from local by @nitbharambe in https://github.com/PowerGridModel/power-grid-model/pull/789
- Columnar data docs - native data interface serialization by @nitbharambe in https://github.com/PowerGridModel/power-grid-model/pull/788
- Columnar data documentation (Terminology) by @nitbharambe in https://github.com/PowerGridModel/power-grid-model/pull/783
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.9.75...v1.9.76
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 6 months ago

Power Grid Model - v1.9.75
What's Changed
- BugFix / Capital enums made lower case by @Jerry-Jinfeng-Guo in https://github.com/PowerGridModel/power-grid-model/pull/792
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.9.74...v1.9.75
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 6 months ago

Power Grid Model - v1.9.74
What's Changed
- Bug/Fix feedstock mac by @figueroa1395 in https://github.com/PowerGridModel/power-grid-model/pull/790
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.9.73...v1.9.74
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 6 months ago

Power Grid Model - v1.9.73
What's Changed
- [Feature] columnar data Python API docs by @mgovers in https://github.com/PowerGridModel/power-grid-model/pull/781
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.9.72...v1.9.73
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 7 months ago

Power Grid Model - v1.9.72
What's Changed
- Improvement/Integration tests for columnar data by @figueroa1395 in https://github.com/PowerGridModel/power-grid-model/pull/778
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.9.71...v1.9.72
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 7 months ago

Power Grid Model - v1.9.71
What's Changed
- Bump pypa/cibuildwheel from 2.21.2 to 2.21.3 by @dependabot in https://github.com/PowerGridModel/power-grid-model/pull/782
- Add dtype compatibility check by @nitbharambe in https://github.com/PowerGridModel/power-grid-model/pull/776
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.9.70...v1.9.71
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 7 months ago

Power Grid Model - v1.9.70
What's Changed
- Remove sphinx workaround by @mgovers in https://github.com/PowerGridModel/power-grid-model/pull/780
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.9.69...v1.9.70
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 7 months ago

Power Grid Model - v1.9.69
What's Changed
- auto tap validation test for meshed grid with transformers by @mgovers in https://github.com/PowerGridModel/power-grid-model/pull/777
- Bug/Convert to/form row/col util function by @figueroa1395 in https://github.com/PowerGridModel/power-grid-model/pull/779
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.9.68...v1.9.69
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 7 months ago

Power Grid Model - v1.9.68
What's Changed
- Fix Nightly Clang-Tidy run by @mgovers in https://github.com/PowerGridModel/power-grid-model/pull/775
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.9.67...v1.9.68
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 7 months ago

Power Grid Model - v1.9.67
What's Changed
- Bump actions ubuntu 24.04 by @figueroa1395 in https://github.com/PowerGridModel/power-grid-model/pull/770
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.9.66...v1.9.67
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 7 months ago

Power Grid Model - v1.9.66
What's Changed
- Repro case for buffer alignment by @mgovers in https://github.com/PowerGridModel/power-grid-model/pull/769
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.9.65...v1.9.66
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 7 months ago

Power Grid Model - v1.9.65
What's Changed
- Bug/Fix columnar batch validation function by @figueroa1395 in https://github.com/PowerGridModel/power-grid-model/pull/768
- Feature/Add utils to Cpp wrapper by @figueroa1395 in https://github.com/PowerGridModel/power-grid-model/pull/767
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.9.64...v1.9.65
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 7 months ago

Power Grid Model - v1.9.64
What's Changed
- columnar data batch list conversion by @nitbharambe in https://github.com/PowerGridModel/power-grid-model/pull/760
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.9.63...v1.9.64
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 7 months ago

Power Grid Model - v1.9.63
What's Changed
- create generic_branch #729 by @sudo-ac in https://github.com/PowerGridModel/power-grid-model/pull/752
New Contributors
- @sudo-ac made their first contribution in https://github.com/PowerGridModel/power-grid-model/pull/752
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.9.62...v1.9.63
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 7 months ago

Power Grid Model - v1.9.62
What's Changed
- Feature/Re route validation tests by @figueroa1395 in https://github.com/PowerGridModel/power-grid-model/pull/718
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.9.61...v1.9.62
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 7 months ago

Power Grid Model - v1.9.61
What's Changed
- move datasetype from dataset to _utils by @nitbharambe in https://github.com/PowerGridModel/power-grid-model/pull/761
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.9.60...v1.9.61
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 7 months ago

Power Grid Model - v1.9.60
What's Changed
- Bump pypa/cibuildwheel from 2.21.1 to 2.21.2 by @dependabot in https://github.com/PowerGridModel/power-grid-model/pull/763
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.9.59...v1.9.60
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 7 months ago

Power Grid Model - v1.9.59
What's Changed
- Feature / deserialization data filter relevant logic in place by @Jerry-Jinfeng-Guo in https://github.com/PowerGridModel/power-grid-model/pull/758
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.9.58...v1.9.59
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 7 months ago

Power Grid Model - v1.9.58
What's Changed
- remove experimental flag on columnar output by @mgovers in https://github.com/PowerGridModel/power-grid-model/pull/759
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.9.57...v1.9.58
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 7 months ago

Power Grid Model - v1.9.57
What's Changed
- Add numpy to mypy check by @mgovers in https://github.com/PowerGridModel/power-grid-model/pull/753
- add component attribute filter options to init by @mgovers in https://github.com/PowerGridModel/power-grid-model/pull/757
- Feature/columnar dataset python extension by @mgovers in https://github.com/PowerGridModel/power-grid-model/pull/699
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.9.56...v1.9.57
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 7 months ago

Power Grid Model - v1.9.56
What's Changed
- Feature/Update reuse by @figueroa1395 in https://github.com/PowerGridModel/power-grid-model/pull/754
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.9.55...v1.9.56
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 7 months ago

Power Grid Model - v1.9.55
What's Changed
- Feature / Add enum options to deserialize relevant attributes by @Jerry-Jinfeng-Guo in https://github.com/PowerGridModel/power-grid-model/pull/746
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.9.54...v1.9.55
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 7 months ago

Power Grid Model - v1.9.54
What's Changed
- add check code quality + citations to nightly by @mgovers in https://github.com/PowerGridModel/power-grid-model/pull/750
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.9.53...v1.9.54
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 7 months ago

Power Grid Model - v1.9.53
What's Changed
- Remove static functions in CPP wrapper by @TonyXiang8787 in https://github.com/PowerGridModel/power-grid-model/pull/747
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.9.52...v1.9.53
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 7 months ago

Power Grid Model - v1.9.52
What's Changed
- Update README.md by @mgovers in https://github.com/PowerGridModel/power-grid-model/pull/745
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.9.51...v1.9.52
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 7 months ago

Power Grid Model - v1.9.51
What's Changed
- Feature/full clang tidy by @mgovers in https://github.com/PowerGridModel/power-grid-model/pull/744
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.9.50...v1.9.51
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 7 months ago

Power Grid Model - v1.9.50
What's Changed
- Feature/nightly part 2 by @mgovers in https://github.com/PowerGridModel/power-grid-model/pull/742
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.9.49...v1.9.50
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 7 months ago

Power Grid Model - v1.9.49
What's Changed
- remove not-needed handle creation in meta data by @TonyXiang8787 in https://github.com/PowerGridModel/power-grid-model/pull/743
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.9.48...v1.9.49
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 7 months ago

Power Grid Model - v1.9.48
What's Changed
- Improve C and CPP API target structure by @TonyXiang8787 in https://github.com/PowerGridModel/power-grid-model/pull/741
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.9.47...v1.9.48
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 7 months ago

Power Grid Model - v1.9.47
What's Changed
- Feature/add nightly by @mgovers in https://github.com/PowerGridModel/power-grid-model/pull/736
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.9.46...v1.9.47
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 7 months ago

Power Grid Model - v1.9.46
What's Changed
- improve user build guide by @TonyXiang8787 in https://github.com/PowerGridModel/power-grid-model/pull/737
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.9.45...v1.9.46
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 7 months ago

Power Grid Model - v1.9.45
What's Changed
- Feature/Update validation for columnar by @figueroa1395 in https://github.com/PowerGridModel/power-grid-model/pull/734
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.9.44...v1.9.45
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 7 months ago

Power Grid Model - v1.9.44
What's Changed
- MutableDataset to ConstDataset for columnar data by @nitbharambe in https://github.com/PowerGridModel/power-grid-model/pull/732
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.9.43...v1.9.44
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 7 months ago

Power Grid Model - v1.9.43
What's Changed
- Bump pypa/cibuildwheel from 2.21.0 to 2.21.1 by @dependabot in https://github.com/PowerGridModel/power-grid-model/pull/728
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.9.42...v1.9.43
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 7 months ago

Power Grid Model - v1.9.42
What's Changed
- fix quick start by @TonyXiang8787 in https://github.com/PowerGridModel/power-grid-model/pull/724
- Renew build guide by @TonyXiang8787 in https://github.com/PowerGridModel/power-grid-model/pull/725
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.9.41...v1.9.42
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 7 months ago

Power Grid Model - v1.9.41
What's Changed
- Feature / Columnar data C API by @Jerry-Jinfeng-Guo in https://github.com/PowerGridModel/power-grid-model/pull/711
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.9.40...v1.9.41
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 7 months ago

Power Grid Model - v1.9.40
What's Changed
- Bump pypa/cibuildwheel from 2.20.0 to 2.21.0 by @dependabot in https://github.com/PowerGridModel/power-grid-model/pull/721
- Feature / Rename API tests by @Jerry-Jinfeng-Guo in https://github.com/PowerGridModel/power-grid-model/pull/719
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.9.39...v1.9.40
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 7 months ago

Power Grid Model - v1.9.39
What's Changed
- Feature / Add columnar data support in main model by @Jerry-Jinfeng-Guo in https://github.com/PowerGridModel/power-grid-model/pull/712
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.9.38...v1.9.39
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 8 months ago

Power Grid Model - v1.9.38
What's Changed
- more efficient columnar deserialization by @mgovers in https://github.com/PowerGridModel/power-grid-model/pull/716
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.9.37...v1.9.38
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 8 months ago

Power Grid Model - v1.9.37
What's Changed
- Allow python 3.13 by @TonyXiang8787 in https://github.com/PowerGridModel/power-grid-model/pull/713
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.9.36...v1.9.37
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 8 months ago

Power Grid Model - v1.9.36
What's Changed
- columnar data python api serialization by @nitbharambe in https://github.com/PowerGridModel/power-grid-model/pull/687
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.9.35...v1.9.36
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 8 months ago

Power Grid Model - v1.9.35
What's Changed
- Feature/columnar data serialization by @mgovers in https://github.com/PowerGridModel/power-grid-model/pull/708
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.9.34...v1.9.35
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 8 months ago

Power Grid Model - v1.9.34
What's Changed
- Refactor data filter functionality by @nitbharambe in https://github.com/PowerGridModel/power-grid-model/pull/704
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.9.33...v1.9.34
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 8 months ago

Power Grid Model - v1.9.33
What's Changed
- Feature/cpp api tests by @figueroa1395 in https://github.com/PowerGridModel/power-grid-model/pull/707
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.9.32...v1.9.33
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 8 months ago

Power Grid Model - v1.9.32
What's Changed
- Feature/C++ header only wrapper for C API by @figueroa1395 in https://github.com/PowerGridModel/power-grid-model/pull/688
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.9.31...v1.9.32
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 8 months ago

Power Grid Model - v1.9.31
What's Changed
- Update quickstart.md by @PaulSchulz in https://github.com/PowerGridModel/power-grid-model/pull/709
New Contributors
- @PaulSchulz made their first contribution in https://github.com/PowerGridModel/power-grid-model/pull/709
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.9.30...v1.9.31
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 8 months ago

Power Grid Model - v1.9.30
What's Changed
- BugFix / Handle access violation to unconnected-regulated transformers by @Jerry-Jinfeng-Guo in https://github.com/PowerGridModel/power-grid-model/pull/703
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.9.29...v1.9.30
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 8 months ago

Power Grid Model - v1.9.29
What's Changed
- [BUG] data filter of list to not crash by @nitbharambe in https://github.com/PowerGridModel/power-grid-model/pull/705
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.9.28...v1.9.29
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 8 months ago

Power Grid Model - v1.9.28
What's Changed
- Use black-jupyter in pre-commit by @nitbharambe in https://github.com/PowerGridModel/power-grid-model/pull/700
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.9.27...v1.9.28
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 8 months ago

Power Grid Model - v1.9.27
What's Changed
- license for py.typed by @mgovers in https://github.com/PowerGridModel/power-grid-model/pull/701
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.9.26...v1.9.27
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 8 months ago

Power Grid Model - v1.9.26
What's Changed
- add columnar data to data types (but don't use yet) by @mgovers in https://github.com/PowerGridModel/power-grid-model/pull/663
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.9.25...v1.9.26
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 8 months ago

Power Grid Model - v1.9.25
What's Changed
- Feature/enable mypy for users by @mgovers in https://github.com/PowerGridModel/power-grid-model/pull/697
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.9.24...v1.9.25
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 8 months ago

Power Grid Model - v1.9.24
What's Changed
- fix compiler flag with new setuptools by @TonyXiang8787 in https://github.com/PowerGridModel/power-grid-model/pull/694
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.9.23...v1.9.24
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 9 months ago

Power Grid Model - v1.9.23
What's Changed
- Refactor meta data generator to remove lambda hack by @TonyXiang8787 in https://github.com/PowerGridModel/power-grid-model/pull/693
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.9.22...v1.9.23
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 9 months ago

Power Grid Model - v1.9.22
What's Changed
- Implementation of TypeVar in more scripts by @zhen0427 in https://github.com/PowerGridModel/power-grid-model/pull/685
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.9.21...v1.9.22
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 9 months ago

Power Grid Model - v1.9.21
What's Changed
- Path changes to cmake files by @Laurynas-Jagutis in https://github.com/PowerGridModel/power-grid-model/pull/689
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.9.20...v1.9.21
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 9 months ago

Power Grid Model - v1.9.20
What's Changed
- Bugfix/dont crash on invalid homogeneous batch dataset by @mgovers in https://github.com/PowerGridModel/power-grid-model/pull/690
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.9.19...v1.9.20
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 9 months ago

Power Grid Model - v1.9.19
What's Changed
- Remove unused alias topology by @nitbharambe in https://github.com/PowerGridModel/power-grid-model/pull/686
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.9.18...v1.9.19
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 9 months ago

Power Grid Model - v1.9.18
What's Changed
- remove erroneously added unused and test logic after #668 by @mgovers in https://github.com/PowerGridModel/power-grid-model/pull/684
- Feature/calculation type options in tests by @mgovers in https://github.com/PowerGridModel/power-grid-model/pull/682
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.9.17...v1.9.18
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 9 months ago

Power Grid Model - v1.9.17
What's Changed
- Feature/columnar dataset by @mgovers in https://github.com/PowerGridModel/power-grid-model/pull/678
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.9.16...v1.9.17
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 9 months ago

Power Grid Model - v1.9.16
What's Changed
- Bump pypa/cibuildwheel from 2.19.2 to 2.20.0 by @dependabot in https://github.com/PowerGridModel/power-grid-model/pull/683
- Feature / Binary search in Automatic Tap Changer by @Jerry-Jinfeng-Guo in https://github.com/PowerGridModel/power-grid-model/pull/668
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.9.15...v1.9.16
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 9 months ago

Power Grid Model - v1.9.15
What's Changed
- Feature/calculation type in options by @mgovers in https://github.com/PowerGridModel/power-grid-model/pull/681
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.9.14...v1.9.15
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 9 months ago

Power Grid Model - v1.9.14
What's Changed
- Add type hinting in python API by @zhen0427 in https://github.com/PowerGridModel/power-grid-model/pull/680
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.9.13...v1.9.14
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 9 months ago

Power Grid Model - v1.9.13
What's Changed
- [FEATURE] Numerically stable source injection in power flow. by @figueroa1395 in https://github.com/PowerGridModel/power-grid-model/pull/666
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.9.12...v1.9.13
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 9 months ago

Power Grid Model - v1.9.12
What's Changed
- Columnar data Python API step 2 by @nitbharambe in https://github.com/PowerGridModel/power-grid-model/pull/676
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.9.11...v1.9.12
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 9 months ago

Power Grid Model - v1.9.11
What's Changed
- Clearify the reference direction of branch and branch3 by @zhen0427 in https://github.com/PowerGridModel/power-grid-model/pull/679
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.9.10...v1.9.11
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 9 months ago

Power Grid Model - v1.9.10
What's Changed
- Feature/test row based dataset by @mgovers in https://github.com/PowerGridModel/power-grid-model/pull/675
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.9.9...v1.9.10
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 10 months ago

Power Grid Model - v1.9.9
What's Changed
- [FEATURE] Add simple self_test to Python API by @zhen0427 in https://github.com/PowerGridModel/power-grid-model/pull/674
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.9.8...v1.9.9
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 10 months ago

Power Grid Model - v1.9.8
What's Changed
- Feature/main model wrapper by @mgovers in https://github.com/PowerGridModel/power-grid-model/pull/660
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.9.7...v1.9.8
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 10 months ago

Power Grid Model - v1.9.7
What's Changed
- Rectify source documentation by @nitbharambe in https://github.com/PowerGridModel/power-grid-model/pull/673
- Drop python 3.9 by @Jerry-Jinfeng-Guo in https://github.com/PowerGridModel/power-grid-model/pull/638
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.9.6...v1.9.7
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 10 months ago

Power Grid Model - v1.9.6
What's Changed
- [BUG] Fix source param calculation by @nitbharambe in https://github.com/PowerGridModel/power-grid-model/pull/672
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.9.5...v1.9.6
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 10 months ago

Power Grid Model - v1.9.5
What's Changed
- fix also support empty trafo list in validation by @mgovers in https://github.com/PowerGridModel/power-grid-model/pull/671
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.9.4...v1.9.5
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 10 months ago

Power Grid Model - v1.9.4
What's Changed
- fix #669 transformer tap regulator without other transformer type in data by @mgovers in https://github.com/PowerGridModel/power-grid-model/pull/670
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.9.3...v1.9.4
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 10 months ago

Power Grid Model - v1.9.3
What's Changed
- Feature/Added missing metaclass by @figueroa1395 in https://github.com/PowerGridModel/power-grid-model/pull/667
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.9.2...v1.9.3
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 10 months ago

Power Grid Model - v1.9.2
What's Changed
- Bump fsfe/reuse-action from 3 to 4 by @dependabot in https://github.com/PowerGridModel/power-grid-model/pull/665
- Bump pypa/cibuildwheel from 2.19.1 to 2.19.2 by @dependabot in https://github.com/PowerGridModel/power-grid-model/pull/664
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.9.1...v1.9.2
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 10 months ago

Power Grid Model - v1.9.1
What's Changed
- [Feature] Check generated code by @figueroa1395 in https://github.com/PowerGridModel/power-grid-model/pull/658
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.9.0...v1.9.1
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 10 months ago

Power Grid Model - v1.9.0
Highlights
- ✅ The tap position is now optional (see the documentation).
- ✅ Enums for dataset and component types have been added (see https://github.com/PowerGridModel/power-grid-model/issues/613)
- 💥 The floating point error messages are now more precise (see #649).
Notes
- Users may (or may not) experience linter warnings (mypy, pylance, etc.) if mixing Literal string types with Component and Dataset types.
What's Changed
- Bump pypa/cibuildwheel from 2.18.1 to 2.19.1 by @dependabot in https://github.com/PowerGridModel/power-grid-model/pull/643
- Make tap_pos optional by @petersalemink95 in https://github.com/PowerGridModel/power-grid-model/pull/621
- Added missing component in config file by @figueroa1395 in https://github.com/PowerGridModel/power-grid-model/pull/647
- Feature/minimum degree topology by @mgovers in https://github.com/PowerGridModel/power-grid-model/pull/440
- Use YBus to calculate source injection in power flow by @TonyXiang8787 in https://github.com/PowerGridModel/power-grid-model/pull/644
- Feature/improve and test floating points in exception message by @mgovers in https://github.com/PowerGridModel/power-grid-model/pull/649
- Update test_serialization.cpp by @mgovers in https://github.com/PowerGridModel/power-grid-model/pull/650
- Feature / Revisit transformer ranking and fix multi-source issue by @Jerry-Jinfeng-Guo in https://github.com/PowerGridModel/power-grid-model/pull/652
- fixed the broken link by @Jerry-Jinfeng-Guo in https://github.com/PowerGridModel/power-grid-model/pull/653
- Bump SonarSource/sonarcloud-github-c-cpp from 2 to 3 by @dependabot in https://github.com/PowerGridModel/power-grid-model/pull/656
- Feature/metadata datatypes by @figueroa1395 in https://github.com/PowerGridModel/power-grid-model/pull/648
New Contributors
- @figueroa1395 made their first contribution in https://github.com/PowerGridModel/power-grid-model/pull/647
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.8.0...v1.9.0
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 10 months ago

Power Grid Model - v1.8.10
What's Changed
- Bump SonarSource/sonarcloud-github-c-cpp from 2 to 3 by @dependabot in https://github.com/PowerGridModel/power-grid-model/pull/656
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.8.9...v1.8.10
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 10 months ago

Power Grid Model - v1.8.9
What's Changed
- fixed the broken link by @Jerry-Jinfeng-Guo in https://github.com/PowerGridModel/power-grid-model/pull/653
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.8.8...v1.8.9
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 10 months ago

Power Grid Model - v1.8.8
What's Changed
- Feature / Revisit transformer ranking and fix multi-source issue by @Jerry-Jinfeng-Guo in https://github.com/PowerGridModel/power-grid-model/pull/652
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.8.7...v1.8.8
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 10 months ago

Power Grid Model - v1.8.7
What's Changed
- Update test_serialization.cpp by @mgovers in https://github.com/PowerGridModel/power-grid-model/pull/650
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.8.6...v1.8.7
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 10 months ago

Power Grid Model - v1.8.6
What's Changed
- Feature/improve and test floating points in exception message by @mgovers in https://github.com/PowerGridModel/power-grid-model/pull/649
Full Changelog: https://github.com/PowerGridModel/power-grid-model/compare/v1.8.5...v1.8.6
Energy Systems - Grid Analysis and Planning
- C++
Published by github-actions[bot] 10 months ago
