Download OpenAPI specification:Download
plant_id required | integer (Plant Id) |
eval_start | string <date-time> (Eval Start) |
eval_end | string <date-time> (Eval End) |
token required | string (Token) |
{- "nan_report": {
- "property1": "string",
- "property2": "string"
}
}
id required | integer (Id) |
required | integer or string (Plant Id) |
eval_start | string <date-time> (Eval Start) |
eval_end | string <date-time> (Eval End) |
token required | string (Token) |
null
Ingests csv files to database. For details, see docstring of the data_uploader
module.
plant_id : A pre-configured plant with this name must exist in the database. files : list List of csv files that are batch ingested. datetime_template : DatetimeTemplates Templates to simplify the definition of a datetime format. Overridden by datetime_format (if not None). datetime_format : str Used to parse datetimes from csv file. Leave to None infers the format. timezone : str or pytz.timezone. Optional. To be provided if timestamps in the data have no time zone information. csv_separator : str Used in pd.read_csv as 'sep' kwarg csv_decimal : str Used in pd.read_csv as 'decimal' kwarg csv_encoding : str Used in pd.read_csv as 'encoding' kwarg index_col : int DataUploader will try to parse timestamps from this column. response : fastapi.Response sess : sqlalchemy.orm.Session crd : api.dependencies.crud
upload_response : DataUploadResponse
ConnectionError HTTPException
plant_id required | integer (Plant Id) |
datetime_template | any (DatetimeTemplates) Enum: "year_month_day" "day_month_year" "month_day_year" An enumeration. |
datetime_format | string (Datetime Format) |
timezone | string (Timezone) |
csv_separator | string (Csv Separator) Default: ";" |
csv_decimal | string (Csv Decimal) Default: "." |
csv_encoding | string (Csv Encoding) Default: "utf-8" |
index_col | integer (Index Col) Default: 0 |
token required | string (Token) |
files required | Array of strings <binary> (Files) |
{- "n_uploaded_data_rows": 0,
- "n_duplicates_index": 0,
- "response_per_file": [
- {
- "name": "string",
- "exists": true,
- "size_bytes": 0,
- "missing_columns": [ ],
- "error_cause": "string",
- "status": "string",
- "date_of_upload": "2019-08-24T14:15:22Z",
- "start": "2019-08-24T14:15:22Z",
- "end": "2019-08-24T14:15:22Z",
- "n_rows": 0,
- "id": 0
}
], - "db_response": { }
}
Ingests csv files to database. For details, see docstring of the data_uploader
module.
plant_id : A pre-configured plant with this name must exist in the database. files : list List of csv files that are batch ingested. csv_separator : str Used in pd.read_csv as 'sep' kwarg csv_decimal : str Used in pd.read_csv as 'decimal' kwarg csv_encoding : str Used in pd.read_csv as 'encoding' kwarg index_col : int DataUploader will try to parse timestamps from this column. datetime_template : DatetimeTemplates Templates to simplify the definition of a datetime format. Overridden by datetime_format (if not None). datetime_format : str Used to parse timestamps from csv file. Leave to None infers the format. timezone : str or pytz.timezone. Optional. To be provided if timestamps in the data have no time zone information. response : fastapi.Response sess : sqlalchemy.orm.Session crd : api.dependencies.crud
upload_response : DataColumnsResponse
ConnectionError HTTPException
plant_id required | integer (Plant Id) |
csv_separator | string (Csv Separator) Default: ";" |
csv_decimal | string (Csv Decimal) Default: "." |
csv_encoding | string (Csv Encoding) Default: "utf-8" |
index_col | integer (Index Col) Default: 0 |
datetime_template | any (DatetimeTemplates) Enum: "year_month_day" "day_month_year" "month_day_year" An enumeration. |
datetime_format | string (Datetime Format) |
timezone | string (Timezone) |
token required | string (Token) |
files required | Array of strings <binary> (Files) |
{- "sensors": [
- "string"
], - "dtypes": [
- "string"
], - "index": "string",
- "settings": {
- "csv_separator": "string",
- "csv_decimal": "string",
- "csv_encoding": "string",
- "index_col": 0,
- "datetime_template": "string",
- "datetime_format": "string",
- "timezone": "string"
}, - "data": { }
}
Ingests csv files to database. For details, see docstring of the data_uploader
module.
plant_id : A pre-configured plant with this name must exist in the database. files : list List of csv files that are batch ingested. csv_separator : str Used in pd.read_csv as 'sep' kwarg csv_decimal : str Used in pd.read_csv as 'decimal' kwarg csv_encoding : str Used in pd.read_csv as 'encoding' kwarg index_col : int DataUploader will try to parse timestamps from this column. datetime_template : DatetimeTemplates Templates to simplify the definition of a datetime format. Overridden by datetime_format (if not None). datetime_format : str Used to parse timestamps from csv file. Leave to None infers the format. timezone : str or pytz.timezone. Optional. To be provided if timestamps in the data have no time zone information. response : fastapi.Response sess : sqlalchemy.orm.Session crd : api.dependencies.crud
upload_response : DataColumnsResponse
ConnectionError HTTPException
plant_id required | integer (Plant Id) |
csv_separator | string (Csv Separator) Default: ";" |
csv_decimal | string (Csv Decimal) Default: "." |
csv_encoding | string (Csv Encoding) Default: "utf-8" |
index_col | integer (Index Col) Default: 0 |
datetime_template | any (DatetimeTemplates) Enum: "year_month_day" "day_month_year" "month_day_year" An enumeration. |
datetime_format | string (Datetime Format) |
timezone | string (Timezone) |
token required | string (Token) |
files required | Array of strings <binary> (Files) |
{- "sensors": [
- "string"
], - "dtypes": [
- "string"
], - "index": "string",
- "settings": {
- "csv_separator": "string",
- "csv_decimal": "string",
- "csv_encoding": "string",
- "index_col": 0,
- "datetime_template": "string",
- "datetime_format": "string",
- "timezone": "string"
}, - "data": { }
}
plant_id required | integer (Plant Id) |
token required | string (Token) |
[- {
- "name": "string",
- "exists": true,
- "size_bytes": 0,
- "missing_columns": [ ],
- "error_cause": "string",
- "status": "string",
- "date_of_upload": "2019-08-24T14:15:22Z",
- "start": "2019-08-24T14:15:22Z",
- "end": "2019-08-24T14:15:22Z",
- "n_rows": 0,
- "id": 0
}
]
Runs the PC Method for the specified dates range
plant_id required | integer (Plant Id) |
method | string (PCMethods) Enum: "ISO" "extended" An enumeration. |
formula | integer (PCFormulae) Enum: 1 2 3 An enumeration. |
eval_start | string <date-time> (Eval Start) |
eval_end | string <date-time> (Eval End) |
ignore_wind | boolean (Ignore Wind) |
safety_pipes | number (Safety Pipes) |
safety_uncertainty | number (Safety Uncertainty) |
safety_others | number (Safety Others) |
token required | string (Token) |
{- "id": 0,
- "plant": {
- "name": "string",
- "owner": "string",
- "operator": "string",
- "description": "string",
- "location_name": "string",
- "latitude": {
- "magnitude": 0,
- "units": "string"
}, - "longitude": {
- "magnitude": 0,
- "units": "string"
}, - "elevation": {
- "magnitude": 0,
- "units": "string"
}, - "id": 0,
- "virtuals_calculation_uptodate": true
}, - "datetime_eval_start": "2019-08-24T14:15:22Z",
- "datetime_eval_end": "2019-08-24T14:15:22Z",
- "pc_method_name": "string",
- "evaluation_mode": "string",
- "formula": 0,
- "wind_used": true,
- "settings": { },
- "plant_output": {
- "id": 0,
- "plant": {
- "sensor_map": {
- "property1": "string",
- "property2": "string"
}, - "latitude": {
- "magnitude": 0,
- "units": "string"
}, - "longitude": {
- "magnitude": 0,
- "units": "string"
}, - "owner": "string",
- "operator": "string",
- "description": "string",
- "location_name": "string",
- "elevation": {
- "magnitude": 0,
- "units": "string"
}, - "fluid_solar": {
- "name": "string",
- "fluid": "string",
- "concentration": {
- "magnitude": 0,
- "units": "string"
}
}, - "arrays": [
- {
- "sensor_map": {
- "property1": "string",
- "property2": "string"
}, - "id": 0,
- "plant_id": 0,
- "name": "string",
- "collector": "string",
- "area_gr": {
- "magnitude": 0,
- "units": "string"
}, - "area_ap": {
- "magnitude": 0,
- "units": "string"
}, - "azim": {
- "magnitude": 0,
- "units": "string"
}, - "tilt": {
- "magnitude": 0,
- "units": "string"
}, - "row_spacing": {
- "magnitude": 0,
- "units": "string"
}, - "n_rows": {
- "magnitude": 0,
- "units": "string"
}, - "ground_tilt": {
- "magnitude": 0,
- "units": "string"
}, - "mounting_level": {
- "magnitude": 0,
- "units": "string"
}, - "fluidvol_total": {
- "magnitude": 0,
- "units": "string"
}, - "rho_ground": {
- "magnitude": 0,
- "units": "string"
}, - "rho_colbackside": {
- "magnitude": 0,
- "units": "string"
}, - "rho_colsurface": {
- "magnitude": 0,
- "units": "string"
}, - "max_aoi_shadow": {
- "magnitude": 0,
- "units": "string"
}, - "min_elevation_shadow": {
- "magnitude": 0,
- "units": "string"
}
}
], - "fluidvol_total": {
- "magnitude": 0,
- "units": "string"
}, - "raw_sensors": [
- {
- "description": "string",
- "accuracy_class": "low",
- "installation_condition": "perfect",
- "info": { },
- "raw_name": "string",
- "native_unit": "string",
- "sensor_type": "string",
- "id": 0,
- "plant_id": 0,
- "formatted_unit": "string",
- "is_virtual": true,
- "can_calculate": true,
- "is_mapped": true,
- "is_infos_set": true
}
], - "name": "string",
- "id": 0,
- "local_tz_string_with_DST": "string",
- "tz_data_offset": 0,
- "data_upload_defaults": {
- "id": 0,
- "datetime_template": "year_month_day",
- "datetime_format": "string",
- "timezone": "string",
- "csv_separator": "string",
- "csv_decimal": "string",
- "csv_encoding": "string",
- "index_col": 0
}, - "virtuals_calculation_uptodate": true
}, - "n_intervals": 0,
- "total_interval_length": 0,
- "datetime_intervals_start": [
- "2019-08-24T14:15:22Z"
], - "datetime_intervals_end": [
- "2019-08-24T14:15:22Z"
], - "tp_measured": {
- "magnitude": 0,
- "units": "string"
}, - "tp_sp_measured": {
- "magnitude": 0,
- "units": "string"
}, - "tp_sp_estimated": {
- "magnitude": 0,
- "units": "string"
}, - "tp_sp_estimated_safety": {
- "magnitude": 0,
- "units": "string"
}, - "mean_tp_sp_measured": {
- "magnitude": 0,
- "units": "string"
}, - "mean_tp_sp_estimated": {
- "magnitude": 0,
- "units": "string"
}, - "mean_tp_sp_estimated_safety": {
- "magnitude": 0,
- "units": "string"
}, - "target_actual_slope": {
- "magnitude": 0,
- "units": "string"
}, - "target_actual_slope_safety": {
- "magnitude": 0,
- "units": "string"
}, - "fluid_solar": {
- "name": "string",
- "fluid": "string",
- "concentration": {
- "magnitude": 0,
- "units": "string"
}
}, - "mean_temperature": {
- "magnitude": 0,
- "units": "string"
}, - "mean_fluid_density": {
- "magnitude": 0,
- "units": "string"
}, - "mean_fluid_heat_capacity": {
- "magnitude": 0,
- "units": "string"
}
}, - "array_output": [
- {
- "id": 0,
- "array": {
- "sensor_map": {
- "property1": "string",
- "property2": "string"
}, - "id": 0,
- "plant_id": 0,
- "name": "string",
- "collector": "string",
- "area_gr": {
- "magnitude": 0,
- "units": "string"
}, - "area_ap": {
- "magnitude": 0,
- "units": "string"
}, - "azim": {
- "magnitude": 0,
- "units": "string"
}, - "tilt": {
- "magnitude": 0,
- "units": "string"
}, - "row_spacing": {
- "magnitude": 0,
- "units": "string"
}, - "n_rows": {
- "magnitude": 0,
- "units": "string"
}, - "ground_tilt": {
- "magnitude": 0,
- "units": "string"
}, - "mounting_level": {
- "magnitude": 0,
- "units": "string"
}, - "fluidvol_total": {
- "magnitude": 0,
- "units": "string"
}, - "rho_ground": {
- "magnitude": 0,
- "units": "string"
}, - "rho_colbackside": {
- "magnitude": 0,
- "units": "string"
}, - "rho_colsurface": {
- "magnitude": 0,
- "units": "string"
}, - "max_aoi_shadow": {
- "magnitude": 0,
- "units": "string"
}, - "min_elevation_shadow": {
- "magnitude": 0,
- "units": "string"
}
}, - "data": {
- "id": 0,
- "te_in": {
- "magnitude": 0,
- "units": "string"
}, - "te_out": {
- "magnitude": 0,
- "units": "string"
}, - "te_op": {
- "magnitude": 0,
- "units": "string"
}, - "te_op_deriv": {
- "magnitude": 0,
- "units": "string"
}, - "aoi": {
- "magnitude": 0,
- "units": "string"
}, - "iam_b": {
- "magnitude": 0,
- "units": "string"
}, - "ve_wind": {
- "magnitude": 0,
- "units": "string"
}, - "rd_gti": {
- "magnitude": 0,
- "units": "string"
}, - "rd_bti": {
- "magnitude": 0,
- "units": "string"
}, - "rd_dti": {
- "magnitude": 0,
- "units": "string"
}
}, - "tp_sp_measured": {
- "magnitude": 0,
- "units": "string"
}, - "tp_sp_estimated": {
- "magnitude": 0,
- "units": "string"
}, - "tp_sp_estimated_safety": {
- "magnitude": 0,
- "units": "string"
}, - "mean_tp_sp_measured": {
- "magnitude": 0,
- "units": "string"
}, - "mean_tp_sp_estimated": {
- "magnitude": 0,
- "units": "string"
}, - "mean_tp_sp_estimated_safety": {
- "magnitude": 0,
- "units": "string"
}
}
]
}
Run the PC Method for the specified dates range and return a pdf report.
plant_id required | integer (Plant Id) |
method | string (PCMethods) Enum: "ISO" "extended" An enumeration. |
formula | integer (PCFormulae) Enum: 1 2 3 An enumeration. |
eval_start | string <date-time> (Eval Start) |
eval_end | string <date-time> (Eval End) |
ignore_wind | boolean (Ignore Wind) |
safety_pipes | number (Safety Pipes) |
safety_uncertainty | number (Safety Uncertainty) |
safety_others | number (Safety Others) |
with_interval_plots | boolean (With Interval Plots) |
include_creation_date | boolean (Include Creation Date) |
anonymize | boolean (Anonymize) |
token required | string (Token) |
null
List problems for the PC Method for the specified dates range
plant_id required | integer (Plant Id) |
method | string (PCMethods) Enum: "ISO" "extended" An enumeration. |
formula | integer (PCFormulae) Enum: 1 2 3 An enumeration. |
ignore_wind | boolean (Ignore Wind) |
token required | string (Token) |
[- {
- "evaluation_mode": "string",
- "formula": 0,
- "wind_used": true,
- "success": true,
- "problem_str": "string"
}
]
Get PC Method settings for given plant.
plant_id required | integer (Plant Id) |
token required | string (Token) |
{- "safety_uncertainty": 0,
- "safety_pipes": 0,
- "safety_others": 0,
- "evaluation_mode": "string",
- "formula": 0,
- "wind_used": true
}
Update PC Method settings for given plant.
plant_id required | integer (Plant Id) |
token required | string (Token) |
safety_uncertainty | number (Safety Uncertainty) |
safety_pipes | number (Safety Pipes) |
safety_others | number (Safety Others) |
evaluation_mode | string (Evaluation Mode) |
formula | integer (Formula) |
wind_used | boolean (Wind Used) |
{- "safety_uncertainty": 0,
- "safety_pipes": 0,
- "safety_others": 0,
- "evaluation_mode": "string",
- "formula": 0,
- "wind_used": true
}
{- "safety_uncertainty": 0,
- "safety_pipes": 0,
- "safety_others": 0,
- "evaluation_mode": "string",
- "formula": 0,
- "wind_used": true
}
Runs the PC Method for the specified dates range
plant_id required | integer (Plant Id) |
method | string (PCMethods) Enum: "ISO" "extended" An enumeration. |
formula | integer (PCFormulae) Enum: 1 2 3 An enumeration. |
eval_start | string <date-time> (Eval Start) |
eval_end | string <date-time> (Eval End) |
ignore_wind | boolean (Ignore Wind) |
safety_pipes | number (Safety Pipes) |
safety_uncertainty | number (Safety Uncertainty) |
safety_others | number (Safety Others) |
token required | string (Token) |
{- "id": 0,
- "plant": {
- "name": "string",
- "owner": "string",
- "operator": "string",
- "description": "string",
- "location_name": "string",
- "latitude": {
- "magnitude": 0,
- "units": "string"
}, - "longitude": {
- "magnitude": 0,
- "units": "string"
}, - "elevation": {
- "magnitude": 0,
- "units": "string"
}, - "id": 0,
- "virtuals_calculation_uptodate": true
}, - "datetime_eval_start": "2019-08-24T14:15:22Z",
- "datetime_eval_end": "2019-08-24T14:15:22Z",
- "pc_method_name": "string",
- "evaluation_mode": "string",
- "formula": 0,
- "wind_used": true,
- "settings": { },
- "plant_output": {
- "id": 0,
- "plant": {
- "sensor_map": {
- "property1": "string",
- "property2": "string"
}, - "latitude": {
- "magnitude": 0,
- "units": "string"
}, - "longitude": {
- "magnitude": 0,
- "units": "string"
}, - "owner": "string",
- "operator": "string",
- "description": "string",
- "location_name": "string",
- "elevation": {
- "magnitude": 0,
- "units": "string"
}, - "fluid_solar": {
- "name": "string",
- "fluid": "string",
- "concentration": {
- "magnitude": 0,
- "units": "string"
}
}, - "arrays": [
- {
- "sensor_map": {
- "property1": "string",
- "property2": "string"
}, - "id": 0,
- "plant_id": 0,
- "name": "string",
- "collector": "string",
- "area_gr": {
- "magnitude": 0,
- "units": "string"
}, - "area_ap": {
- "magnitude": 0,
- "units": "string"
}, - "azim": {
- "magnitude": 0,
- "units": "string"
}, - "tilt": {
- "magnitude": 0,
- "units": "string"
}, - "row_spacing": {
- "magnitude": 0,
- "units": "string"
}, - "n_rows": {
- "magnitude": 0,
- "units": "string"
}, - "ground_tilt": {
- "magnitude": 0,
- "units": "string"
}, - "mounting_level": {
- "magnitude": 0,
- "units": "string"
}, - "fluidvol_total": {
- "magnitude": 0,
- "units": "string"
}, - "rho_ground": {
- "magnitude": 0,
- "units": "string"
}, - "rho_colbackside": {
- "magnitude": 0,
- "units": "string"
}, - "rho_colsurface": {
- "magnitude": 0,
- "units": "string"
}, - "max_aoi_shadow": {
- "magnitude": 0,
- "units": "string"
}, - "min_elevation_shadow": {
- "magnitude": 0,
- "units": "string"
}
}
], - "fluidvol_total": {
- "magnitude": 0,
- "units": "string"
}, - "raw_sensors": [
- {
- "description": "string",
- "accuracy_class": "low",
- "installation_condition": "perfect",
- "info": { },
- "raw_name": "string",
- "native_unit": "string",
- "sensor_type": "string",
- "id": 0,
- "plant_id": 0,
- "formatted_unit": "string",
- "is_virtual": true,
- "can_calculate": true,
- "is_mapped": true,
- "is_infos_set": true
}
], - "name": "string",
- "id": 0,
- "local_tz_string_with_DST": "string",
- "tz_data_offset": 0,
- "data_upload_defaults": {
- "id": 0,
- "datetime_template": "year_month_day",
- "datetime_format": "string",
- "timezone": "string",
- "csv_separator": "string",
- "csv_decimal": "string",
- "csv_encoding": "string",
- "index_col": 0
}, - "virtuals_calculation_uptodate": true
}, - "n_intervals": 0,
- "total_interval_length": 0,
- "datetime_intervals_start": [
- "2019-08-24T14:15:22Z"
], - "datetime_intervals_end": [
- "2019-08-24T14:15:22Z"
], - "tp_measured": {
- "magnitude": 0,
- "units": "string"
}, - "tp_sp_measured": {
- "magnitude": 0,
- "units": "string"
}, - "tp_sp_estimated": {
- "magnitude": 0,
- "units": "string"
}, - "tp_sp_estimated_safety": {
- "magnitude": 0,
- "units": "string"
}, - "mean_tp_sp_measured": {
- "magnitude": 0,
- "units": "string"
}, - "mean_tp_sp_estimated": {
- "magnitude": 0,
- "units": "string"
}, - "mean_tp_sp_estimated_safety": {
- "magnitude": 0,
- "units": "string"
}, - "target_actual_slope": {
- "magnitude": 0,
- "units": "string"
}, - "target_actual_slope_safety": {
- "magnitude": 0,
- "units": "string"
}, - "fluid_solar": {
- "name": "string",
- "fluid": "string",
- "concentration": {
- "magnitude": 0,
- "units": "string"
}
}, - "mean_temperature": {
- "magnitude": 0,
- "units": "string"
}, - "mean_fluid_density": {
- "magnitude": 0,
- "units": "string"
}, - "mean_fluid_heat_capacity": {
- "magnitude": 0,
- "units": "string"
}
}, - "array_output": [
- {
- "id": 0,
- "array": {
- "sensor_map": {
- "property1": "string",
- "property2": "string"
}, - "id": 0,
- "plant_id": 0,
- "name": "string",
- "collector": "string",
- "area_gr": {
- "magnitude": 0,
- "units": "string"
}, - "area_ap": {
- "magnitude": 0,
- "units": "string"
}, - "azim": {
- "magnitude": 0,
- "units": "string"
}, - "tilt": {
- "magnitude": 0,
- "units": "string"
}, - "row_spacing": {
- "magnitude": 0,
- "units": "string"
}, - "n_rows": {
- "magnitude": 0,
- "units": "string"
}, - "ground_tilt": {
- "magnitude": 0,
- "units": "string"
}, - "mounting_level": {
- "magnitude": 0,
- "units": "string"
}, - "fluidvol_total": {
- "magnitude": 0,
- "units": "string"
}, - "rho_ground": {
- "magnitude": 0,
- "units": "string"
}, - "rho_colbackside": {
- "magnitude": 0,
- "units": "string"
}, - "rho_colsurface": {
- "magnitude": 0,
- "units": "string"
}, - "max_aoi_shadow": {
- "magnitude": 0,
- "units": "string"
}, - "min_elevation_shadow": {
- "magnitude": 0,
- "units": "string"
}
}, - "data": {
- "id": 0,
- "te_in": {
- "magnitude": 0,
- "units": "string"
}, - "te_out": {
- "magnitude": 0,
- "units": "string"
}, - "te_op": {
- "magnitude": 0,
- "units": "string"
}, - "te_op_deriv": {
- "magnitude": 0,
- "units": "string"
}, - "aoi": {
- "magnitude": 0,
- "units": "string"
}, - "iam_b": {
- "magnitude": 0,
- "units": "string"
}, - "ve_wind": {
- "magnitude": 0,
- "units": "string"
}, - "rd_gti": {
- "magnitude": 0,
- "units": "string"
}, - "rd_bti": {
- "magnitude": 0,
- "units": "string"
}, - "rd_dti": {
- "magnitude": 0,
- "units": "string"
}
}, - "tp_sp_measured": {
- "magnitude": 0,
- "units": "string"
}, - "tp_sp_estimated": {
- "magnitude": 0,
- "units": "string"
}, - "tp_sp_estimated_safety": {
- "magnitude": 0,
- "units": "string"
}, - "mean_tp_sp_measured": {
- "magnitude": 0,
- "units": "string"
}, - "mean_tp_sp_estimated": {
- "magnitude": 0,
- "units": "string"
}, - "mean_tp_sp_estimated_safety": {
- "magnitude": 0,
- "units": "string"
}
}
]
}
Run the PC Method for the specified dates range and return a pdf report.
plant_id required | integer (Plant Id) |
method | string (PCMethods) Enum: "ISO" "extended" An enumeration. |
formula | integer (PCFormulae) Enum: 1 2 3 An enumeration. |
eval_start | string <date-time> (Eval Start) |
eval_end | string <date-time> (Eval End) |
ignore_wind | boolean (Ignore Wind) |
safety_pipes | number (Safety Pipes) |
safety_uncertainty | number (Safety Uncertainty) |
safety_others | number (Safety Others) |
with_interval_plots | boolean (With Interval Plots) |
include_creation_date | boolean (Include Creation Date) |
anonymize | boolean (Anonymize) |
token required | string (Token) |
null
List problems for the PC Method for the specified dates range
plant_id required | integer (Plant Id) |
method | string (PCMethods) Enum: "ISO" "extended" An enumeration. |
formula | integer (PCFormulae) Enum: 1 2 3 An enumeration. |
ignore_wind | boolean (Ignore Wind) |
token required | string (Token) |
[- {
- "evaluation_mode": "string",
- "formula": 0,
- "wind_used": true,
- "success": true,
- "problem_str": "string"
}
]
Get PC Method settings for given plant.
plant_id required | integer (Plant Id) |
token required | string (Token) |
{- "safety_uncertainty": 0,
- "safety_pipes": 0,
- "safety_others": 0,
- "evaluation_mode": "string",
- "formula": 0,
- "wind_used": true
}
Update PC Method settings for given plant.
plant_id required | integer (Plant Id) |
token required | string (Token) |
safety_uncertainty | number (Safety Uncertainty) |
safety_pipes | number (Safety Pipes) |
safety_others | number (Safety Others) |
evaluation_mode | string (Evaluation Mode) |
formula | integer (Formula) |
wind_used | boolean (Wind Used) |
{- "safety_uncertainty": 0,
- "safety_pipes": 0,
- "safety_others": 0,
- "evaluation_mode": "string",
- "formula": 0,
- "wind_used": true
}
{- "safety_uncertainty": 0,
- "safety_pipes": 0,
- "safety_others": 0,
- "evaluation_mode": "string",
- "formula": 0,
- "wind_used": true
}
id | integer (Id) |
name | string (Name) |
plant_id | integer (Plant Id) |
plant_name | string (Plant Name) |
token required | string (Token) |
{- "id": 0,
- "model_type": "string",
- "name": "string",
- "manufacturer": "string",
- "description": "string",
- "is_pure": true,
- "dm_model_sha1": "string",
- "hc_model_sha1": "string",
- "heat_capacity_unit_te": "string",
- "heat_capacity_unit_out": "string",
- "heat_capacity_unit_c": "string",
- "density_unit_te": "string",
- "density_unit_out": "string",
- "density_unit_c": "string"
}
id required | integer (Id) |
name | string (Name) |
plant_id | integer (Plant Id) |
plant_name | string (Plant Name) |
token required | string (Token) |
{- "id": 0,
- "model_type": "string",
- "name": "string",
- "manufacturer": "string",
- "description": "string",
- "is_pure": true,
- "dm_model_sha1": "string",
- "hc_model_sha1": "string",
- "heat_capacity_unit_te": "string",
- "heat_capacity_unit_out": "string",
- "heat_capacity_unit_c": "string",
- "density_unit_te": "string",
- "density_unit_out": "string",
- "density_unit_c": "string"
}
id | integer (Id) |
name | string (Name) |
plant_id | integer (Plant Id) |
plant_name | string (Plant Name) |
token required | string (Token) |
{- "name": "string",
- "test_reference_area": "string",
- "test_type": "string",
- "gross_length": {
- "magnitude": 0,
- "units": "string"
}, - "iam_method": {
- "method_type": "IAM_K50",
- "k50": {
- "magnitude": 0,
- "units": "string"
}, - "b": {
- "magnitude": 0,
- "units": "string"
}
}, - "manufacturer_name": "string",
- "product_name": "string",
- "test_report_id": "string",
- "licence_number": "string",
- "certificate_date_issued": "2019-08-24T14:15:22Z",
- "certificate_lab": "string",
- "certificate_details": "string",
- "collector_type": "string",
- "area_gr": {
- "magnitude": 0,
- "units": "string"
}, - "area_ap": {
- "magnitude": 0,
- "units": "string"
}, - "gross_width": {
- "magnitude": 0,
- "units": "string"
}, - "gross_height": {
- "magnitude": 0,
- "units": "string"
}, - "a1": {
- "magnitude": 0,
- "units": "string"
}, - "a2": {
- "magnitude": 0,
- "units": "string"
}, - "a5": {
- "magnitude": 0,
- "units": "string"
}, - "a8": {
- "magnitude": 0,
- "units": "string"
}, - "kd": {
- "magnitude": 0,
- "units": "string"
}, - "eta0b": {
- "magnitude": 0,
- "units": "string"
}, - "eta0hem": {
- "magnitude": 0,
- "units": "string"
}, - "f_prime": {
- "magnitude": 0,
- "units": "string"
}, - "concentration_ratio": {
- "magnitude": 0,
- "units": "string"
}, - "calculation_info": {
- "property1": "string",
- "property2": "string"
}, - "aperture_parameters": {
- "a1": {
- "magnitude": 0,
- "units": "string"
}, - "a2": {
- "magnitude": 0,
- "units": "string"
}, - "a5": {
- "magnitude": 0,
- "units": "string"
}, - "a8": {
- "magnitude": 0,
- "units": "string"
}
}, - "id": 0
}
token required | string (Token) |
name required | string (Name) |
test_reference_area required | string (Test Reference Area) |
test_type | string (Test Type) |
object (Quantity) | |
IAM_K50 (object) or IAM_ASHRAE (object) or IAM_Ambrosetti (object) or IAM_Interpolated (object) (Iam Method) | |
manufacturer_name | string (Manufacturer Name) |
product_name | string (Product Name) |
test_report_id | string (Test Report Id) |
licence_number | string (Licence Number) |
string or string (Certificate Date Issued) | |
certificate_lab | string (Certificate Lab) |
certificate_details | string (Certificate Details) |
collector_type required | string (Collector Type) |
object (Quantity) | |
object (Quantity) | |
object (Quantity) | |
object (Quantity) | |
required | object (Quantity) |
required | object (Quantity) |
object (Quantity) | |
object (Quantity) | |
object (Quantity) | |
object (Quantity) | |
object (Quantity) | |
object (Quantity) | |
object (Quantity) | |
object (Calculation Info) | |
object (ApertureParameters) | |
required | object (Quantity) |
[ ]
[ ]
id required | integer (Id) |
token required | string (Token) |
{- "name": "string",
- "test_reference_area": "string",
- "test_type": "string",
- "gross_length": {
- "magnitude": 0,
- "units": "string"
}, - "iam_method": {
- "method_type": "IAM_K50",
- "k50": {
- "magnitude": 0,
- "units": "string"
}, - "b": {
- "magnitude": 0,
- "units": "string"
}
}, - "manufacturer_name": "string",
- "product_name": "string",
- "test_report_id": "string",
- "licence_number": "string",
- "certificate_date_issued": "2019-08-24T14:15:22Z",
- "certificate_lab": "string",
- "certificate_details": "string",
- "collector_type": "string",
- "area_gr": {
- "magnitude": 0,
- "units": "string"
}, - "area_ap": {
- "magnitude": 0,
- "units": "string"
}, - "gross_width": {
- "magnitude": 0,
- "units": "string"
}, - "gross_height": {
- "magnitude": 0,
- "units": "string"
}, - "a1": {
- "magnitude": 0,
- "units": "string"
}, - "a2": {
- "magnitude": 0,
- "units": "string"
}, - "a5": {
- "magnitude": 0,
- "units": "string"
}, - "a8": {
- "magnitude": 0,
- "units": "string"
}, - "kd": {
- "magnitude": 0,
- "units": "string"
}, - "eta0b": {
- "magnitude": 0,
- "units": "string"
}, - "eta0hem": {
- "magnitude": 0,
- "units": "string"
}, - "f_prime": {
- "magnitude": 0,
- "units": "string"
}, - "concentration_ratio": {
- "magnitude": 0,
- "units": "string"
}, - "calculation_info": {
- "property1": "string",
- "property2": "string"
}, - "aperture_parameters": {
- "a1": {
- "magnitude": 0,
- "units": "string"
}, - "a2": {
- "magnitude": 0,
- "units": "string"
}, - "a5": {
- "magnitude": 0,
- "units": "string"
}, - "a8": {
- "magnitude": 0,
- "units": "string"
}
}, - "id": 0
}
id required | integer (Id) |
token required | string (Token) |
name | string (Name) |
test_reference_area required | string (Test Reference Area) |
test_type | string (Test Type) |
object (Quantity) | |
IAM_K50 (object) or IAM_ASHRAE (object) or IAM_Ambrosetti (object) or IAM_Interpolated (object) (Iam Method) | |
manufacturer_name | string (Manufacturer Name) |
product_name | string (Product Name) |
test_report_id | string (Test Report Id) |
licence_number | string (Licence Number) |
string or string (Certificate Date Issued) | |
certificate_lab | string (Certificate Lab) |
certificate_details | string (Certificate Details) |
collector_type required | string (Collector Type) |
object (Quantity) | |
object (Quantity) | |
object (Quantity) | |
object (Quantity) | |
required | object (Quantity) |
required | object (Quantity) |
object (Quantity) | |
object (Quantity) | |
object (Quantity) | |
object (Quantity) | |
object (Quantity) | |
object (Quantity) | |
object (Quantity) | |
object (Calculation Info) | |
object (ApertureParameters) | |
id | integer (Id) |
{- "name": "string",
- "test_reference_area": "string",
- "test_type": "string",
- "gross_length": {
- "magnitude": 0,
- "units": "string"
}, - "iam_method": {
- "method_type": "IAM_K50",
- "k50": {
- "magnitude": 0,
- "units": "string"
}, - "b": {
- "magnitude": 0,
- "units": "string"
}
}, - "manufacturer_name": "string",
- "product_name": "string",
- "test_report_id": "string",
- "licence_number": "string",
- "certificate_date_issued": "2019-08-24T14:15:22Z",
- "certificate_lab": "string",
- "certificate_details": "string",
- "collector_type": "string",
- "area_gr": {
- "magnitude": 0,
- "units": "string"
}, - "area_ap": {
- "magnitude": 0,
- "units": "string"
}, - "gross_width": {
- "magnitude": 0,
- "units": "string"
}, - "gross_height": {
- "magnitude": 0,
- "units": "string"
}, - "a1": {
- "magnitude": 0,
- "units": "string"
}, - "a2": {
- "magnitude": 0,
- "units": "string"
}, - "a5": {
- "magnitude": 0,
- "units": "string"
}, - "a8": {
- "magnitude": 0,
- "units": "string"
}, - "kd": {
- "magnitude": 0,
- "units": "string"
}, - "eta0b": {
- "magnitude": 0,
- "units": "string"
}, - "eta0hem": {
- "magnitude": 0,
- "units": "string"
}, - "f_prime": {
- "magnitude": 0,
- "units": "string"
}, - "concentration_ratio": {
- "magnitude": 0,
- "units": "string"
}, - "calculation_info": {
- "property1": "string",
- "property2": "string"
}, - "aperture_parameters": {
- "a1": {
- "magnitude": 0,
- "units": "string"
}, - "a2": {
- "magnitude": 0,
- "units": "string"
}, - "a5": {
- "magnitude": 0,
- "units": "string"
}, - "a8": {
- "magnitude": 0,
- "units": "string"
}
}, - "id": 0
}
{- "name": "string",
- "test_reference_area": "string",
- "test_type": "string",
- "gross_length": {
- "magnitude": 0,
- "units": "string"
}, - "iam_method": {
- "method_type": "IAM_K50",
- "k50": {
- "magnitude": 0,
- "units": "string"
}, - "b": {
- "magnitude": 0,
- "units": "string"
}
}, - "manufacturer_name": "string",
- "product_name": "string",
- "test_report_id": "string",
- "licence_number": "string",
- "certificate_date_issued": "2019-08-24T14:15:22Z",
- "certificate_lab": "string",
- "certificate_details": "string",
- "collector_type": "string",
- "area_gr": {
- "magnitude": 0,
- "units": "string"
}, - "area_ap": {
- "magnitude": 0,
- "units": "string"
}, - "gross_width": {
- "magnitude": 0,
- "units": "string"
}, - "gross_height": {
- "magnitude": 0,
- "units": "string"
}, - "a1": {
- "magnitude": 0,
- "units": "string"
}, - "a2": {
- "magnitude": 0,
- "units": "string"
}, - "a5": {
- "magnitude": 0,
- "units": "string"
}, - "a8": {
- "magnitude": 0,
- "units": "string"
}, - "kd": {
- "magnitude": 0,
- "units": "string"
}, - "eta0b": {
- "magnitude": 0,
- "units": "string"
}, - "eta0hem": {
- "magnitude": 0,
- "units": "string"
}, - "f_prime": {
- "magnitude": 0,
- "units": "string"
}, - "concentration_ratio": {
- "magnitude": 0,
- "units": "string"
}, - "calculation_info": {
- "property1": "string",
- "property2": "string"
}, - "aperture_parameters": {
- "a1": {
- "magnitude": 0,
- "units": "string"
}, - "a2": {
- "magnitude": 0,
- "units": "string"
}, - "a5": {
- "magnitude": 0,
- "units": "string"
}, - "a8": {
- "magnitude": 0,
- "units": "string"
}
}
}
component_type required | any (cmp_types) Enum: "plant" "array" An enumeration. |
include_virtuals | boolean (Include Virtuals) Default: false |
token required | string (Token) |
[- {
- "name": "string",
- "sensor_type": "string",
- "descriptive_name": "string",
- "virtual": "never",
- "description": "string"
}
]
plant_id required | integer (Plant Id) |
eval_start | string <date-time> (Eval Start) |
eval_end | string <date-time> (Eval End) |
token required | string (Token) |
{- "nan_report": {
- "property1": "string",
- "property2": "string"
}
}
id required | integer (Id) |
required | integer or string (Plant Id) |
raw_name | string (Raw Name) |
token required | string (Token) |
{- "description": "string",
- "accuracy_class": "low",
- "installation_condition": "perfect",
- "info": { },
- "raw_name": "string",
- "native_unit": "string",
- "sensor_type": "string",
- "id": 0,
- "plant_id": 0,
- "formatted_unit": "string",
- "is_virtual": true,
- "can_calculate": true,
- "is_mapped": true,
- "is_infos_set": true
}
required | integer or string (Plant Id) |
id | integer (Id) |
raw_name | string (Raw Name) |
token required | string (Token) |
{- "description": "string",
- "accuracy_class": "low",
- "installation_condition": "perfect",
- "info": { },
- "raw_name": "string",
- "native_unit": "string",
- "sensor_type": "string",
- "id": 0,
- "plant_id": 0,
- "formatted_unit": "string",
- "is_virtual": true,
- "can_calculate": true,
- "is_mapped": true,
- "is_infos_set": true
}
id required | integer (Id) |
required | integer or string (Plant Id) |
eval_start | string <date-time> (Eval Start) |
eval_end | string <date-time> (Eval End) |
token required | string (Token) |
null
Create a new sensor or sensors. raw_name
is required.
To create multiple sensors at once, pass a list of sensor structures
plant_id required | integer (Plant Id) |
token required | string (Token) |
description | string (Description) |
accuracy_class | string (AccuracyClass) Enum: "low" "medium" "high" An enumeration. |
installation_condition | string (InstallCondition) Enum: "perfect" "fair" "bad" An enumeration. |
info | object (Info) Default: {} |
raw_name required | string (Raw Name) |
native_unit | string (Native Unit) |
sensor_type | string (Sensor Type) |
[ ]
[- {
- "description": "string",
- "accuracy_class": "low",
- "installation_condition": "perfect",
- "info": { },
- "raw_name": "string",
- "native_unit": "string",
- "sensor_type": "string",
- "id": 0,
- "plant_id": 0,
- "formatted_unit": "string",
- "is_virtual": true,
- "can_calculate": true,
- "is_mapped": true,
- "is_infos_set": true
}
]
id required | integer (Id) |
raw_name | string (Raw Name) |
integer or string (Plant Id) | |
token required | string (Token) |
{- "description": "string",
- "accuracy_class": "low",
- "installation_condition": "perfect",
- "info": { },
- "raw_name": "string",
- "native_unit": "string",
- "sensor_type": "string",
- "id": 0,
- "plant_id": 0,
- "formatted_unit": "string",
- "is_virtual": true,
- "can_calculate": true,
- "is_mapped": true,
- "is_infos_set": true
}
id required | integer (Id) |
token required | string (Token) |
description | string (Description) |
accuracy_class | string (AccuracyClass) Enum: "low" "medium" "high" An enumeration. |
installation_condition | string (InstallCondition) Enum: "perfect" "fair" "bad" An enumeration. |
info | object (Info) Default: {} |
raw_name | string (Raw Name) |
native_unit | string (Native Unit) |
sensor_type | string (Sensor Type) |
id | integer (Id) |
plant_id | integer (Plant Id) |
formatted_unit | string (Formatted Unit) |
is_virtual | boolean (Is Virtual) |
can_calculate | boolean (Can Calculate) |
is_mapped | boolean (Is Mapped) |
is_infos_set | boolean (Is Infos Set) |
{- "description": "string",
- "accuracy_class": "low",
- "installation_condition": "perfect",
- "info": { },
- "raw_name": "string",
- "native_unit": "string",
- "sensor_type": "string",
- "id": 0,
- "plant_id": 0,
- "formatted_unit": "string",
- "is_virtual": true,
- "can_calculate": true,
- "is_mapped": true,
- "is_infos_set": true
}
{- "description": "string",
- "accuracy_class": "low",
- "installation_condition": "perfect",
- "info": { },
- "raw_name": "string",
- "native_unit": "string",
- "sensor_type": "string",
- "id": 0,
- "plant_id": 0,
- "formatted_unit": "string",
- "is_virtual": true,
- "can_calculate": true,
- "is_mapped": true,
- "is_infos_set": true
}
id required | integer (Id) |
integer or string (Plant Id) | |
eval_start | string <date-time> (Eval Start) |
eval_end | string <date-time> (Eval End) |
token required | string (Token) |
{- "description": "string",
- "accuracy_class": "low",
- "installation_condition": "perfect",
- "info": { },
- "raw_name": "string",
- "native_unit": "string",
- "sensor_type": "string",
- "id": 0,
- "plant_id": 0,
- "formatted_unit": "string",
- "is_virtual": true,
- "can_calculate": true,
- "is_mapped": true,
- "is_infos_set": true
}
token required | string (Token) |
description | string (Description) |
accuracy_class | string (AccuracyClass) Enum: "low" "medium" "high" An enumeration. |
installation_condition | string (InstallCondition) Enum: "perfect" "fair" "bad" An enumeration. |
info | object (Info) Default: {} |
raw_name | string (Raw Name) |
native_unit | string (Native Unit) |
sensor_type | string (Sensor Type) |
id required | integer (Id) |
plant_id | integer (Plant Id) |
formatted_unit | string (Formatted Unit) |
is_virtual | boolean (Is Virtual) |
can_calculate | boolean (Can Calculate) |
is_mapped | boolean (Is Mapped) |
is_infos_set | boolean (Is Infos Set) |
[- {
- "description": "string",
- "accuracy_class": "low",
- "installation_condition": "perfect",
- "info": { },
- "raw_name": "string",
- "native_unit": "string",
- "sensor_type": "string",
- "id": 0,
- "plant_id": 0,
- "formatted_unit": "string",
- "is_virtual": true,
- "can_calculate": true,
- "is_mapped": true,
- "is_infos_set": true
}
]
[- {
- "description": "string",
- "accuracy_class": "low",
- "installation_condition": "perfect",
- "info": { },
- "raw_name": "string",
- "native_unit": "string",
- "sensor_type": "string",
- "id": 0,
- "plant_id": 0,
- "formatted_unit": "string",
- "is_virtual": true,
- "can_calculate": true,
- "is_mapped": true,
- "is_infos_set": true
}
]
id | integer (Id) |
name | string (Name) |
plant_id | integer (Plant Id) |
plant_name | string (Plant Name) |
token required | string (Token) |
{- "id": 0,
- "model_type": "string",
- "name": "string",
- "manufacturer": "string",
- "description": "string",
- "is_pure": true,
- "dm_model_sha1": "string",
- "hc_model_sha1": "string",
- "heat_capacity_unit_te": "string",
- "heat_capacity_unit_out": "string",
- "heat_capacity_unit_c": "string",
- "density_unit_te": "string",
- "density_unit_out": "string",
- "density_unit_c": "string"
}
id required | integer (Id) |
name | string (Name) |
plant_id | integer (Plant Id) |
plant_name | string (Plant Name) |
token required | string (Token) |
{- "id": 0,
- "model_type": "string",
- "name": "string",
- "manufacturer": "string",
- "description": "string",
- "is_pure": true,
- "dm_model_sha1": "string",
- "hc_model_sha1": "string",
- "heat_capacity_unit_te": "string",
- "heat_capacity_unit_out": "string",
- "heat_capacity_unit_c": "string",
- "density_unit_te": "string",
- "density_unit_out": "string",
- "density_unit_c": "string"
}
plant_id required | integer (Plant Id) |
id | integer (Id) |
name | string (Name) |
plant_name | string (Plant Name) |
token required | string (Token) |
{- "id": 0,
- "name": "string",
- "manufacturer_name": "string",
- "product_name": "string",
- "fluid": {
- "id": 0,
- "model_type": "string",
- "name": "string",
- "manufacturer": "string",
- "description": "string",
- "is_pure": true,
- "dm_model_sha1": "string",
- "hc_model_sha1": "string",
- "heat_capacity_unit_te": "string",
- "heat_capacity_unit_out": "string",
- "heat_capacity_unit_c": "string",
- "density_unit_te": "string",
- "density_unit_out": "string",
- "density_unit_c": "string"
}, - "concentration": {
- "magnitude": 0,
- "units": "string"
}
}
id required | integer (Id) |
token required | string (Token) |
{- "id": 0,
- "name": "string",
- "manufacturer_name": "string",
- "product_name": "string",
- "fluid": {
- "id": 0,
- "model_type": "string",
- "name": "string",
- "manufacturer": "string",
- "description": "string",
- "is_pure": true,
- "dm_model_sha1": "string",
- "hc_model_sha1": "string",
- "heat_capacity_unit_te": "string",
- "heat_capacity_unit_out": "string",
- "heat_capacity_unit_c": "string",
- "density_unit_te": "string",
- "density_unit_out": "string",
- "density_unit_c": "string"
}, - "concentration": {
- "magnitude": 0,
- "units": "string"
}
}
id | integer (Id) |
name | string (Name) |
plant_id | integer (Plant Id) |
plant_name | string (Plant Name) |
token required | string (Token) |
{- "name": "string",
- "test_reference_area": "string",
- "test_type": "string",
- "gross_length": {
- "magnitude": 0,
- "units": "string"
}, - "iam_method": {
- "method_type": "IAM_K50",
- "k50": {
- "magnitude": 0,
- "units": "string"
}, - "b": {
- "magnitude": 0,
- "units": "string"
}
}, - "manufacturer_name": "string",
- "product_name": "string",
- "test_report_id": "string",
- "licence_number": "string",
- "certificate_date_issued": "2019-08-24T14:15:22Z",
- "certificate_lab": "string",
- "certificate_details": "string",
- "collector_type": "string",
- "area_gr": {
- "magnitude": 0,
- "units": "string"
}, - "area_ap": {
- "magnitude": 0,
- "units": "string"
}, - "gross_width": {
- "magnitude": 0,
- "units": "string"
}, - "gross_height": {
- "magnitude": 0,
- "units": "string"
}, - "a1": {
- "magnitude": 0,
- "units": "string"
}, - "a2": {
- "magnitude": 0,
- "units": "string"
}, - "a5": {
- "magnitude": 0,
- "units": "string"
}, - "a8": {
- "magnitude": 0,
- "units": "string"
}, - "kd": {
- "magnitude": 0,
- "units": "string"
}, - "eta0b": {
- "magnitude": 0,
- "units": "string"
}, - "eta0hem": {
- "magnitude": 0,
- "units": "string"
}, - "f_prime": {
- "magnitude": 0,
- "units": "string"
}, - "concentration_ratio": {
- "magnitude": 0,
- "units": "string"
}, - "calculation_info": {
- "property1": "string",
- "property2": "string"
}, - "aperture_parameters": {
- "a1": {
- "magnitude": 0,
- "units": "string"
}, - "a2": {
- "magnitude": 0,
- "units": "string"
}, - "a5": {
- "magnitude": 0,
- "units": "string"
}, - "a8": {
- "magnitude": 0,
- "units": "string"
}
}, - "id": 0
}
token required | string (Token) |
name required | string (Name) |
test_reference_area required | string (Test Reference Area) |
test_type | string (Test Type) |
object (Quantity) | |
IAM_K50 (object) or IAM_ASHRAE (object) or IAM_Ambrosetti (object) or IAM_Interpolated (object) (Iam Method) | |
manufacturer_name | string (Manufacturer Name) |
product_name | string (Product Name) |
test_report_id | string (Test Report Id) |
licence_number | string (Licence Number) |
string or string (Certificate Date Issued) | |
certificate_lab | string (Certificate Lab) |
certificate_details | string (Certificate Details) |
collector_type required | string (Collector Type) |
object (Quantity) | |
object (Quantity) | |
object (Quantity) | |
object (Quantity) | |
required | object (Quantity) |
required | object (Quantity) |
object (Quantity) | |
object (Quantity) | |
object (Quantity) | |
object (Quantity) | |
object (Quantity) | |
object (Quantity) | |
object (Quantity) | |
object (Calculation Info) | |
object (ApertureParameters) | |
required | object (Quantity) |
[ ]
[ ]
id required | integer (Id) |
token required | string (Token) |
{- "name": "string",
- "test_reference_area": "string",
- "test_type": "string",
- "gross_length": {
- "magnitude": 0,
- "units": "string"
}, - "iam_method": {
- "method_type": "IAM_K50",
- "k50": {
- "magnitude": 0,
- "units": "string"
}, - "b": {
- "magnitude": 0,
- "units": "string"
}
}, - "manufacturer_name": "string",
- "product_name": "string",
- "test_report_id": "string",
- "licence_number": "string",
- "certificate_date_issued": "2019-08-24T14:15:22Z",
- "certificate_lab": "string",
- "certificate_details": "string",
- "collector_type": "string",
- "area_gr": {
- "magnitude": 0,
- "units": "string"
}, - "area_ap": {
- "magnitude": 0,
- "units": "string"
}, - "gross_width": {
- "magnitude": 0,
- "units": "string"
}, - "gross_height": {
- "magnitude": 0,
- "units": "string"
}, - "a1": {
- "magnitude": 0,
- "units": "string"
}, - "a2": {
- "magnitude": 0,
- "units": "string"
}, - "a5": {
- "magnitude": 0,
- "units": "string"
}, - "a8": {
- "magnitude": 0,
- "units": "string"
}, - "kd": {
- "magnitude": 0,
- "units": "string"
}, - "eta0b": {
- "magnitude": 0,
- "units": "string"
}, - "eta0hem": {
- "magnitude": 0,
- "units": "string"
}, - "f_prime": {
- "magnitude": 0,
- "units": "string"
}, - "concentration_ratio": {
- "magnitude": 0,
- "units": "string"
}, - "calculation_info": {
- "property1": "string",
- "property2": "string"
}, - "aperture_parameters": {
- "a1": {
- "magnitude": 0,
- "units": "string"
}, - "a2": {
- "magnitude": 0,
- "units": "string"
}, - "a5": {
- "magnitude": 0,
- "units": "string"
}, - "a8": {
- "magnitude": 0,
- "units": "string"
}
}, - "id": 0
}
id required | integer (Id) |
token required | string (Token) |
name | string (Name) |
test_reference_area required | string (Test Reference Area) |
test_type | string (Test Type) |
object (Quantity) | |
IAM_K50 (object) or IAM_ASHRAE (object) or IAM_Ambrosetti (object) or IAM_Interpolated (object) (Iam Method) | |
manufacturer_name | string (Manufacturer Name) |
product_name | string (Product Name) |
test_report_id | string (Test Report Id) |
licence_number | string (Licence Number) |
string or string (Certificate Date Issued) | |
certificate_lab | string (Certificate Lab) |
certificate_details | string (Certificate Details) |
collector_type required | string (Collector Type) |
object (Quantity) | |
object (Quantity) | |
object (Quantity) | |
object (Quantity) | |
required | object (Quantity) |
required | object (Quantity) |
object (Quantity) | |
object (Quantity) | |
object (Quantity) | |
object (Quantity) | |
object (Quantity) | |
object (Quantity) | |
object (Quantity) | |
object (Calculation Info) | |
object (ApertureParameters) | |
id | integer (Id) |
{- "name": "string",
- "test_reference_area": "string",
- "test_type": "string",
- "gross_length": {
- "magnitude": 0,
- "units": "string"
}, - "iam_method": {
- "method_type": "IAM_K50",
- "k50": {
- "magnitude": 0,
- "units": "string"
}, - "b": {
- "magnitude": 0,
- "units": "string"
}
}, - "manufacturer_name": "string",
- "product_name": "string",
- "test_report_id": "string",
- "licence_number": "string",
- "certificate_date_issued": "2019-08-24T14:15:22Z",
- "certificate_lab": "string",
- "certificate_details": "string",
- "collector_type": "string",
- "area_gr": {
- "magnitude": 0,
- "units": "string"
}, - "area_ap": {
- "magnitude": 0,
- "units": "string"
}, - "gross_width": {
- "magnitude": 0,
- "units": "string"
}, - "gross_height": {
- "magnitude": 0,
- "units": "string"
}, - "a1": {
- "magnitude": 0,
- "units": "string"
}, - "a2": {
- "magnitude": 0,
- "units": "string"
}, - "a5": {
- "magnitude": 0,
- "units": "string"
}, - "a8": {
- "magnitude": 0,
- "units": "string"
}, - "kd": {
- "magnitude": 0,
- "units": "string"
}, - "eta0b": {
- "magnitude": 0,
- "units": "string"
}, - "eta0hem": {
- "magnitude": 0,
- "units": "string"
}, - "f_prime": {
- "magnitude": 0,
- "units": "string"
}, - "concentration_ratio": {
- "magnitude": 0,
- "units": "string"
}, - "calculation_info": {
- "property1": "string",
- "property2": "string"
}, - "aperture_parameters": {
- "a1": {
- "magnitude": 0,
- "units": "string"
}, - "a2": {
- "magnitude": 0,
- "units": "string"
}, - "a5": {
- "magnitude": 0,
- "units": "string"
}, - "a8": {
- "magnitude": 0,
- "units": "string"
}
}, - "id": 0
}
{- "name": "string",
- "test_reference_area": "string",
- "test_type": "string",
- "gross_length": {
- "magnitude": 0,
- "units": "string"
}, - "iam_method": {
- "method_type": "IAM_K50",
- "k50": {
- "magnitude": 0,
- "units": "string"
}, - "b": {
- "magnitude": 0,
- "units": "string"
}
}, - "manufacturer_name": "string",
- "product_name": "string",
- "test_report_id": "string",
- "licence_number": "string",
- "certificate_date_issued": "2019-08-24T14:15:22Z",
- "certificate_lab": "string",
- "certificate_details": "string",
- "collector_type": "string",
- "area_gr": {
- "magnitude": 0,
- "units": "string"
}, - "area_ap": {
- "magnitude": 0,
- "units": "string"
}, - "gross_width": {
- "magnitude": 0,
- "units": "string"
}, - "gross_height": {
- "magnitude": 0,
- "units": "string"
}, - "a1": {
- "magnitude": 0,
- "units": "string"
}, - "a2": {
- "magnitude": 0,
- "units": "string"
}, - "a5": {
- "magnitude": 0,
- "units": "string"
}, - "a8": {
- "magnitude": 0,
- "units": "string"
}, - "kd": {
- "magnitude": 0,
- "units": "string"
}, - "eta0b": {
- "magnitude": 0,
- "units": "string"
}, - "eta0hem": {
- "magnitude": 0,
- "units": "string"
}, - "f_prime": {
- "magnitude": 0,
- "units": "string"
}, - "concentration_ratio": {
- "magnitude": 0,
- "units": "string"
}, - "calculation_info": {
- "property1": "string",
- "property2": "string"
}, - "aperture_parameters": {
- "a1": {
- "magnitude": 0,
- "units": "string"
}, - "a2": {
- "magnitude": 0,
- "units": "string"
}, - "a5": {
- "magnitude": 0,
- "units": "string"
}, - "a8": {
- "magnitude": 0,
- "units": "string"
}
}
}
component_type required | any (cmp_types) Enum: "plant" "array" An enumeration. |
include_virtuals | boolean (Include Virtuals) Default: false |
token required | string (Token) |
[- {
- "name": "string",
- "sensor_type": "string",
- "descriptive_name": "string",
- "virtual": "never",
- "description": "string"
}
]
required | integer or string (Plant Id) |
id | integer (Id) |
name | string (Name) |
plant_name | string (Plant Name) |
token required | string (Token) |
{- "sensor_map": {
- "property1": "string",
- "property2": "string"
}, - "id": 0,
- "plant_id": 0,
- "name": "string",
- "collector": "string",
- "area_gr": {
- "magnitude": 0,
- "units": "string"
}, - "area_ap": {
- "magnitude": 0,
- "units": "string"
}, - "azim": {
- "magnitude": 0,
- "units": "string"
}, - "tilt": {
- "magnitude": 0,
- "units": "string"
}, - "row_spacing": {
- "magnitude": 0,
- "units": "string"
}, - "n_rows": {
- "magnitude": 0,
- "units": "string"
}, - "ground_tilt": {
- "magnitude": 0,
- "units": "string"
}, - "mounting_level": {
- "magnitude": 0,
- "units": "string"
}, - "fluidvol_total": {
- "magnitude": 0,
- "units": "string"
}, - "rho_ground": {
- "magnitude": 0,
- "units": "string"
}, - "rho_colbackside": {
- "magnitude": 0,
- "units": "string"
}, - "rho_colsurface": {
- "magnitude": 0,
- "units": "string"
}, - "max_aoi_shadow": {
- "magnitude": 0,
- "units": "string"
}, - "min_elevation_shadow": {
- "magnitude": 0,
- "units": "string"
}
}
Create a new array or arrays. name
and collector
are required.
To create multiple arrays at once, pass a list of array structures.
sensors can be mapped by passing a dict of sensor structures to sensors
(NOTE not actually tested, may not work yet.
plant_id required | integer (Plant Id) |
token required | string (Token) |
sensor_map | object (Sensor Map) |
id | integer (Id) |
plant_id | integer (Plant Id) |
name required | string (Name) |
collector required | string (Collector) |
object (Quantity) | |
object (Quantity) | |
required | object (Quantity) |
required | object (Quantity) |
object (Quantity) | |
object (Quantity) | |
object (Quantity) | |
object (Quantity) | |
object (Quantity) | |
object (Quantity) | |
object (Quantity) | |
object (Quantity) | |
object (Quantity) | |
object (Quantity) | |
object (Sensors) |
{- "sensor_map": { },
- "id": 0,
- "plant_id": 0,
- "name": "string",
- "collector": "string",
- "area_gr": {
- "magnitude": 0,
- "units": "string"
}, - "area_ap": {
- "magnitude": 0,
- "units": "string"
}, - "azim": {
- "magnitude": 0,
- "units": "string"
}, - "tilt": {
- "magnitude": 0,
- "units": "string"
}, - "row_spacing": {
- "magnitude": 0,
- "units": "string"
}, - "n_rows": {
- "magnitude": 0,
- "units": "string"
}, - "ground_tilt": {
- "magnitude": 0,
- "units": "string"
}, - "mounting_level": {
- "magnitude": 0,
- "units": "string"
}, - "fluidvol_total": {
- "magnitude": 0,
- "units": "string"
}, - "rho_ground": {
- "magnitude": 0,
- "units": "string"
}, - "rho_colbackside": {
- "magnitude": 0,
- "units": "string"
}, - "rho_colsurface": {
- "magnitude": 0,
- "units": "string"
}, - "max_aoi_shadow": {
- "magnitude": 0,
- "units": "string"
}, - "min_elevation_shadow": {
- "magnitude": 0,
- "units": "string"
}, - "sensors": {
- "property1": {
- "description": "string",
- "accuracy_class": "low",
- "installation_condition": "perfect",
- "info": { },
- "raw_name": "string",
- "native_unit": "string",
- "sensor_type": "string"
}, - "property2": {
- "description": "string",
- "accuracy_class": "low",
- "installation_condition": "perfect",
- "info": { },
- "raw_name": "string",
- "native_unit": "string",
- "sensor_type": "string"
}
}
}
{- "sensor_map": {
- "property1": "string",
- "property2": "string"
}, - "id": 0,
- "plant_id": 0,
- "name": "string",
- "collector": "string",
- "area_gr": {
- "magnitude": 0,
- "units": "string"
}, - "area_ap": {
- "magnitude": 0,
- "units": "string"
}, - "azim": {
- "magnitude": 0,
- "units": "string"
}, - "tilt": {
- "magnitude": 0,
- "units": "string"
}, - "row_spacing": {
- "magnitude": 0,
- "units": "string"
}, - "n_rows": {
- "magnitude": 0,
- "units": "string"
}, - "ground_tilt": {
- "magnitude": 0,
- "units": "string"
}, - "mounting_level": {
- "magnitude": 0,
- "units": "string"
}, - "fluidvol_total": {
- "magnitude": 0,
- "units": "string"
}, - "rho_ground": {
- "magnitude": 0,
- "units": "string"
}, - "rho_colbackside": {
- "magnitude": 0,
- "units": "string"
}, - "rho_colsurface": {
- "magnitude": 0,
- "units": "string"
}, - "max_aoi_shadow": {
- "magnitude": 0,
- "units": "string"
}, - "min_elevation_shadow": {
- "magnitude": 0,
- "units": "string"
}
}
id required | integer (Id) |
name | string (Name) |
integer or string (Plant Id) | |
plant_name | string (Plant Name) |
token required | string (Token) |
{- "sensor_map": {
- "property1": "string",
- "property2": "string"
}, - "id": 0,
- "plant_id": 0,
- "name": "string",
- "collector": "string",
- "area_gr": {
- "magnitude": 0,
- "units": "string"
}, - "area_ap": {
- "magnitude": 0,
- "units": "string"
}, - "azim": {
- "magnitude": 0,
- "units": "string"
}, - "tilt": {
- "magnitude": 0,
- "units": "string"
}, - "row_spacing": {
- "magnitude": 0,
- "units": "string"
}, - "n_rows": {
- "magnitude": 0,
- "units": "string"
}, - "ground_tilt": {
- "magnitude": 0,
- "units": "string"
}, - "mounting_level": {
- "magnitude": 0,
- "units": "string"
}, - "fluidvol_total": {
- "magnitude": 0,
- "units": "string"
}, - "rho_ground": {
- "magnitude": 0,
- "units": "string"
}, - "rho_colbackside": {
- "magnitude": 0,
- "units": "string"
}, - "rho_colsurface": {
- "magnitude": 0,
- "units": "string"
}, - "max_aoi_shadow": {
- "magnitude": 0,
- "units": "string"
}, - "min_elevation_shadow": {
- "magnitude": 0,
- "units": "string"
}
}
id required | integer (Id) |
token required | string (Token) |
object (Sensor Map) | |
id | integer (Id) |
plant_id | integer (Plant Id) |
name | string (Name) |
collector | string (Collector) |
object (Quantity) | |
object (Quantity) | |
object (Quantity) | |
object (Quantity) | |
object (Quantity) | |
object (Quantity) | |
object (Quantity) | |
object (Quantity) | |
object (Quantity) | |
object (Quantity) | |
object (Quantity) | |
object (Quantity) | |
object (Quantity) | |
object (Quantity) |
{- "sensor_map": {
- "property1": "string",
- "property2": "string"
}, - "id": 0,
- "plant_id": 0,
- "name": "string",
- "collector": "string",
- "area_gr": {
- "magnitude": 0,
- "units": "string"
}, - "area_ap": {
- "magnitude": 0,
- "units": "string"
}, - "azim": {
- "magnitude": 0,
- "units": "string"
}, - "tilt": {
- "magnitude": 0,
- "units": "string"
}, - "row_spacing": {
- "magnitude": 0,
- "units": "string"
}, - "n_rows": {
- "magnitude": 0,
- "units": "string"
}, - "ground_tilt": {
- "magnitude": 0,
- "units": "string"
}, - "mounting_level": {
- "magnitude": 0,
- "units": "string"
}, - "fluidvol_total": {
- "magnitude": 0,
- "units": "string"
}, - "rho_ground": {
- "magnitude": 0,
- "units": "string"
}, - "rho_colbackside": {
- "magnitude": 0,
- "units": "string"
}, - "rho_colsurface": {
- "magnitude": 0,
- "units": "string"
}, - "max_aoi_shadow": {
- "magnitude": 0,
- "units": "string"
}, - "min_elevation_shadow": {
- "magnitude": 0,
- "units": "string"
}
}
{- "sensor_map": {
- "property1": "string",
- "property2": "string"
}, - "id": 0,
- "plant_id": 0,
- "name": "string",
- "collector": "string",
- "area_gr": {
- "magnitude": 0,
- "units": "string"
}, - "area_ap": {
- "magnitude": 0,
- "units": "string"
}, - "azim": {
- "magnitude": 0,
- "units": "string"
}, - "tilt": {
- "magnitude": 0,
- "units": "string"
}, - "row_spacing": {
- "magnitude": 0,
- "units": "string"
}, - "n_rows": {
- "magnitude": 0,
- "units": "string"
}, - "ground_tilt": {
- "magnitude": 0,
- "units": "string"
}, - "mounting_level": {
- "magnitude": 0,
- "units": "string"
}, - "fluidvol_total": {
- "magnitude": 0,
- "units": "string"
}, - "rho_ground": {
- "magnitude": 0,
- "units": "string"
}, - "rho_colbackside": {
- "magnitude": 0,
- "units": "string"
}, - "rho_colsurface": {
- "magnitude": 0,
- "units": "string"
}, - "max_aoi_shadow": {
- "magnitude": 0,
- "units": "string"
}, - "min_elevation_shadow": {
- "magnitude": 0,
- "units": "string"
}
}
component_type required | any (cmp_types) Enum: "plant" "array" An enumeration. |
include_virtuals | boolean (Include Virtuals) Default: false |
token required | string (Token) |
[- {
- "name": "string",
- "sensor_type": "string",
- "descriptive_name": "string",
- "virtual": "never",
- "description": "string"
}
]
[- {
- "sensor_map": {
- "property1": "string",
- "property2": "string"
}, - "latitude": {
- "magnitude": 0,
- "units": "string"
}, - "longitude": {
- "magnitude": 0,
- "units": "string"
}, - "owner": "string",
- "operator": "string",
- "description": "string",
- "location_name": "string",
- "elevation": {
- "magnitude": 0,
- "units": "string"
}, - "fluid_solar": {
- "name": "string",
- "fluid": "string",
- "concentration": {
- "magnitude": 0,
- "units": "string"
}
}, - "arrays": [
- {
- "sensor_map": {
- "property1": "string",
- "property2": "string"
}, - "id": 0,
- "plant_id": 0,
- "name": "string",
- "collector": "string",
- "area_gr": {
- "magnitude": 0,
- "units": "string"
}, - "area_ap": {
- "magnitude": 0,
- "units": "string"
}, - "azim": {
- "magnitude": 0,
- "units": "string"
}, - "tilt": {
- "magnitude": 0,
- "units": "string"
}, - "row_spacing": {
- "magnitude": 0,
- "units": "string"
}, - "n_rows": {
- "magnitude": 0,
- "units": "string"
}, - "ground_tilt": {
- "magnitude": 0,
- "units": "string"
}, - "mounting_level": {
- "magnitude": 0,
- "units": "string"
}, - "fluidvol_total": {
- "magnitude": 0,
- "units": "string"
}, - "rho_ground": {
- "magnitude": 0,
- "units": "string"
}, - "rho_colbackside": {
- "magnitude": 0,
- "units": "string"
}, - "rho_colsurface": {
- "magnitude": 0,
- "units": "string"
}, - "max_aoi_shadow": {
- "magnitude": 0,
- "units": "string"
}, - "min_elevation_shadow": {
- "magnitude": 0,
- "units": "string"
}
}
], - "fluidvol_total": {
- "magnitude": 0,
- "units": "string"
}, - "raw_sensors": [
- {
- "description": "string",
- "accuracy_class": "low",
- "installation_condition": "perfect",
- "info": { },
- "raw_name": "string",
- "native_unit": "string",
- "sensor_type": "string",
- "id": 0,
- "plant_id": 0,
- "formatted_unit": "string",
- "is_virtual": true,
- "can_calculate": true,
- "is_mapped": true,
- "is_infos_set": true
}
], - "name": "string",
- "id": 0,
- "local_tz_string_with_DST": "string",
- "tz_data_offset": 0,
- "data_upload_defaults": {
- "id": 0,
- "datetime_template": "year_month_day",
- "datetime_format": "string",
- "timezone": "string",
- "csv_separator": "string",
- "csv_decimal": "string",
- "csv_encoding": "string",
- "index_col": 0
}, - "virtuals_calculation_uptodate": true
}
]
name | string (Name) |
token required | string (Token) |
[- {
- "name": "string",
- "owner": "string",
- "operator": "string",
- "description": "string",
- "location_name": "string",
- "latitude": {
- "magnitude": 0,
- "units": "string"
}, - "longitude": {
- "magnitude": 0,
- "units": "string"
}, - "elevation": {
- "magnitude": 0,
- "units": "string"
}, - "id": 0,
- "virtuals_calculation_uptodate": true
}
]
Create a new plant. name
, latitude
, longitude
are required. sensors can be mapped by passing a list of sensor
structures to sensors
token required | string (Token) |
sensor_map | object (Sensor Map) |
required | object (Quantity) |
required | object (Quantity) |
owner | string (Owner) |
operator | string (Operator) |
description | string (Description) |
location_name | string (Location Name) |
object (Quantity) | |
object (FluidSummary) | |
Array of objects (Arrays) [ items ] | |
object (Quantity) | |
Array of objects (Raw Sensors) [ items ] | |
name required | string (Name) |
{- "sensor_map": { },
- "latitude": {
- "magnitude": 0,
- "units": "string"
}, - "longitude": {
- "magnitude": 0,
- "units": "string"
}, - "owner": "string",
- "operator": "string",
- "description": "string",
- "location_name": "string",
- "elevation": {
- "magnitude": 0,
- "units": "string"
}, - "fluid_solar": {
- "name": "string",
- "fluid": "string",
- "concentration": {
- "magnitude": 0,
- "units": "string"
}
}, - "arrays": [
- {
- "sensor_map": {
- "property1": "string",
- "property2": "string"
}, - "id": 0,
- "plant_id": 0,
- "name": "string",
- "collector": "string",
- "area_gr": {
- "magnitude": 0,
- "units": "string"
}, - "area_ap": {
- "magnitude": 0,
- "units": "string"
}, - "azim": {
- "magnitude": 0,
- "units": "string"
}, - "tilt": {
- "magnitude": 0,
- "units": "string"
}, - "row_spacing": {
- "magnitude": 0,
- "units": "string"
}, - "n_rows": {
- "magnitude": 0,
- "units": "string"
}, - "ground_tilt": {
- "magnitude": 0,
- "units": "string"
}, - "mounting_level": {
- "magnitude": 0,
- "units": "string"
}, - "fluidvol_total": {
- "magnitude": 0,
- "units": "string"
}, - "rho_ground": {
- "magnitude": 0,
- "units": "string"
}, - "rho_colbackside": {
- "magnitude": 0,
- "units": "string"
}, - "rho_colsurface": {
- "magnitude": 0,
- "units": "string"
}, - "max_aoi_shadow": {
- "magnitude": 0,
- "units": "string"
}, - "min_elevation_shadow": {
- "magnitude": 0,
- "units": "string"
}
}
], - "fluidvol_total": {
- "magnitude": 0,
- "units": "string"
}, - "raw_sensors": [
- {
- "description": "string",
- "accuracy_class": "low",
- "installation_condition": "perfect",
- "info": { },
- "raw_name": "string",
- "native_unit": "string",
- "sensor_type": "string"
}
], - "name": "string"
}
{- "sensor_map": {
- "property1": "string",
- "property2": "string"
}, - "latitude": {
- "magnitude": 0,
- "units": "string"
}, - "longitude": {
- "magnitude": 0,
- "units": "string"
}, - "owner": "string",
- "operator": "string",
- "description": "string",
- "location_name": "string",
- "elevation": {
- "magnitude": 0,
- "units": "string"
}, - "fluid_solar": {
- "name": "string",
- "fluid": "string",
- "concentration": {
- "magnitude": 0,
- "units": "string"
}
}, - "arrays": [
- {
- "sensor_map": {
- "property1": "string",
- "property2": "string"
}, - "id": 0,
- "plant_id": 0,
- "name": "string",
- "collector": "string",
- "area_gr": {
- "magnitude": 0,
- "units": "string"
}, - "area_ap": {
- "magnitude": 0,
- "units": "string"
}, - "azim": {
- "magnitude": 0,
- "units": "string"
}, - "tilt": {
- "magnitude": 0,
- "units": "string"
}, - "row_spacing": {
- "magnitude": 0,
- "units": "string"
}, - "n_rows": {
- "magnitude": 0,
- "units": "string"
}, - "ground_tilt": {
- "magnitude": 0,
- "units": "string"
}, - "mounting_level": {
- "magnitude": 0,
- "units": "string"
}, - "fluidvol_total": {
- "magnitude": 0,
- "units": "string"
}, - "rho_ground": {
- "magnitude": 0,
- "units": "string"
}, - "rho_colbackside": {
- "magnitude": 0,
- "units": "string"
}, - "rho_colsurface": {
- "magnitude": 0,
- "units": "string"
}, - "max_aoi_shadow": {
- "magnitude": 0,
- "units": "string"
}, - "min_elevation_shadow": {
- "magnitude": 0,
- "units": "string"
}
}
], - "fluidvol_total": {
- "magnitude": 0,
- "units": "string"
}, - "raw_sensors": [
- {
- "description": "string",
- "accuracy_class": "low",
- "installation_condition": "perfect",
- "info": { },
- "raw_name": "string",
- "native_unit": "string",
- "sensor_type": "string",
- "id": 0,
- "plant_id": 0,
- "formatted_unit": "string",
- "is_virtual": true,
- "can_calculate": true,
- "is_mapped": true,
- "is_infos_set": true
}
], - "name": "string",
- "id": 0,
- "local_tz_string_with_DST": "string",
- "tz_data_offset": 0,
- "data_upload_defaults": {
- "id": 0,
- "datetime_template": "year_month_day",
- "datetime_format": "string",
- "timezone": "string",
- "csv_separator": "string",
- "csv_decimal": "string",
- "csv_encoding": "string",
- "index_col": 0
}, - "virtuals_calculation_uptodate": true
}
new_plant_name | string (New Plant Name) |
token required | string (Token) |
required | Array of objects (Collectors) [ items ] |
required | Array of objects (Fluid Definitions) [ items ] |
required | object (NewPlant) |
{- "collectors": [
- {
- "name": "string",
- "test_reference_area": "string",
- "test_type": "string",
- "gross_length": {
- "magnitude": 0,
- "units": "string"
}, - "iam_method": {
- "method_type": "IAM_K50",
- "k50": {
- "magnitude": 0,
- "units": "string"
}, - "b": {
- "magnitude": 0,
- "units": "string"
}
}, - "manufacturer_name": "string",
- "product_name": "string",
- "test_report_id": "string",
- "licence_number": "string",
- "certificate_date_issued": "2019-08-24T14:15:22Z",
- "certificate_lab": "string",
- "certificate_details": "string",
- "collector_type": "string",
- "area_gr": {
- "magnitude": 0,
- "units": "string"
}, - "area_ap": {
- "magnitude": 0,
- "units": "string"
}, - "gross_width": {
- "magnitude": 0,
- "units": "string"
}, - "gross_height": {
- "magnitude": 0,
- "units": "string"
}, - "a1": {
- "magnitude": 0,
- "units": "string"
}, - "a2": {
- "magnitude": 0,
- "units": "string"
}, - "a5": {
- "magnitude": 0,
- "units": "string"
}, - "a8": {
- "magnitude": 0,
- "units": "string"
}, - "kd": {
- "magnitude": 0,
- "units": "string"
}, - "eta0b": {
- "magnitude": 0,
- "units": "string"
}, - "eta0hem": {
- "magnitude": 0,
- "units": "string"
}, - "f_prime": {
- "magnitude": 0,
- "units": "string"
}, - "concentration_ratio": {
- "magnitude": 0,
- "units": "string"
}, - "calculation_info": {
- "property1": "string",
- "property2": "string"
}, - "aperture_parameters": {
- "a1": {
- "magnitude": 0,
- "units": "string"
}, - "a2": {
- "magnitude": 0,
- "units": "string"
}, - "a5": {
- "magnitude": 0,
- "units": "string"
}, - "a8": {
- "magnitude": 0,
- "units": "string"
}
}, - "id": 0
}
], - "fluid_definitions": [
- {
- "id": 0,
- "model_type": "string",
- "name": "string",
- "manufacturer": "string",
- "description": "string",
- "is_pure": true,
- "dm_model_sha1": "string",
- "hc_model_sha1": "string",
- "heat_capacity_unit_te": "string",
- "heat_capacity_unit_out": "string",
- "heat_capacity_unit_c": "string",
- "density_unit_te": "string",
- "density_unit_out": "string",
- "density_unit_c": "string"
}
], - "plant": {
- "sensor_map": { },
- "latitude": {
- "magnitude": 0,
- "units": "string"
}, - "longitude": {
- "magnitude": 0,
- "units": "string"
}, - "owner": "string",
- "operator": "string",
- "description": "string",
- "location_name": "string",
- "elevation": {
- "magnitude": 0,
- "units": "string"
}, - "fluid_solar": {
- "name": "string",
- "fluid": "string",
- "concentration": {
- "magnitude": 0,
- "units": "string"
}
}, - "arrays": [
- {
- "sensor_map": {
- "property1": "string",
- "property2": "string"
}, - "id": 0,
- "plant_id": 0,
- "name": "string",
- "collector": "string",
- "area_gr": {
- "magnitude": 0,
- "units": "string"
}, - "area_ap": {
- "magnitude": 0,
- "units": "string"
}, - "azim": {
- "magnitude": 0,
- "units": "string"
}, - "tilt": {
- "magnitude": 0,
- "units": "string"
}, - "row_spacing": {
- "magnitude": 0,
- "units": "string"
}, - "n_rows": {
- "magnitude": 0,
- "units": "string"
}, - "ground_tilt": {
- "magnitude": 0,
- "units": "string"
}, - "mounting_level": {
- "magnitude": 0,
- "units": "string"
}, - "fluidvol_total": {
- "magnitude": 0,
- "units": "string"
}, - "rho_ground": {
- "magnitude": 0,
- "units": "string"
}, - "rho_colbackside": {
- "magnitude": 0,
- "units": "string"
}, - "rho_colsurface": {
- "magnitude": 0,
- "units": "string"
}, - "max_aoi_shadow": {
- "magnitude": 0,
- "units": "string"
}, - "min_elevation_shadow": {
- "magnitude": 0,
- "units": "string"
}
}
], - "fluidvol_total": {
- "magnitude": 0,
- "units": "string"
}, - "raw_sensors": [
- {
- "description": "string",
- "accuracy_class": "low",
- "installation_condition": "perfect",
- "info": { },
- "raw_name": "string",
- "native_unit": "string",
- "sensor_type": "string"
}
], - "name": "string"
}
}
[- {
- "name": "string",
- "test_reference_area": "string",
- "test_type": "string",
- "gross_length": {
- "magnitude": 0,
- "units": "string"
}, - "iam_method": {
- "method_type": "IAM_K50",
- "k50": {
- "magnitude": 0,
- "units": "string"
}, - "b": {
- "magnitude": 0,
- "units": "string"
}
}, - "manufacturer_name": "string",
- "product_name": "string",
- "test_report_id": "string",
- "licence_number": "string",
- "certificate_date_issued": "2019-08-24T14:15:22Z",
- "certificate_lab": "string",
- "certificate_details": "string",
- "collector_type": "string",
- "area_gr": {
- "magnitude": 0,
- "units": "string"
}, - "area_ap": {
- "magnitude": 0,
- "units": "string"
}, - "gross_width": {
- "magnitude": 0,
- "units": "string"
}, - "gross_height": {
- "magnitude": 0,
- "units": "string"
}, - "a1": {
- "magnitude": 0,
- "units": "string"
}, - "a2": {
- "magnitude": 0,
- "units": "string"
}, - "a5": {
- "magnitude": 0,
- "units": "string"
}, - "a8": {
- "magnitude": 0,
- "units": "string"
}, - "kd": {
- "magnitude": 0,
- "units": "string"
}, - "eta0b": {
- "magnitude": 0,
- "units": "string"
}, - "eta0hem": {
- "magnitude": 0,
- "units": "string"
}, - "f_prime": {
- "magnitude": 0,
- "units": "string"
}, - "concentration_ratio": {
- "magnitude": 0,
- "units": "string"
}, - "calculation_info": {
- "property1": "string",
- "property2": "string"
}, - "aperture_parameters": {
- "a1": {
- "magnitude": 0,
- "units": "string"
}, - "a2": {
- "magnitude": 0,
- "units": "string"
}, - "a5": {
- "magnitude": 0,
- "units": "string"
}, - "a8": {
- "magnitude": 0,
- "units": "string"
}
}, - "id": 0
}
]
new_plant_name | string (New Plant Name) |
token required | string (Token) |
required | Array of objects (Collectors) [ items ] |
required | Array of objects (Fluid Definitions) [ items ] |
required | object (NewPlant) |
{- "collectors": [
- {
- "name": "string",
- "test_reference_area": "string",
- "test_type": "string",
- "gross_length": {
- "magnitude": 0,
- "units": "string"
}, - "iam_method": {
- "method_type": "IAM_K50",
- "k50": {
- "magnitude": 0,
- "units": "string"
}, - "b": {
- "magnitude": 0,
- "units": "string"
}
}, - "manufacturer_name": "string",
- "product_name": "string",
- "test_report_id": "string",
- "licence_number": "string",
- "certificate_date_issued": "2019-08-24T14:15:22Z",
- "certificate_lab": "string",
- "certificate_details": "string",
- "collector_type": "string",
- "area_gr": {
- "magnitude": 0,
- "units": "string"
}, - "area_ap": {
- "magnitude": 0,
- "units": "string"
}, - "gross_width": {
- "magnitude": 0,
- "units": "string"
}, - "gross_height": {
- "magnitude": 0,
- "units": "string"
}, - "a1": {
- "magnitude": 0,
- "units": "string"
}, - "a2": {
- "magnitude": 0,
- "units": "string"
}, - "a5": {
- "magnitude": 0,
- "units": "string"
}, - "a8": {
- "magnitude": 0,
- "units": "string"
}, - "kd": {
- "magnitude": 0,
- "units": "string"
}, - "eta0b": {
- "magnitude": 0,
- "units": "string"
}, - "eta0hem": {
- "magnitude": 0,
- "units": "string"
}, - "f_prime": {
- "magnitude": 0,
- "units": "string"
}, - "concentration_ratio": {
- "magnitude": 0,
- "units": "string"
}, - "calculation_info": {
- "property1": "string",
- "property2": "string"
}, - "aperture_parameters": {
- "a1": {
- "magnitude": 0,
- "units": "string"
}, - "a2": {
- "magnitude": 0,
- "units": "string"
}, - "a5": {
- "magnitude": 0,
- "units": "string"
}, - "a8": {
- "magnitude": 0,
- "units": "string"
}
}, - "id": 0
}
], - "fluid_definitions": [
- {
- "id": 0,
- "model_type": "string",
- "name": "string",
- "manufacturer": "string",
- "description": "string",
- "is_pure": true,
- "dm_model_sha1": "string",
- "hc_model_sha1": "string",
- "heat_capacity_unit_te": "string",
- "heat_capacity_unit_out": "string",
- "heat_capacity_unit_c": "string",
- "density_unit_te": "string",
- "density_unit_out": "string",
- "density_unit_c": "string"
}
], - "plant": {
- "sensor_map": { },
- "latitude": {
- "magnitude": 0,
- "units": "string"
}, - "longitude": {
- "magnitude": 0,
- "units": "string"
}, - "owner": "string",
- "operator": "string",
- "description": "string",
- "location_name": "string",
- "elevation": {
- "magnitude": 0,
- "units": "string"
}, - "fluid_solar": {
- "name": "string",
- "fluid": "string",
- "concentration": {
- "magnitude": 0,
- "units": "string"
}
}, - "arrays": [
- {
- "sensor_map": {
- "property1": "string",
- "property2": "string"
}, - "id": 0,
- "plant_id": 0,
- "name": "string",
- "collector": "string",
- "area_gr": {
- "magnitude": 0,
- "units": "string"
}, - "area_ap": {
- "magnitude": 0,
- "units": "string"
}, - "azim": {
- "magnitude": 0,
- "units": "string"
}, - "tilt": {
- "magnitude": 0,
- "units": "string"
}, - "row_spacing": {
- "magnitude": 0,
- "units": "string"
}, - "n_rows": {
- "magnitude": 0,
- "units": "string"
}, - "ground_tilt": {
- "magnitude": 0,
- "units": "string"
}, - "mounting_level": {
- "magnitude": 0,
- "units": "string"
}, - "fluidvol_total": {
- "magnitude": 0,
- "units": "string"
}, - "rho_ground": {
- "magnitude": 0,
- "units": "string"
}, - "rho_colbackside": {
- "magnitude": 0,
- "units": "string"
}, - "rho_colsurface": {
- "magnitude": 0,
- "units": "string"
}, - "max_aoi_shadow": {
- "magnitude": 0,
- "units": "string"
}, - "min_elevation_shadow": {
- "magnitude": 0,
- "units": "string"
}
}
], - "fluidvol_total": {
- "magnitude": 0,
- "units": "string"
}, - "raw_sensors": [
- {
- "description": "string",
- "accuracy_class": "low",
- "installation_condition": "perfect",
- "info": { },
- "raw_name": "string",
- "native_unit": "string",
- "sensor_type": "string"
}
], - "name": "string"
}
}
[- {
- "name": "string",
- "test_reference_area": "string",
- "test_type": "string",
- "gross_length": {
- "magnitude": 0,
- "units": "string"
}, - "iam_method": {
- "method_type": "IAM_K50",
- "k50": {
- "magnitude": 0,
- "units": "string"
}, - "b": {
- "magnitude": 0,
- "units": "string"
}
}, - "manufacturer_name": "string",
- "product_name": "string",
- "test_report_id": "string",
- "licence_number": "string",
- "certificate_date_issued": "2019-08-24T14:15:22Z",
- "certificate_lab": "string",
- "certificate_details": "string",
- "collector_type": "string",
- "area_gr": {
- "magnitude": 0,
- "units": "string"
}, - "area_ap": {
- "magnitude": 0,
- "units": "string"
}, - "gross_width": {
- "magnitude": 0,
- "units": "string"
}, - "gross_height": {
- "magnitude": 0,
- "units": "string"
}, - "a1": {
- "magnitude": 0,
- "units": "string"
}, - "a2": {
- "magnitude": 0,
- "units": "string"
}, - "a5": {
- "magnitude": 0,
- "units": "string"
}, - "a8": {
- "magnitude": 0,
- "units": "string"
}, - "kd": {
- "magnitude": 0,
- "units": "string"
}, - "eta0b": {
- "magnitude": 0,
- "units": "string"
}, - "eta0hem": {
- "magnitude": 0,
- "units": "string"
}, - "f_prime": {
- "magnitude": 0,
- "units": "string"
}, - "concentration_ratio": {
- "magnitude": 0,
- "units": "string"
}, - "calculation_info": {
- "property1": "string",
- "property2": "string"
}, - "aperture_parameters": {
- "a1": {
- "magnitude": 0,
- "units": "string"
}, - "a2": {
- "magnitude": 0,
- "units": "string"
}, - "a5": {
- "magnitude": 0,
- "units": "string"
}, - "a8": {
- "magnitude": 0,
- "units": "string"
}
}, - "id": 0
}
]
name | string (Name) |
include_data | boolean (Include Data) Default: false |
accept_license | boolean (Accept License) Default: false |
token required | string (Token) |
{- "sensor_map": {
- "property1": "string",
- "property2": "string"
}, - "latitude": {
- "magnitude": 0,
- "units": "string"
}, - "longitude": {
- "magnitude": 0,
- "units": "string"
}, - "owner": "string",
- "operator": "string",
- "description": "string",
- "location_name": "string",
- "elevation": {
- "magnitude": 0,
- "units": "string"
}, - "fluid_solar": {
- "name": "string",
- "fluid": "string",
- "concentration": {
- "magnitude": 0,
- "units": "string"
}
}, - "arrays": [
- {
- "sensor_map": {
- "property1": "string",
- "property2": "string"
}, - "id": 0,
- "plant_id": 0,
- "name": "string",
- "collector": "string",
- "area_gr": {
- "magnitude": 0,
- "units": "string"
}, - "area_ap": {
- "magnitude": 0,
- "units": "string"
}, - "azim": {
- "magnitude": 0,
- "units": "string"
}, - "tilt": {
- "magnitude": 0,
- "units": "string"
}, - "row_spacing": {
- "magnitude": 0,
- "units": "string"
}, - "n_rows": {
- "magnitude": 0,
- "units": "string"
}, - "ground_tilt": {
- "magnitude": 0,
- "units": "string"
}, - "mounting_level": {
- "magnitude": 0,
- "units": "string"
}, - "fluidvol_total": {
- "magnitude": 0,
- "units": "string"
}, - "rho_ground": {
- "magnitude": 0,
- "units": "string"
}, - "rho_colbackside": {
- "magnitude": 0,
- "units": "string"
}, - "rho_colsurface": {
- "magnitude": 0,
- "units": "string"
}, - "max_aoi_shadow": {
- "magnitude": 0,
- "units": "string"
}, - "min_elevation_shadow": {
- "magnitude": 0,
- "units": "string"
}
}
], - "fluidvol_total": {
- "magnitude": 0,
- "units": "string"
}, - "raw_sensors": [
- {
- "description": "string",
- "accuracy_class": "low",
- "installation_condition": "perfect",
- "info": { },
- "raw_name": "string",
- "native_unit": "string",
- "sensor_type": "string",
- "id": 0,
- "plant_id": 0,
- "formatted_unit": "string",
- "is_virtual": true,
- "can_calculate": true,
- "is_mapped": true,
- "is_infos_set": true
}
], - "name": "string",
- "id": 0,
- "local_tz_string_with_DST": "string",
- "tz_data_offset": 0,
- "data_upload_defaults": {
- "id": 0,
- "datetime_template": "year_month_day",
- "datetime_format": "string",
- "timezone": "string",
- "csv_separator": "string",
- "csv_decimal": "string",
- "csv_encoding": "string",
- "index_col": 0
}, - "virtuals_calculation_uptodate": true
}
plant_id required | integer (Plant Id) |
token required | string (Token) |
{- "sensor_map": {
- "property1": "string",
- "property2": "string"
}, - "latitude": {
- "magnitude": 0,
- "units": "string"
}, - "longitude": {
- "magnitude": 0,
- "units": "string"
}, - "owner": "string",
- "operator": "string",
- "description": "string",
- "location_name": "string",
- "elevation": {
- "magnitude": 0,
- "units": "string"
}, - "fluid_solar": {
- "name": "string",
- "fluid": "string",
- "concentration": {
- "magnitude": 0,
- "units": "string"
}
}, - "arrays": [
- {
- "sensor_map": {
- "property1": "string",
- "property2": "string"
}, - "id": 0,
- "plant_id": 0,
- "name": "string",
- "collector": "string",
- "area_gr": {
- "magnitude": 0,
- "units": "string"
}, - "area_ap": {
- "magnitude": 0,
- "units": "string"
}, - "azim": {
- "magnitude": 0,
- "units": "string"
}, - "tilt": {
- "magnitude": 0,
- "units": "string"
}, - "row_spacing": {
- "magnitude": 0,
- "units": "string"
}, - "n_rows": {
- "magnitude": 0,
- "units": "string"
}, - "ground_tilt": {
- "magnitude": 0,
- "units": "string"
}, - "mounting_level": {
- "magnitude": 0,
- "units": "string"
}, - "fluidvol_total": {
- "magnitude": 0,
- "units": "string"
}, - "rho_ground": {
- "magnitude": 0,
- "units": "string"
}, - "rho_colbackside": {
- "magnitude": 0,
- "units": "string"
}, - "rho_colsurface": {
- "magnitude": 0,
- "units": "string"
}, - "max_aoi_shadow": {
- "magnitude": 0,
- "units": "string"
}, - "min_elevation_shadow": {
- "magnitude": 0,
- "units": "string"
}
}
], - "fluidvol_total": {
- "magnitude": 0,
- "units": "string"
}, - "raw_sensors": [
- {
- "description": "string",
- "accuracy_class": "low",
- "installation_condition": "perfect",
- "info": { },
- "raw_name": "string",
- "native_unit": "string",
- "sensor_type": "string",
- "id": 0,
- "plant_id": 0,
- "formatted_unit": "string",
- "is_virtual": true,
- "can_calculate": true,
- "is_mapped": true,
- "is_infos_set": true
}
], - "name": "string",
- "id": 0,
- "local_tz_string_with_DST": "string",
- "tz_data_offset": 0,
- "data_upload_defaults": {
- "id": 0,
- "datetime_template": "year_month_day",
- "datetime_format": "string",
- "timezone": "string",
- "csv_separator": "string",
- "csv_decimal": "string",
- "csv_encoding": "string",
- "index_col": 0
}, - "virtuals_calculation_uptodate": true
}
Export a plant with the sensor types, collector types, and fluid definitions it uses.
plant_id required | integer (Plant Id) |
token required | string (Token) |
{- "collectors": [
- {
- "name": "string",
- "test_reference_area": "string",
- "test_type": "string",
- "gross_length": {
- "magnitude": 0,
- "units": "string"
}, - "iam_method": {
- "method_type": "IAM_K50",
- "k50": {
- "magnitude": 0,
- "units": "string"
}, - "b": {
- "magnitude": 0,
- "units": "string"
}
}, - "manufacturer_name": "string",
- "product_name": "string",
- "test_report_id": "string",
- "licence_number": "string",
- "certificate_date_issued": "2019-08-24T14:15:22Z",
- "certificate_lab": "string",
- "certificate_details": "string",
- "collector_type": "string",
- "area_gr": {
- "magnitude": 0,
- "units": "string"
}, - "area_ap": {
- "magnitude": 0,
- "units": "string"
}, - "gross_width": {
- "magnitude": 0,
- "units": "string"
}, - "gross_height": {
- "magnitude": 0,
- "units": "string"
}, - "a1": {
- "magnitude": 0,
- "units": "string"
}, - "a2": {
- "magnitude": 0,
- "units": "string"
}, - "a5": {
- "magnitude": 0,
- "units": "string"
}, - "a8": {
- "magnitude": 0,
- "units": "string"
}, - "kd": {
- "magnitude": 0,
- "units": "string"
}, - "eta0b": {
- "magnitude": 0,
- "units": "string"
}, - "eta0hem": {
- "magnitude": 0,
- "units": "string"
}, - "f_prime": {
- "magnitude": 0,
- "units": "string"
}, - "concentration_ratio": {
- "magnitude": 0,
- "units": "string"
}, - "calculation_info": {
- "property1": "string",
- "property2": "string"
}, - "aperture_parameters": {
- "a1": {
- "magnitude": 0,
- "units": "string"
}, - "a2": {
- "magnitude": 0,
- "units": "string"
}, - "a5": {
- "magnitude": 0,
- "units": "string"
}, - "a8": {
- "magnitude": 0,
- "units": "string"
}
}, - "id": 0
}
], - "fluid_definitions": [
- {
- "id": 0,
- "model_type": "string",
- "name": "string",
- "manufacturer": "string",
- "description": "string",
- "is_pure": true,
- "dm_model_sha1": "string",
- "hc_model_sha1": "string",
- "heat_capacity_unit_te": "string",
- "heat_capacity_unit_out": "string",
- "heat_capacity_unit_c": "string",
- "density_unit_te": "string",
- "density_unit_out": "string",
- "density_unit_c": "string"
}
], - "plant": {
- "sensor_map": {
- "property1": "string",
- "property2": "string"
}, - "latitude": {
- "magnitude": 0,
- "units": "string"
}, - "longitude": {
- "magnitude": 0,
- "units": "string"
}, - "owner": "string",
- "operator": "string",
- "description": "string",
- "location_name": "string",
- "elevation": {
- "magnitude": 0,
- "units": "string"
}, - "fluid_solar": {
- "fluid": "string",
- "concentration": {
- "magnitude": 0,
- "units": "string"
}
}, - "arrays": [
- {
- "sensor_map": {
- "property1": "string",
- "property2": "string"
}, - "id": 0,
- "plant_id": 0,
- "name": "string",
- "collector": "string",
- "area_gr": {
- "magnitude": 0,
- "units": "string"
}, - "area_ap": {
- "magnitude": 0,
- "units": "string"
}, - "azim": {
- "magnitude": 0,
- "units": "string"
}, - "tilt": {
- "magnitude": 0,
- "units": "string"
}, - "row_spacing": {
- "magnitude": 0,
- "units": "string"
}, - "n_rows": {
- "magnitude": 0,
- "units": "string"
}, - "ground_tilt": {
- "magnitude": 0,
- "units": "string"
}, - "mounting_level": {
- "magnitude": 0,
- "units": "string"
}, - "fluidvol_total": {
- "magnitude": 0,
- "units": "string"
}, - "rho_ground": {
- "magnitude": 0,
- "units": "string"
}, - "rho_colbackside": {
- "magnitude": 0,
- "units": "string"
}, - "rho_colsurface": {
- "magnitude": 0,
- "units": "string"
}, - "max_aoi_shadow": {
- "magnitude": 0,
- "units": "string"
}, - "min_elevation_shadow": {
- "magnitude": 0,
- "units": "string"
}
}
], - "fluidvol_total": {
- "magnitude": 0,
- "units": "string"
}, - "raw_sensors": [
- {
- "description": "string",
- "accuracy_class": "low",
- "installation_condition": "perfect",
- "info": { },
- "raw_name": "string",
- "native_unit": "string",
- "sensor_type": "string",
- "id": 0,
- "plant_id": 0,
- "formatted_unit": "string",
- "is_virtual": true,
- "can_calculate": true,
- "is_mapped": true,
- "is_infos_set": true
}
], - "name": "string",
- "local_tz_string_with_DST": "string",
- "tz_data_offset": 0,
- "data_upload_defaults": {
- "id": 0,
- "datetime_template": "year_month_day",
- "datetime_format": "string",
- "timezone": "string",
- "csv_separator": "string",
- "csv_decimal": "string",
- "csv_encoding": "string",
- "index_col": 0
}
}
}
Create an export job for a complete plant with sensor types, collector types, fluid definitions, and data. When the job completes a tar package containing a json file, and data 1 CSV file per calender year, is available for download
plant_id required | integer (Plant Id) |
include_virtuals | boolean (Include Virtuals) Default: true |
token required | string (Token) |
{- "job_id": "453bd7d7-5355-4d6d-a38e-d9e7eb218c3f",
- "href": "string"
}
component_type required | any (cmp_types) Enum: "plant" "array" An enumeration. |
include_virtuals | boolean (Include Virtuals) Default: false |
token required | string (Token) |
[- {
- "name": "string",
- "sensor_type": "string",
- "descriptive_name": "string",
- "virtual": "never",
- "description": "string"
}
]
new_plant_name | string (New Plant Name) |
token required | string (Token) |
required | Array of objects (Collectors) [ items ] |
required | Array of objects (Fluid Definitions) [ items ] |
required | object (NewPlant) |
{- "collectors": [
- {
- "name": "string",
- "test_reference_area": "string",
- "test_type": "string",
- "gross_length": {
- "magnitude": 0,
- "units": "string"
}, - "iam_method": {
- "method_type": "IAM_K50",
- "k50": {
- "magnitude": 0,
- "units": "string"
}, - "b": {
- "magnitude": 0,
- "units": "string"
}
}, - "manufacturer_name": "string",
- "product_name": "string",
- "test_report_id": "string",
- "licence_number": "string",
- "certificate_date_issued": "2019-08-24T14:15:22Z",
- "certificate_lab": "string",
- "certificate_details": "string",
- "collector_type": "string",
- "area_gr": {
- "magnitude": 0,
- "units": "string"
}, - "area_ap": {
- "magnitude": 0,
- "units": "string"
}, - "gross_width": {
- "magnitude": 0,
- "units": "string"
}, - "gross_height": {
- "magnitude": 0,
- "units": "string"
}, - "a1": {
- "magnitude": 0,
- "units": "string"
}, - "a2": {
- "magnitude": 0,
- "units": "string"
}, - "a5": {
- "magnitude": 0,
- "units": "string"
}, - "a8": {
- "magnitude": 0,
- "units": "string"
}, - "kd": {
- "magnitude": 0,
- "units": "string"
}, - "eta0b": {
- "magnitude": 0,
- "units": "string"
}, - "eta0hem": {
- "magnitude": 0,
- "units": "string"
}, - "f_prime": {
- "magnitude": 0,
- "units": "string"
}, - "concentration_ratio": {
- "magnitude": 0,
- "units": "string"
}, - "calculation_info": {
- "property1": "string",
- "property2": "string"
}, - "aperture_parameters": {
- "a1": {
- "magnitude": 0,
- "units": "string"
}, - "a2": {
- "magnitude": 0,
- "units": "string"
}, - "a5": {
- "magnitude": 0,
- "units": "string"
}, - "a8": {
- "magnitude": 0,
- "units": "string"
}
}, - "id": 0
}
], - "fluid_definitions": [
- {
- "id": 0,
- "model_type": "string",
- "name": "string",
- "manufacturer": "string",
- "description": "string",
- "is_pure": true,
- "dm_model_sha1": "string",
- "hc_model_sha1": "string",
- "heat_capacity_unit_te": "string",
- "heat_capacity_unit_out": "string",
- "heat_capacity_unit_c": "string",
- "density_unit_te": "string",
- "density_unit_out": "string",
- "density_unit_c": "string"
}
], - "plant": {
- "sensor_map": { },
- "latitude": {
- "magnitude": 0,
- "units": "string"
}, - "longitude": {
- "magnitude": 0,
- "units": "string"
}, - "owner": "string",
- "operator": "string",
- "description": "string",
- "location_name": "string",
- "elevation": {
- "magnitude": 0,
- "units": "string"
}, - "fluid_solar": {
- "name": "string",
- "fluid": "string",
- "concentration": {
- "magnitude": 0,
- "units": "string"
}
}, - "arrays": [
- {
- "sensor_map": {
- "property1": "string",
- "property2": "string"
}, - "id": 0,
- "plant_id": 0,
- "name": "string",
- "collector": "string",
- "area_gr": {
- "magnitude": 0,
- "units": "string"
}, - "area_ap": {
- "magnitude": 0,
- "units": "string"
}, - "azim": {
- "magnitude": 0,
- "units": "string"
}, - "tilt": {
- "magnitude": 0,
- "units": "string"
}, - "row_spacing": {
- "magnitude": 0,
- "units": "string"
}, - "n_rows": {
- "magnitude": 0,
- "units": "string"
}, - "ground_tilt": {
- "magnitude": 0,
- "units": "string"
}, - "mounting_level": {
- "magnitude": 0,
- "units": "string"
}, - "fluidvol_total": {
- "magnitude": 0,
- "units": "string"
}, - "rho_ground": {
- "magnitude": 0,
- "units": "string"
}, - "rho_colbackside": {
- "magnitude": 0,
- "units": "string"
}, - "rho_colsurface": {
- "magnitude": 0,
- "units": "string"
}, - "max_aoi_shadow": {
- "magnitude": 0,
- "units": "string"
}, - "min_elevation_shadow": {
- "magnitude": 0,
- "units": "string"
}
}
], - "fluidvol_total": {
- "magnitude": 0,
- "units": "string"
}, - "raw_sensors": [
- {
- "description": "string",
- "accuracy_class": "low",
- "installation_condition": "perfect",
- "info": { },
- "raw_name": "string",
- "native_unit": "string",
- "sensor_type": "string"
}
], - "name": "string"
}
}
[- {
- "name": "string",
- "test_reference_area": "string",
- "test_type": "string",
- "gross_length": {
- "magnitude": 0,
- "units": "string"
}, - "iam_method": {
- "method_type": "IAM_K50",
- "k50": {
- "magnitude": 0,
- "units": "string"
}, - "b": {
- "magnitude": 0,
- "units": "string"
}
}, - "manufacturer_name": "string",
- "product_name": "string",
- "test_report_id": "string",
- "licence_number": "string",
- "certificate_date_issued": "2019-08-24T14:15:22Z",
- "certificate_lab": "string",
- "certificate_details": "string",
- "collector_type": "string",
- "area_gr": {
- "magnitude": 0,
- "units": "string"
}, - "area_ap": {
- "magnitude": 0,
- "units": "string"
}, - "gross_width": {
- "magnitude": 0,
- "units": "string"
}, - "gross_height": {
- "magnitude": 0,
- "units": "string"
}, - "a1": {
- "magnitude": 0,
- "units": "string"
}, - "a2": {
- "magnitude": 0,
- "units": "string"
}, - "a5": {
- "magnitude": 0,
- "units": "string"
}, - "a8": {
- "magnitude": 0,
- "units": "string"
}, - "kd": {
- "magnitude": 0,
- "units": "string"
}, - "eta0b": {
- "magnitude": 0,
- "units": "string"
}, - "eta0hem": {
- "magnitude": 0,
- "units": "string"
}, - "f_prime": {
- "magnitude": 0,
- "units": "string"
}, - "concentration_ratio": {
- "magnitude": 0,
- "units": "string"
}, - "calculation_info": {
- "property1": "string",
- "property2": "string"
}, - "aperture_parameters": {
- "a1": {
- "magnitude": 0,
- "units": "string"
}, - "a2": {
- "magnitude": 0,
- "units": "string"
}, - "a5": {
- "magnitude": 0,
- "units": "string"
}, - "a8": {
- "magnitude": 0,
- "units": "string"
}
}, - "id": 0
}
]
Export a plant with the sensor types, collector types, and fluid definitions it uses.
plant_id required | integer (Plant Id) |
token required | string (Token) |
{- "collectors": [
- {
- "name": "string",
- "test_reference_area": "string",
- "test_type": "string",
- "gross_length": {
- "magnitude": 0,
- "units": "string"
}, - "iam_method": {
- "method_type": "IAM_K50",
- "k50": {
- "magnitude": 0,
- "units": "string"
}, - "b": {
- "magnitude": 0,
- "units": "string"
}
}, - "manufacturer_name": "string",
- "product_name": "string",
- "test_report_id": "string",
- "licence_number": "string",
- "certificate_date_issued": "2019-08-24T14:15:22Z",
- "certificate_lab": "string",
- "certificate_details": "string",
- "collector_type": "string",
- "area_gr": {
- "magnitude": 0,
- "units": "string"
}, - "area_ap": {
- "magnitude": 0,
- "units": "string"
}, - "gross_width": {
- "magnitude": 0,
- "units": "string"
}, - "gross_height": {
- "magnitude": 0,
- "units": "string"
}, - "a1": {
- "magnitude": 0,
- "units": "string"
}, - "a2": {
- "magnitude": 0,
- "units": "string"
}, - "a5": {
- "magnitude": 0,
- "units": "string"
}, - "a8": {
- "magnitude": 0,
- "units": "string"
}, - "kd": {
- "magnitude": 0,
- "units": "string"
}, - "eta0b": {
- "magnitude": 0,
- "units": "string"
}, - "eta0hem": {
- "magnitude": 0,
- "units": "string"
}, - "f_prime": {
- "magnitude": 0,
- "units": "string"
}, - "concentration_ratio": {
- "magnitude": 0,
- "units": "string"
}, - "calculation_info": {
- "property1": "string",
- "property2": "string"
}, - "aperture_parameters": {
- "a1": {
- "magnitude": 0,
- "units": "string"
}, - "a2": {
- "magnitude": 0,
- "units": "string"
}, - "a5": {
- "magnitude": 0,
- "units": "string"
}, - "a8": {
- "magnitude": 0,
- "units": "string"
}
}, - "id": 0
}
], - "fluid_definitions": [
- {
- "id": 0,
- "model_type": "string",
- "name": "string",
- "manufacturer": "string",
- "description": "string",
- "is_pure": true,
- "dm_model_sha1": "string",
- "hc_model_sha1": "string",
- "heat_capacity_unit_te": "string",
- "heat_capacity_unit_out": "string",
- "heat_capacity_unit_c": "string",
- "density_unit_te": "string",
- "density_unit_out": "string",
- "density_unit_c": "string"
}
], - "plant": {
- "sensor_map": {
- "property1": "string",
- "property2": "string"
}, - "latitude": {
- "magnitude": 0,
- "units": "string"
}, - "longitude": {
- "magnitude": 0,
- "units": "string"
}, - "owner": "string",
- "operator": "string",
- "description": "string",
- "location_name": "string",
- "elevation": {
- "magnitude": 0,
- "units": "string"
}, - "fluid_solar": {
- "fluid": "string",
- "concentration": {
- "magnitude": 0,
- "units": "string"
}
}, - "arrays": [
- {
- "sensor_map": {
- "property1": "string",
- "property2": "string"
}, - "id": 0,
- "plant_id": 0,
- "name": "string",
- "collector": "string",
- "area_gr": {
- "magnitude": 0,
- "units": "string"
}, - "area_ap": {
- "magnitude": 0,
- "units": "string"
}, - "azim": {
- "magnitude": 0,
- "units": "string"
}, - "tilt": {
- "magnitude": 0,
- "units": "string"
}, - "row_spacing": {
- "magnitude": 0,
- "units": "string"
}, - "n_rows": {
- "magnitude": 0,
- "units": "string"
}, - "ground_tilt": {
- "magnitude": 0,
- "units": "string"
}, - "mounting_level": {
- "magnitude": 0,
- "units": "string"
}, - "fluidvol_total": {
- "magnitude": 0,
- "units": "string"
}, - "rho_ground": {
- "magnitude": 0,
- "units": "string"
}, - "rho_colbackside": {
- "magnitude": 0,
- "units": "string"
}, - "rho_colsurface": {
- "magnitude": 0,
- "units": "string"
}, - "max_aoi_shadow": {
- "magnitude": 0,
- "units": "string"
}, - "min_elevation_shadow": {
- "magnitude": 0,
- "units": "string"
}
}
], - "fluidvol_total": {
- "magnitude": 0,
- "units": "string"
}, - "raw_sensors": [
- {
- "description": "string",
- "accuracy_class": "low",
- "installation_condition": "perfect",
- "info": { },
- "raw_name": "string",
- "native_unit": "string",
- "sensor_type": "string",
- "id": 0,
- "plant_id": 0,
- "formatted_unit": "string",
- "is_virtual": true,
- "can_calculate": true,
- "is_mapped": true,
- "is_infos_set": true
}
], - "name": "string",
- "local_tz_string_with_DST": "string",
- "tz_data_offset": 0,
- "data_upload_defaults": {
- "id": 0,
- "datetime_template": "year_month_day",
- "datetime_format": "string",
- "timezone": "string",
- "csv_separator": "string",
- "csv_decimal": "string",
- "csv_encoding": "string",
- "index_col": 0
}
}
}
Create an export job for a complete plant with sensor types, collector types, fluid definitions, and data. When the job completes a tar package containing a json file, and data 1 CSV file per calender year, is available for download
plant_id required | integer (Plant Id) |
include_virtuals | boolean (Include Virtuals) Default: true |
token required | string (Token) |
{- "job_id": "453bd7d7-5355-4d6d-a38e-d9e7eb218c3f",
- "href": "string"
}
plant_id required | integer (Plant Id) |
token required | string (Token) |
{- "name": "string",
- "owner": "string",
- "operator": "string",
- "description": "string",
- "location_name": "string",
- "latitude": {
- "magnitude": 0,
- "units": "string"
}, - "longitude": {
- "magnitude": 0,
- "units": "string"
}, - "elevation": {
- "magnitude": 0,
- "units": "string"
}, - "id": 0,
- "virtuals_calculation_uptodate": true
}
plant_id required | integer (Plant Id) |
token required | string (Token) |
name | string (Name) |
owner | string (Owner) |
operator | string (Operator) |
description | string (Description) |
location_name | string (Location Name) |
object (Quantity) | |
object (Quantity) | |
object (Quantity) |
{- "name": "string",
- "owner": "string",
- "operator": "string",
- "description": "string",
- "location_name": "string",
- "latitude": {
- "magnitude": 0,
- "units": "string"
}, - "longitude": {
- "magnitude": 0,
- "units": "string"
}, - "elevation": {
- "magnitude": 0,
- "units": "string"
}
}
[ ]
plant_id required | integer (Plant Id) |
token required | string (Token) |
{- "sensor_map": {
- "property1": "string",
- "property2": "string"
}, - "latitude": {
- "magnitude": 0,
- "units": "string"
}, - "longitude": {
- "magnitude": 0,
- "units": "string"
}, - "owner": "string",
- "operator": "string",
- "description": "string",
- "location_name": "string",
- "elevation": {
- "magnitude": 0,
- "units": "string"
}, - "fluid_solar": {
- "name": "string",
- "fluid": "string",
- "concentration": {
- "magnitude": 0,
- "units": "string"
}
}, - "arrays": [
- {
- "sensor_map": {
- "property1": "string",
- "property2": "string"
}, - "id": 0,
- "plant_id": 0,
- "name": "string",
- "collector": "string",
- "area_gr": {
- "magnitude": 0,
- "units": "string"
}, - "area_ap": {
- "magnitude": 0,
- "units": "string"
}, - "azim": {
- "magnitude": 0,
- "units": "string"
}, - "tilt": {
- "magnitude": 0,
- "units": "string"
}, - "row_spacing": {
- "magnitude": 0,
- "units": "string"
}, - "n_rows": {
- "magnitude": 0,
- "units": "string"
}, - "ground_tilt": {
- "magnitude": 0,
- "units": "string"
}, - "mounting_level": {
- "magnitude": 0,
- "units": "string"
}, - "fluidvol_total": {
- "magnitude": 0,
- "units": "string"
}, - "rho_ground": {
- "magnitude": 0,
- "units": "string"
}, - "rho_colbackside": {
- "magnitude": 0,
- "units": "string"
}, - "rho_colsurface": {
- "magnitude": 0,
- "units": "string"
}, - "max_aoi_shadow": {
- "magnitude": 0,
- "units": "string"
}, - "min_elevation_shadow": {
- "magnitude": 0,
- "units": "string"
}
}
], - "fluidvol_total": {
- "magnitude": 0,
- "units": "string"
}, - "raw_sensors": [
- {
- "description": "string",
- "accuracy_class": "low",
- "installation_condition": "perfect",
- "info": { },
- "raw_name": "string",
- "native_unit": "string",
- "sensor_type": "string",
- "id": 0,
- "plant_id": 0,
- "formatted_unit": "string",
- "is_virtual": true,
- "can_calculate": true,
- "is_mapped": true,
- "is_infos_set": true
}
], - "name": "string",
- "id": 0,
- "local_tz_string_with_DST": "string",
- "tz_data_offset": 0,
- "data_upload_defaults": {
- "id": 0,
- "datetime_template": "year_month_day",
- "datetime_format": "string",
- "timezone": "string",
- "csv_separator": "string",
- "csv_decimal": "string",
- "csv_encoding": "string",
- "index_col": 0
}, - "virtuals_calculation_uptodate": true
}
plant_id required | integer (Plant Id) |
token required | string (Token) |
object (Sensor Map) | |
object (Quantity) | |
object (Quantity) | |
owner | string (Owner) |
operator | string (Operator) |
description | string (Description) |
location_name | string (Location Name) |
object (Quantity) | |
FluidSummary (object) or string (Fluid Solar) | |
Array of objects (Arrays) [ items ] | |
object (Quantity) | |
Array of objects (Raw Sensors) [ items ] | |
name | string (Name) |
object (Sensors) | |
object (DataUploadDefaults) |
{- "sensor_map": {
- "property1": "string",
- "property2": "string"
}, - "latitude": {
- "magnitude": 0,
- "units": "string"
}, - "longitude": {
- "magnitude": 0,
- "units": "string"
}, - "owner": "string",
- "operator": "string",
- "description": "string",
- "location_name": "string",
- "elevation": {
- "magnitude": 0,
- "units": "string"
}, - "fluid_solar": {
- "name": "string",
- "fluid": "string",
- "concentration": {
- "magnitude": 0,
- "units": "string"
}
}, - "arrays": [
- {
- "sensor_map": {
- "property1": "string",
- "property2": "string"
}, - "id": 0,
- "plant_id": 0,
- "name": "string",
- "collector": "string",
- "area_gr": {
- "magnitude": 0,
- "units": "string"
}, - "area_ap": {
- "magnitude": 0,
- "units": "string"
}, - "azim": {
- "magnitude": 0,
- "units": "string"
}, - "tilt": {
- "magnitude": 0,
- "units": "string"
}, - "row_spacing": {
- "magnitude": 0,
- "units": "string"
}, - "n_rows": {
- "magnitude": 0,
- "units": "string"
}, - "ground_tilt": {
- "magnitude": 0,
- "units": "string"
}, - "mounting_level": {
- "magnitude": 0,
- "units": "string"
}, - "fluidvol_total": {
- "magnitude": 0,
- "units": "string"
}, - "rho_ground": {
- "magnitude": 0,
- "units": "string"
}, - "rho_colbackside": {
- "magnitude": 0,
- "units": "string"
}, - "rho_colsurface": {
- "magnitude": 0,
- "units": "string"
}, - "max_aoi_shadow": {
- "magnitude": 0,
- "units": "string"
}, - "min_elevation_shadow": {
- "magnitude": 0,
- "units": "string"
}
}
], - "fluidvol_total": {
- "magnitude": 0,
- "units": "string"
}, - "raw_sensors": [
- {
- "description": "string",
- "accuracy_class": "low",
- "installation_condition": "perfect",
- "info": { },
- "raw_name": "string",
- "native_unit": "string",
- "sensor_type": "string",
- "id": 0,
- "plant_id": 0,
- "formatted_unit": "string",
- "is_virtual": true,
- "can_calculate": true,
- "is_mapped": true,
- "is_infos_set": true
}
], - "name": "string",
- "sensors": {
- "property1": {
- "description": "string",
- "accuracy_class": "low",
- "installation_condition": "perfect",
- "info": { },
- "raw_name": "string",
- "native_unit": "string",
- "sensor_type": "string"
}, - "property2": {
- "description": "string",
- "accuracy_class": "low",
- "installation_condition": "perfect",
- "info": { },
- "raw_name": "string",
- "native_unit": "string",
- "sensor_type": "string"
}
}, - "data_upload_defaults": {
- "id": 0,
- "datetime_template": "year_month_day",
- "datetime_format": "string",
- "timezone": "string",
- "csv_separator": "string",
- "csv_decimal": "string",
- "csv_encoding": "string",
- "index_col": 0
}
}
[ ]
Export a plant with the sensor types, collector types, and fluid definitions it uses.
plant_id required | integer (Plant Id) |
token required | string (Token) |
{- "collectors": [
- {
- "name": "string",
- "test_reference_area": "string",
- "test_type": "string",
- "gross_length": {
- "magnitude": 0,
- "units": "string"
}, - "iam_method": {
- "method_type": "IAM_K50",
- "k50": {
- "magnitude": 0,
- "units": "string"
}, - "b": {
- "magnitude": 0,
- "units": "string"
}
}, - "manufacturer_name": "string",
- "product_name": "string",
- "test_report_id": "string",
- "licence_number": "string",
- "certificate_date_issued": "2019-08-24T14:15:22Z",
- "certificate_lab": "string",
- "certificate_details": "string",
- "collector_type": "string",
- "area_gr": {
- "magnitude": 0,
- "units": "string"
}, - "area_ap": {
- "magnitude": 0,
- "units": "string"
}, - "gross_width": {
- "magnitude": 0,
- "units": "string"
}, - "gross_height": {
- "magnitude": 0,
- "units": "string"
}, - "a1": {
- "magnitude": 0,
- "units": "string"
}, - "a2": {
- "magnitude": 0,
- "units": "string"
}, - "a5": {
- "magnitude": 0,
- "units": "string"
}, - "a8": {
- "magnitude": 0,
- "units": "string"
}, - "kd": {
- "magnitude": 0,
- "units": "string"
}, - "eta0b": {
- "magnitude": 0,
- "units": "string"
}, - "eta0hem": {
- "magnitude": 0,
- "units": "string"
}, - "f_prime": {
- "magnitude": 0,
- "units": "string"
}, - "concentration_ratio": {
- "magnitude": 0,
- "units": "string"
}, - "calculation_info": {
- "property1": "string",
- "property2": "string"
}, - "aperture_parameters": {
- "a1": {
- "magnitude": 0,
- "units": "string"
}, - "a2": {
- "magnitude": 0,
- "units": "string"
}, - "a5": {
- "magnitude": 0,
- "units": "string"
}, - "a8": {
- "magnitude": 0,
- "units": "string"
}
}, - "id": 0
}
], - "fluid_definitions": [
- {
- "id": 0,
- "model_type": "string",
- "name": "string",
- "manufacturer": "string",
- "description": "string",
- "is_pure": true,
- "dm_model_sha1": "string",
- "hc_model_sha1": "string",
- "heat_capacity_unit_te": "string",
- "heat_capacity_unit_out": "string",
- "heat_capacity_unit_c": "string",
- "density_unit_te": "string",
- "density_unit_out": "string",
- "density_unit_c": "string"
}
], - "plant": {
- "sensor_map": {
- "property1": "string",
- "property2": "string"
}, - "latitude": {
- "magnitude": 0,
- "units": "string"
}, - "longitude": {
- "magnitude": 0,
- "units": "string"
}, - "owner": "string",
- "operator": "string",
- "description": "string",
- "location_name": "string",
- "elevation": {
- "magnitude": 0,
- "units": "string"
}, - "fluid_solar": {
- "fluid": "string",
- "concentration": {
- "magnitude": 0,
- "units": "string"
}
}, - "arrays": [
- {
- "sensor_map": {
- "property1": "string",
- "property2": "string"
}, - "id": 0,
- "plant_id": 0,
- "name": "string",
- "collector": "string",
- "area_gr": {
- "magnitude": 0,
- "units": "string"
}, - "area_ap": {
- "magnitude": 0,
- "units": "string"
}, - "azim": {
- "magnitude": 0,
- "units": "string"
}, - "tilt": {
- "magnitude": 0,
- "units": "string"
}, - "row_spacing": {
- "magnitude": 0,
- "units": "string"
}, - "n_rows": {
- "magnitude": 0,
- "units": "string"
}, - "ground_tilt": {
- "magnitude": 0,
- "units": "string"
}, - "mounting_level": {
- "magnitude": 0,
- "units": "string"
}, - "fluidvol_total": {
- "magnitude": 0,
- "units": "string"
}, - "rho_ground": {
- "magnitude": 0,
- "units": "string"
}, - "rho_colbackside": {
- "magnitude": 0,
- "units": "string"
}, - "rho_colsurface": {
- "magnitude": 0,
- "units": "string"
}, - "max_aoi_shadow": {
- "magnitude": 0,
- "units": "string"
}, - "min_elevation_shadow": {
- "magnitude": 0,
- "units": "string"
}
}
], - "fluidvol_total": {
- "magnitude": 0,
- "units": "string"
}, - "raw_sensors": [
- {
- "description": "string",
- "accuracy_class": "low",
- "installation_condition": "perfect",
- "info": { },
- "raw_name": "string",
- "native_unit": "string",
- "sensor_type": "string",
- "id": 0,
- "plant_id": 0,
- "formatted_unit": "string",
- "is_virtual": true,
- "can_calculate": true,
- "is_mapped": true,
- "is_infos_set": true
}
], - "name": "string",
- "local_tz_string_with_DST": "string",
- "tz_data_offset": 0,
- "data_upload_defaults": {
- "id": 0,
- "datetime_template": "year_month_day",
- "datetime_format": "string",
- "timezone": "string",
- "csv_separator": "string",
- "csv_decimal": "string",
- "csv_encoding": "string",
- "index_col": 0
}
}
}
Create an export job for a complete plant with sensor types, collector types, fluid definitions, and data. When the job completes a tar package containing a json file, and data 1 CSV file per calender year, is available for download
plant_id required | integer (Plant Id) |
include_virtuals | boolean (Include Virtuals) Default: true |
token required | string (Token) |
{- "job_id": "453bd7d7-5355-4d6d-a38e-d9e7eb218c3f",
- "href": "string"
}
plant_id required | integer (Plant Id) |
eval_start | string <date-time> (Eval Start) |
eval_end | string <date-time> (Eval End) |
token required | string (Token) |
{- "nan_report": {
- "property1": "string",
- "property2": "string"
}
}
plant_id required | integer (Plant Id) |
eval_start | string <date-time> (Eval Start) |
eval_end | string <date-time> (Eval End) |
token required | string (Token) |
null
id required | integer (Id) |
required | integer or string (Plant Id) |
raw_name | string (Raw Name) |
token required | string (Token) |
{- "description": "string",
- "accuracy_class": "low",
- "installation_condition": "perfect",
- "info": { },
- "raw_name": "string",
- "native_unit": "string",
- "sensor_type": "string",
- "id": 0,
- "plant_id": 0,
- "formatted_unit": "string",
- "is_virtual": true,
- "can_calculate": true,
- "is_mapped": true,
- "is_infos_set": true
}
required | integer or string (Plant Id) |
id | integer (Id) |
raw_name | string (Raw Name) |
token required | string (Token) |
{- "description": "string",
- "accuracy_class": "low",
- "installation_condition": "perfect",
- "info": { },
- "raw_name": "string",
- "native_unit": "string",
- "sensor_type": "string",
- "id": 0,
- "plant_id": 0,
- "formatted_unit": "string",
- "is_virtual": true,
- "can_calculate": true,
- "is_mapped": true,
- "is_infos_set": true
}
id required | integer (Id) |
required | integer or string (Plant Id) |
eval_start | string <date-time> (Eval Start) |
eval_end | string <date-time> (Eval End) |
token required | string (Token) |
null
Create a new sensor or sensors. raw_name
is required.
To create multiple sensors at once, pass a list of sensor structures
plant_id required | integer (Plant Id) |
token required | string (Token) |
description | string (Description) |
accuracy_class | string (AccuracyClass) Enum: "low" "medium" "high" An enumeration. |
installation_condition | string (InstallCondition) Enum: "perfect" "fair" "bad" An enumeration. |
info | object (Info) Default: {} |
raw_name required | string (Raw Name) |
native_unit | string (Native Unit) |
sensor_type | string (Sensor Type) |
[ ]
[- {
- "description": "string",
- "accuracy_class": "low",
- "installation_condition": "perfect",
- "info": { },
- "raw_name": "string",
- "native_unit": "string",
- "sensor_type": "string",
- "id": 0,
- "plant_id": 0,
- "formatted_unit": "string",
- "is_virtual": true,
- "can_calculate": true,
- "is_mapped": true,
- "is_infos_set": true
}
]
required | integer or string (Plant Id) |
id | integer (Id) |
name | string (Name) |
plant_name | string (Plant Name) |
token required | string (Token) |
{- "sensor_map": {
- "property1": "string",
- "property2": "string"
}, - "id": 0,
- "plant_id": 0,
- "name": "string",
- "collector": "string",
- "area_gr": {
- "magnitude": 0,
- "units": "string"
}, - "area_ap": {
- "magnitude": 0,
- "units": "string"
}, - "azim": {
- "magnitude": 0,
- "units": "string"
}, - "tilt": {
- "magnitude": 0,
- "units": "string"
}, - "row_spacing": {
- "magnitude": 0,
- "units": "string"
}, - "n_rows": {
- "magnitude": 0,
- "units": "string"
}, - "ground_tilt": {
- "magnitude": 0,
- "units": "string"
}, - "mounting_level": {
- "magnitude": 0,
- "units": "string"
}, - "fluidvol_total": {
- "magnitude": 0,
- "units": "string"
}, - "rho_ground": {
- "magnitude": 0,
- "units": "string"
}, - "rho_colbackside": {
- "magnitude": 0,
- "units": "string"
}, - "rho_colsurface": {
- "magnitude": 0,
- "units": "string"
}, - "max_aoi_shadow": {
- "magnitude": 0,
- "units": "string"
}, - "min_elevation_shadow": {
- "magnitude": 0,
- "units": "string"
}
}
Create a new array or arrays. name
and collector
are required.
To create multiple arrays at once, pass a list of array structures.
sensors can be mapped by passing a dict of sensor structures to sensors
(NOTE not actually tested, may not work yet.
plant_id required | integer (Plant Id) |
token required | string (Token) |
sensor_map | object (Sensor Map) |
id | integer (Id) |
plant_id | integer (Plant Id) |
name required | string (Name) |
collector required | string (Collector) |
object (Quantity) | |
object (Quantity) | |
required | object (Quantity) |
required | object (Quantity) |
object (Quantity) | |
object (Quantity) | |
object (Quantity) | |
object (Quantity) | |
object (Quantity) | |
object (Quantity) | |
object (Quantity) | |
object (Quantity) | |
object (Quantity) | |
object (Quantity) | |
object (Sensors) |
{- "sensor_map": { },
- "id": 0,
- "plant_id": 0,
- "name": "string",
- "collector": "string",
- "area_gr": {
- "magnitude": 0,
- "units": "string"
}, - "area_ap": {
- "magnitude": 0,
- "units": "string"
}, - "azim": {
- "magnitude": 0,
- "units": "string"
}, - "tilt": {
- "magnitude": 0,
- "units": "string"
}, - "row_spacing": {
- "magnitude": 0,
- "units": "string"
}, - "n_rows": {
- "magnitude": 0,
- "units": "string"
}, - "ground_tilt": {
- "magnitude": 0,
- "units": "string"
}, - "mounting_level": {
- "magnitude": 0,
- "units": "string"
}, - "fluidvol_total": {
- "magnitude": 0,
- "units": "string"
}, - "rho_ground": {
- "magnitude": 0,
- "units": "string"
}, - "rho_colbackside": {
- "magnitude": 0,
- "units": "string"
}, - "rho_colsurface": {
- "magnitude": 0,
- "units": "string"
}, - "max_aoi_shadow": {
- "magnitude": 0,
- "units": "string"
}, - "min_elevation_shadow": {
- "magnitude": 0,
- "units": "string"
}, - "sensors": {
- "property1": {
- "description": "string",
- "accuracy_class": "low",
- "installation_condition": "perfect",
- "info": { },
- "raw_name": "string",
- "native_unit": "string",
- "sensor_type": "string"
}, - "property2": {
- "description": "string",
- "accuracy_class": "low",
- "installation_condition": "perfect",
- "info": { },
- "raw_name": "string",
- "native_unit": "string",
- "sensor_type": "string"
}
}
}
{- "sensor_map": {
- "property1": "string",
- "property2": "string"
}, - "id": 0,
- "plant_id": 0,
- "name": "string",
- "collector": "string",
- "area_gr": {
- "magnitude": 0,
- "units": "string"
}, - "area_ap": {
- "magnitude": 0,
- "units": "string"
}, - "azim": {
- "magnitude": 0,
- "units": "string"
}, - "tilt": {
- "magnitude": 0,
- "units": "string"
}, - "row_spacing": {
- "magnitude": 0,
- "units": "string"
}, - "n_rows": {
- "magnitude": 0,
- "units": "string"
}, - "ground_tilt": {
- "magnitude": 0,
- "units": "string"
}, - "mounting_level": {
- "magnitude": 0,
- "units": "string"
}, - "fluidvol_total": {
- "magnitude": 0,
- "units": "string"
}, - "rho_ground": {
- "magnitude": 0,
- "units": "string"
}, - "rho_colbackside": {
- "magnitude": 0,
- "units": "string"
}, - "rho_colsurface": {
- "magnitude": 0,
- "units": "string"
}, - "max_aoi_shadow": {
- "magnitude": 0,
- "units": "string"
}, - "min_elevation_shadow": {
- "magnitude": 0,
- "units": "string"
}
}
plant_id required | integer (Plant Id) |
id | integer (Id) |
name | string (Name) |
plant_name | string (Plant Name) |
token required | string (Token) |
{- "id": 0,
- "name": "string",
- "manufacturer_name": "string",
- "product_name": "string",
- "fluid": {
- "id": 0,
- "model_type": "string",
- "name": "string",
- "manufacturer": "string",
- "description": "string",
- "is_pure": true,
- "dm_model_sha1": "string",
- "hc_model_sha1": "string",
- "heat_capacity_unit_te": "string",
- "heat_capacity_unit_out": "string",
- "heat_capacity_unit_c": "string",
- "density_unit_te": "string",
- "density_unit_out": "string",
- "density_unit_c": "string"
}, - "concentration": {
- "magnitude": 0,
- "units": "string"
}
}
id required | integer (Id) |
token required | string (Token) |
{- "id": 0,
- "name": "string",
- "manufacturer_name": "string",
- "product_name": "string",
- "fluid": {
- "id": 0,
- "model_type": "string",
- "name": "string",
- "manufacturer": "string",
- "description": "string",
- "is_pure": true,
- "dm_model_sha1": "string",
- "hc_model_sha1": "string",
- "heat_capacity_unit_te": "string",
- "heat_capacity_unit_out": "string",
- "heat_capacity_unit_c": "string",
- "density_unit_te": "string",
- "density_unit_out": "string",
- "density_unit_c": "string"
}, - "concentration": {
- "magnitude": 0,
- "units": "string"
}
}
plant_id required | integer (Plant Id) |
id | integer (Id) |
search_start | string <date-time> (Search Start) |
search_end | string <date-time> (Search End) |
search_timezone | string (Search Timezone) |
token required | string (Token) |
[ ]
plant_id required | integer (Plant Id) |
event_start required | string <date-time> (Event Start) |
timezone required | string (Timezone) |
event_end | string <date-time> (Event End) |
description | string (Description) |
ignored_range | boolean (Ignored Range) Default: false |
token required | string (Token) |
{- "id": 0,
- "plant": "string",
- "event_start": "2019-08-24T14:15:22Z",
- "event_end": "2019-08-24T14:15:22Z",
- "ignored_range": false,
- "description": "string",
- "original_timezone": "string"
}
Ingests csv files to database. For details, see docstring of the data_uploader
module.
plant_id : A pre-configured plant with this name must exist in the database. files : list List of csv files that are batch ingested. datetime_template : DatetimeTemplates Templates to simplify the definition of a datetime format. Overridden by datetime_format (if not None). datetime_format : str Used to parse datetimes from csv file. Leave to None infers the format. timezone : str or pytz.timezone. Optional. To be provided if timestamps in the data have no time zone information. csv_separator : str Used in pd.read_csv as 'sep' kwarg csv_decimal : str Used in pd.read_csv as 'decimal' kwarg csv_encoding : str Used in pd.read_csv as 'encoding' kwarg index_col : int DataUploader will try to parse timestamps from this column. response : fastapi.Response sess : sqlalchemy.orm.Session crd : api.dependencies.crud
upload_response : DataUploadResponse
ConnectionError HTTPException
plant_id required | integer (Plant Id) |
datetime_template | any (DatetimeTemplates) Enum: "year_month_day" "day_month_year" "month_day_year" An enumeration. |
datetime_format | string (Datetime Format) |
timezone | string (Timezone) |
csv_separator | string (Csv Separator) Default: ";" |
csv_decimal | string (Csv Decimal) Default: "." |
csv_encoding | string (Csv Encoding) Default: "utf-8" |
index_col | integer (Index Col) Default: 0 |
token required | string (Token) |
files required | Array of strings <binary> (Files) |
{- "n_uploaded_data_rows": 0,
- "n_duplicates_index": 0,
- "response_per_file": [
- {
- "name": "string",
- "exists": true,
- "size_bytes": 0,
- "missing_columns": [ ],
- "error_cause": "string",
- "status": "string",
- "date_of_upload": "2019-08-24T14:15:22Z",
- "start": "2019-08-24T14:15:22Z",
- "end": "2019-08-24T14:15:22Z",
- "n_rows": 0,
- "id": 0
}
], - "db_response": { }
}
Ingests csv files to database. For details, see docstring of the data_uploader
module.
plant_id : A pre-configured plant with this name must exist in the database. files : list List of csv files that are batch ingested. csv_separator : str Used in pd.read_csv as 'sep' kwarg csv_decimal : str Used in pd.read_csv as 'decimal' kwarg csv_encoding : str Used in pd.read_csv as 'encoding' kwarg index_col : int DataUploader will try to parse timestamps from this column. datetime_template : DatetimeTemplates Templates to simplify the definition of a datetime format. Overridden by datetime_format (if not None). datetime_format : str Used to parse timestamps from csv file. Leave to None infers the format. timezone : str or pytz.timezone. Optional. To be provided if timestamps in the data have no time zone information. response : fastapi.Response sess : sqlalchemy.orm.Session crd : api.dependencies.crud
upload_response : DataColumnsResponse
ConnectionError HTTPException
plant_id required | integer (Plant Id) |
csv_separator | string (Csv Separator) Default: ";" |
csv_decimal | string (Csv Decimal) Default: "." |
csv_encoding | string (Csv Encoding) Default: "utf-8" |
index_col | integer (Index Col) Default: 0 |
datetime_template | any (DatetimeTemplates) Enum: "year_month_day" "day_month_year" "month_day_year" An enumeration. |
datetime_format | string (Datetime Format) |
timezone | string (Timezone) |
token required | string (Token) |
files required | Array of strings <binary> (Files) |
{- "sensors": [
- "string"
], - "dtypes": [
- "string"
], - "index": "string",
- "settings": {
- "csv_separator": "string",
- "csv_decimal": "string",
- "csv_encoding": "string",
- "index_col": 0,
- "datetime_template": "string",
- "datetime_format": "string",
- "timezone": "string"
}, - "data": { }
}
Ingests csv files to database. For details, see docstring of the data_uploader
module.
plant_id : A pre-configured plant with this name must exist in the database. files : list List of csv files that are batch ingested. csv_separator : str Used in pd.read_csv as 'sep' kwarg csv_decimal : str Used in pd.read_csv as 'decimal' kwarg csv_encoding : str Used in pd.read_csv as 'encoding' kwarg index_col : int DataUploader will try to parse timestamps from this column. datetime_template : DatetimeTemplates Templates to simplify the definition of a datetime format. Overridden by datetime_format (if not None). datetime_format : str Used to parse timestamps from csv file. Leave to None infers the format. timezone : str or pytz.timezone. Optional. To be provided if timestamps in the data have no time zone information. response : fastapi.Response sess : sqlalchemy.orm.Session crd : api.dependencies.crud
upload_response : DataColumnsResponse
ConnectionError HTTPException
plant_id required | integer (Plant Id) |
csv_separator | string (Csv Separator) Default: ";" |
csv_decimal | string (Csv Decimal) Default: "." |
csv_encoding | string (Csv Encoding) Default: "utf-8" |
index_col | integer (Index Col) Default: 0 |
datetime_template | any (DatetimeTemplates) Enum: "year_month_day" "day_month_year" "month_day_year" An enumeration. |
datetime_format | string (Datetime Format) |
timezone | string (Timezone) |
token required | string (Token) |
files required | Array of strings <binary> (Files) |
{- "sensors": [
- "string"
], - "dtypes": [
- "string"
], - "index": "string",
- "settings": {
- "csv_separator": "string",
- "csv_decimal": "string",
- "csv_encoding": "string",
- "index_col": 0,
- "datetime_template": "string",
- "datetime_format": "string",
- "timezone": "string"
}, - "data": { }
}
plant_id required | integer (Plant Id) |
token required | string (Token) |
[- {
- "name": "string",
- "exists": true,
- "size_bytes": 0,
- "missing_columns": [ ],
- "error_cause": "string",
- "status": "string",
- "date_of_upload": "2019-08-24T14:15:22Z",
- "start": "2019-08-24T14:15:22Z",
- "end": "2019-08-24T14:15:22Z",
- "n_rows": 0,
- "id": 0
}
]
id required | integer (Id) |
raw_name | string (Raw Name) |
integer or string (Plant Id) | |
token required | string (Token) |
{- "description": "string",
- "accuracy_class": "low",
- "installation_condition": "perfect",
- "info": { },
- "raw_name": "string",
- "native_unit": "string",
- "sensor_type": "string",
- "id": 0,
- "plant_id": 0,
- "formatted_unit": "string",
- "is_virtual": true,
- "can_calculate": true,
- "is_mapped": true,
- "is_infos_set": true
}
id required | integer (Id) |
token required | string (Token) |
description | string (Description) |
accuracy_class | string (AccuracyClass) Enum: "low" "medium" "high" An enumeration. |
installation_condition | string (InstallCondition) Enum: "perfect" "fair" "bad" An enumeration. |
info | object (Info) Default: {} |
raw_name | string (Raw Name) |
native_unit | string (Native Unit) |
sensor_type | string (Sensor Type) |
id | integer (Id) |
plant_id | integer (Plant Id) |
formatted_unit | string (Formatted Unit) |
is_virtual | boolean (Is Virtual) |
can_calculate | boolean (Can Calculate) |
is_mapped | boolean (Is Mapped) |
is_infos_set | boolean (Is Infos Set) |
{- "description": "string",
- "accuracy_class": "low",
- "installation_condition": "perfect",
- "info": { },
- "raw_name": "string",
- "native_unit": "string",
- "sensor_type": "string",
- "id": 0,
- "plant_id": 0,
- "formatted_unit": "string",
- "is_virtual": true,
- "can_calculate": true,
- "is_mapped": true,
- "is_infos_set": true
}
{- "description": "string",
- "accuracy_class": "low",
- "installation_condition": "perfect",
- "info": { },
- "raw_name": "string",
- "native_unit": "string",
- "sensor_type": "string",
- "id": 0,
- "plant_id": 0,
- "formatted_unit": "string",
- "is_virtual": true,
- "can_calculate": true,
- "is_mapped": true,
- "is_infos_set": true
}
id required | integer (Id) |
integer or string (Plant Id) | |
eval_start | string <date-time> (Eval Start) |
eval_end | string <date-time> (Eval End) |
token required | string (Token) |
{- "description": "string",
- "accuracy_class": "low",
- "installation_condition": "perfect",
- "info": { },
- "raw_name": "string",
- "native_unit": "string",
- "sensor_type": "string",
- "id": 0,
- "plant_id": 0,
- "formatted_unit": "string",
- "is_virtual": true,
- "can_calculate": true,
- "is_mapped": true,
- "is_infos_set": true
}
token required | string (Token) |
description | string (Description) |
accuracy_class | string (AccuracyClass) Enum: "low" "medium" "high" An enumeration. |
installation_condition | string (InstallCondition) Enum: "perfect" "fair" "bad" An enumeration. |
info | object (Info) Default: {} |
raw_name | string (Raw Name) |
native_unit | string (Native Unit) |
sensor_type | string (Sensor Type) |
id required | integer (Id) |
plant_id | integer (Plant Id) |
formatted_unit | string (Formatted Unit) |
is_virtual | boolean (Is Virtual) |
can_calculate | boolean (Can Calculate) |
is_mapped | boolean (Is Mapped) |
is_infos_set | boolean (Is Infos Set) |
[- {
- "description": "string",
- "accuracy_class": "low",
- "installation_condition": "perfect",
- "info": { },
- "raw_name": "string",
- "native_unit": "string",
- "sensor_type": "string",
- "id": 0,
- "plant_id": 0,
- "formatted_unit": "string",
- "is_virtual": true,
- "can_calculate": true,
- "is_mapped": true,
- "is_infos_set": true
}
]
[- {
- "description": "string",
- "accuracy_class": "low",
- "installation_condition": "perfect",
- "info": { },
- "raw_name": "string",
- "native_unit": "string",
- "sensor_type": "string",
- "id": 0,
- "plant_id": 0,
- "formatted_unit": "string",
- "is_virtual": true,
- "can_calculate": true,
- "is_mapped": true,
- "is_infos_set": true
}
]
id required | integer (Id) |
name | string (Name) |
integer or string (Plant Id) | |
plant_name | string (Plant Name) |
token required | string (Token) |
{- "sensor_map": {
- "property1": "string",
- "property2": "string"
}, - "id": 0,
- "plant_id": 0,
- "name": "string",
- "collector": "string",
- "area_gr": {
- "magnitude": 0,
- "units": "string"
}, - "area_ap": {
- "magnitude": 0,
- "units": "string"
}, - "azim": {
- "magnitude": 0,
- "units": "string"
}, - "tilt": {
- "magnitude": 0,
- "units": "string"
}, - "row_spacing": {
- "magnitude": 0,
- "units": "string"
}, - "n_rows": {
- "magnitude": 0,
- "units": "string"
}, - "ground_tilt": {
- "magnitude": 0,
- "units": "string"
}, - "mounting_level": {
- "magnitude": 0,
- "units": "string"
}, - "fluidvol_total": {
- "magnitude": 0,
- "units": "string"
}, - "rho_ground": {
- "magnitude": 0,
- "units": "string"
}, - "rho_colbackside": {
- "magnitude": 0,
- "units": "string"
}, - "rho_colsurface": {
- "magnitude": 0,
- "units": "string"
}, - "max_aoi_shadow": {
- "magnitude": 0,
- "units": "string"
}, - "min_elevation_shadow": {
- "magnitude": 0,
- "units": "string"
}
}
id required | integer (Id) |
token required | string (Token) |
object (Sensor Map) | |
id | integer (Id) |
plant_id | integer (Plant Id) |
name | string (Name) |
collector | string (Collector) |
object (Quantity) | |
object (Quantity) | |
object (Quantity) | |
object (Quantity) | |
object (Quantity) | |
object (Quantity) | |
object (Quantity) | |
object (Quantity) | |
object (Quantity) | |
object (Quantity) | |
object (Quantity) | |
object (Quantity) | |
object (Quantity) | |
object (Quantity) |
{- "sensor_map": {
- "property1": "string",
- "property2": "string"
}, - "id": 0,
- "plant_id": 0,
- "name": "string",
- "collector": "string",
- "area_gr": {
- "magnitude": 0,
- "units": "string"
}, - "area_ap": {
- "magnitude": 0,
- "units": "string"
}, - "azim": {
- "magnitude": 0,
- "units": "string"
}, - "tilt": {
- "magnitude": 0,
- "units": "string"
}, - "row_spacing": {
- "magnitude": 0,
- "units": "string"
}, - "n_rows": {
- "magnitude": 0,
- "units": "string"
}, - "ground_tilt": {
- "magnitude": 0,
- "units": "string"
}, - "mounting_level": {
- "magnitude": 0,
- "units": "string"
}, - "fluidvol_total": {
- "magnitude": 0,
- "units": "string"
}, - "rho_ground": {
- "magnitude": 0,
- "units": "string"
}, - "rho_colbackside": {
- "magnitude": 0,
- "units": "string"
}, - "rho_colsurface": {
- "magnitude": 0,
- "units": "string"
}, - "max_aoi_shadow": {
- "magnitude": 0,
- "units": "string"
}, - "min_elevation_shadow": {
- "magnitude": 0,
- "units": "string"
}
}
{- "sensor_map": {
- "property1": "string",
- "property2": "string"
}, - "id": 0,
- "plant_id": 0,
- "name": "string",
- "collector": "string",
- "area_gr": {
- "magnitude": 0,
- "units": "string"
}, - "area_ap": {
- "magnitude": 0,
- "units": "string"
}, - "azim": {
- "magnitude": 0,
- "units": "string"
}, - "tilt": {
- "magnitude": 0,
- "units": "string"
}, - "row_spacing": {
- "magnitude": 0,
- "units": "string"
}, - "n_rows": {
- "magnitude": 0,
- "units": "string"
}, - "ground_tilt": {
- "magnitude": 0,
- "units": "string"
}, - "mounting_level": {
- "magnitude": 0,
- "units": "string"
}, - "fluidvol_total": {
- "magnitude": 0,
- "units": "string"
}, - "rho_ground": {
- "magnitude": 0,
- "units": "string"
}, - "rho_colbackside": {
- "magnitude": 0,
- "units": "string"
}, - "rho_colsurface": {
- "magnitude": 0,
- "units": "string"
}, - "max_aoi_shadow": {
- "magnitude": 0,
- "units": "string"
}, - "min_elevation_shadow": {
- "magnitude": 0,
- "units": "string"
}
}
id required | integer (Id) |
token required | string (Token) |
{- "id": 0,
- "plant": "string",
- "event_start": "2019-08-24T14:15:22Z",
- "event_end": "2019-08-24T14:15:22Z",
- "ignored_range": false,
- "description": "string",
- "original_timezone": "string"
}
plant_id required | integer (Plant Id) |
eval_start | string <date-time> (Eval Start) |
eval_end | string <date-time> (Eval End) |
token required | string (Token) |
null
plant_id required | integer (Plant Id) |
id | integer (Id) |
search_start | string <date-time> (Search Start) |
search_end | string <date-time> (Search End) |
search_timezone | string (Search Timezone) |
token required | string (Token) |
[ ]
plant_id required | integer (Plant Id) |
event_start required | string <date-time> (Event Start) |
timezone required | string (Timezone) |
event_end | string <date-time> (Event End) |
description | string (Description) |
ignored_range | boolean (Ignored Range) Default: false |
token required | string (Token) |
{- "id": 0,
- "plant": "string",
- "event_start": "2019-08-24T14:15:22Z",
- "event_end": "2019-08-24T14:15:22Z",
- "ignored_range": false,
- "description": "string",
- "original_timezone": "string"
}
id required | integer (Id) |
token required | string (Token) |
{- "id": 0,
- "plant": "string",
- "event_start": "2019-08-24T14:15:22Z",
- "event_end": "2019-08-24T14:15:22Z",
- "ignored_range": false,
- "description": "string",
- "original_timezone": "string"
}