solarforecastarbiter.datamodel.FixedTiltModelingParameters

class solarforecastarbiter.datamodel.FixedTiltModelingParameters(ac_capacity: float, dc_capacity: float, temperature_coefficient: float, dc_loss_factor: float, ac_loss_factor: float, surface_tilt: float, surface_azimuth: float, tracking_type: str = 'fixed')[source]

A class based on PVModelingParameters that has additional parameters for fixed tilt PV systems.

Parameters:
  • surface_tilt (float) – Tilt from horizontal of a fixed tilt system, degrees
  • surface_azimuth (float) – Azimuth angle of a fixed tilt system, degrees East of North
__init__(ac_capacity: float, dc_capacity: float, temperature_coefficient: float, dc_loss_factor: float, ac_loss_factor: float, surface_tilt: float, surface_azimuth: float, tracking_type: str = 'fixed') → None

Methods

__init__(ac_capacity, dc_capacity, …)
from_dict(input_dict[, raise_on_extra]) Construct a dataclass from the given dict, matching keys with the class fields.
replace(**kwargs) Convience wrapper for dataclasses.replace() to create a new dataclasses from the old with the given keys replaced.
to_dict() Convert the dataclass into a dictionary suitable for uploading to the API.

Attributes

tracking_type