> ## Documentation Index
> Fetch the complete documentation index at: https://docs.plantpredict.com/llms.txt
> Use this file to discover all available pages before exploring further.

# DC Aggregation and DC-AC Conversion Overview

export const MPP = () => <Tooltip tip="Maximum Power Point: operating point on the I-V curve where power output is maximized.">
    MPP
  </Tooltip>;

export const Clipping = () => <Tooltip tip="Condition where DC power exceeds the inverter's rated AC capacity; the inverter moves off the maximum power point to limit output.">
    clipping
  </Tooltip>;

export const LeTID = () => <Tooltip tip="Light and Elevated Temperature Induced Degradation: partially reversible efficiency loss from carrier-induced defects at elevated temperatures.">
    LeTID
  </Tooltip>;

export const IV = () => <Tooltip tip="Current-voltage characteristic of a PV cell or module; the operating point on this curve determines power output.">
    I-V
  </Tooltip>;

export const Inverter = () => <Tooltip tip="Power electronics device that sets the operating point on the DC array's I-V curve and converts DC to AC for grid injection.">
    inverter
  </Tooltip>;

This stage covers the aggregation of multiple DC fields to a common operating point, DC-applied degradation, and the conversion of DC power into AC power at the <Inverter /> terminals. It accounts for inverter operating constraints, temperature derating, and conversion efficiency losses.

## Models in This Section

### [DC Field Aggregation](dc_field_aggregation)

Calculates the combined DC input when multiple DC fields with different <IV /> characteristics connect in parallel to a common inverter. Uses weighted voltage averaging to determine the shared operating voltage, then recalculates each field's current contribution at that voltage. The resulting power may be less than the sum of individual maximum powers due to mismatch between fields.

### [Degradation Losses (DC Applied)](degradation_dc_applied)

Applies time-dependent degradation to the aggregated DC power before inverter operating region determination. Supports constant-rate (Linear DC), variable per-year (Non-Linear DC), and supplemental <LeTID /> mechanisms. Because degradation is applied before the inverter determines its operating point, it directly affects <Clipping /> behavior.

### [Inverter Temperature Derating](inverter_temperature_derating)

Reduces inverter AC capacity based on ambient temperature and site elevation using manufacturer kVA curves. The derated capacity establishes the maximum AC power output for subsequent calculations.

### [Inverter Operating Regions](inverter_operating_regions)

Classifies inverter state into 12 regions based on DC voltage and power relative to specifications. Determines whether the inverter performs <MPP /> tracking, clipping, voltage adjustment, or shutdown.

### [Inverter Efficiency](inverter_efficiency)

Calculates conversion efficiency from manufacturer-supplied curves:

* **Legacy Model (V3-10)**: Bilinear interpolation with DC power input
* **Sandia Model (V11+)**: Polynomial curve fitting with AC power output

## Calculation Sequence

1. **DC Field Aggregation**: Combine DC power from multiple fields at common operating voltage
2. **Degradation (DC Applied)**: Apply time-dependent degradation to aggregated DC power
3. **Temperature Derating**: Determine temperature-corrected maximum AC power capacity
4. **Operating Region**: Classify inverter state based on DC voltage, power, and temperature-corrected AC power capacity
5. **MPPT/Clipping/Voltage Adjustment/Shutdown**: Track maximum power point, limit output to rated capacity, adjust voltage to MPPT window, or shut down
6. **Efficiency**: Calculate DC-to-AC conversion efficiency from curves
7. **AC Output**: Apply efficiency to determine final AC power
