diff --git a/CHANGELOG.md b/CHANGELOG.md index 8ce3dfdc3..a7593a97d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed - Updated dependabot workflow and added CODEOWNERS [#1328](https://github.com/ie3-institute/PowerSystemDataModel/issues/1328) +- Extend azimuth angle range to [-180°, 180°] for PV inputs [#1330](https://github.com/ie3-institute/PowerSystemDataModel/issues/1330) ## [7.0.0] - 2025-05-08 diff --git a/docs/readthedocs/models/input/participant/pv.md b/docs/readthedocs/models/input/participant/pv.md index db954e852..ffa2db4e5 100644 --- a/docs/readthedocs/models/input/participant/pv.md +++ b/docs/readthedocs/models/input/participant/pv.md @@ -44,8 +44,7 @@ Detailed model of a photovoltaic power plant. * - azimuth - ° - - Inclination in a compass direction - South = 0°, West = 90°, East = -90° + - South = 0°, West = 90°, East = -90°, North = +/- 180° * - etaConv - % diff --git a/src/main/java/edu/ie3/datamodel/utils/validation/SystemParticipantValidationUtils.java b/src/main/java/edu/ie3/datamodel/utils/validation/SystemParticipantValidationUtils.java index 790bca28b..c68db81f1 100644 --- a/src/main/java/edu/ie3/datamodel/utils/validation/SystemParticipantValidationUtils.java +++ b/src/main/java/edu/ie3/datamodel/utils/validation/SystemParticipantValidationUtils.java @@ -393,7 +393,7 @@ private static List> checkLoad(LoadInput loadI *