From 6282433e84b1716726c745da4202910856571174 Mon Sep 17 00:00:00 2001 From: Javier Lopez Lorente Date: Tue, 28 Jul 2026 11:17:18 +0200 Subject: [PATCH] Update use of PVsystem tracker max rotation angle in docs --- docs/getting-started/quick-start-examples.md | 2 +- docs/getting-started/workflow-2-pvplant-builder.md | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/getting-started/quick-start-examples.md b/docs/getting-started/quick-start-examples.md index ffe9e25..9358ade 100644 --- a/docs/getting-started/quick-start-examples.md +++ b/docs/getting-started/quick-start-examples.md @@ -254,7 +254,7 @@ def create_plant(mounting_type: str) -> PVSystem: plant.tilt = 35.0 # Optimal for this latitude plant.gcr = 0.35 else: # Tracker - plant.tilt = 60.0 # Max rotation angle + plant.tracker_max_rotation_angle = 60.0 # Max rotation angle plant.gcr = 0.3 # Trackers need wider spacing plant.add_pan_files({"Module": Path("data/module.PAN")}) diff --git a/docs/getting-started/workflow-2-pvplant-builder.md b/docs/getting-started/workflow-2-pvplant-builder.md index 88fb353..b9f8a5f 100644 --- a/docs/getting-started/workflow-2-pvplant-builder.md +++ b/docs/getting-started/workflow-2-pvplant-builder.md @@ -328,7 +328,8 @@ plant_loaded.run_energy_calculation(project_id="modified_design", api_key=api_ke | Parameter | Meaning | Example | |---|---|---| | `gcr` | Ground coverage ratio (area occupied / total area) | 0.4 = 40% | -| `tilt` | Array angle from horizontal. Used for maximum rotation angle for tracker systems. | 25° | +| `tilt` | Array angle from horizontal (for fixed-tilt mounting only) | 25° | +| `tracker_max_rotation_angle` | Maximum rotation angle for tracker systems | 60° | | `azimuth` | Direction array faces (0=N, 90=E, 180=S, 270=W) | 180 = South | | `mounting` | Fixed-tilt or single-axis tracker systems | "Fixed" or "Tracker" | | `inverter_type` | Central (single large) or String (multiple small) | "Central" |