WindTurbine Data Classes
examples.wind_turbine.data_classes
Blade
Bases: DomainModel
This represents the reading version of blade.
It is used to when data is retrieved from CDF.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
space
|
The space where the node is located. |
required | |
external_id
|
The external id of the blade. |
required | |
data_record
|
The data record of the blade node. |
required | |
is_damaged
|
The is damaged field. |
required | |
name
|
Name of the instance |
required | |
sensor_positions
|
The sensor position field. |
required |
Source code in examples/wind_turbine/data_classes/_blade.py
BladeGraphQL
Bases: GraphQLCore
This represents the reading version of blade, used when data is retrieved from CDF using GraphQL.
It is used when retrieving data from CDF using GraphQL.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
space
|
The space where the node is located. |
required | |
external_id
|
The external id of the blade. |
required | |
data_record
|
The data record of the blade node. |
required | |
is_damaged
|
The is damaged field. |
required | |
name
|
Name of the instance |
required | |
sensor_positions
|
The sensor position field. |
required |
Source code in examples/wind_turbine/data_classes/_blade.py
as_read()
BladeList
Bases: DomainModelList[Blade]
List of blades in the read version.
Source code in examples/wind_turbine/data_classes/_blade.py
as_write()
Convert these read versions of blade to the writing versions.
BladeWrite
Bases: DomainModelWrite
This represents the writing version of blade.
It is used to when data is sent to CDF.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
space
|
The space where the node is located. |
required | |
external_id
|
The external id of the blade. |
required | |
data_record
|
The data record of the blade node. |
required | |
is_damaged
|
The is damaged field. |
required | |
name
|
Name of the instance |
required |
Source code in examples/wind_turbine/data_classes/_blade.py
BladeWriteList
Bases: DomainModelWriteList[BladeWrite]
List of blades in the writing version.
Source code in examples/wind_turbine/data_classes/_blade.py
DataSheet
Bases: DomainModel
This represents the reading version of data sheet.
It is used to when data is retrieved from CDF.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
space
|
The space where the node is located. |
required | |
external_id
|
The external id of the data sheet. |
required | |
data_record
|
The data record of the data sheet node. |
required | |
description
|
Description of the instance |
required | |
directory
|
Contains the path elements from the source (if the source system has a file system hierarchy or similar.) |
required | |
is_uploaded
|
Specifies if the file content has been uploaded to Cognite Data Fusion or not. |
required | |
mime_type
|
The MIME type of the file. |
required | |
name
|
Name of the instance |
required | |
uploaded_time
|
The time the file upload completed. |
required |
Source code in examples/wind_turbine/data_classes/_data_sheet.py
as_write()
Convert this read version of data sheet to the writing version.
DataSheetGraphQL
Bases: GraphQLCore
This represents the reading version of data sheet, used when data is retrieved from CDF using GraphQL.
It is used when retrieving data from CDF using GraphQL.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
space
|
The space where the node is located. |
required | |
external_id
|
The external id of the data sheet. |
required | |
data_record
|
The data record of the data sheet node. |
required | |
description
|
Description of the instance |
required | |
directory
|
Contains the path elements from the source (if the source system has a file system hierarchy or similar.) |
required | |
is_uploaded
|
Specifies if the file content has been uploaded to Cognite Data Fusion or not. |
required | |
mime_type
|
The MIME type of the file. |
required | |
name
|
Name of the instance |
required | |
uploaded_time
|
The time the file upload completed. |
required |
Source code in examples/wind_turbine/data_classes/_data_sheet.py
as_read()
as_write()
Convert this GraphQL format of data sheet to the writing format.
DataSheetList
Bases: DomainModelList[DataSheet]
List of data sheets in the read version.
Source code in examples/wind_turbine/data_classes/_data_sheet.py
as_write()
Convert these read versions of data sheet to the writing versions.
DataSheetWrite
Bases: DomainModelWrite
This represents the writing version of data sheet.
It is used to when data is sent to CDF.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
space
|
The space where the node is located. |
required | |
external_id
|
The external id of the data sheet. |
required | |
data_record
|
The data record of the data sheet node. |
required | |
description
|
Description of the instance |
required | |
directory
|
Contains the path elements from the source (if the source system has a file system hierarchy or similar.) |
required | |
mime_type
|
The MIME type of the file. |
required | |
name
|
Name of the instance |
required |
Source code in examples/wind_turbine/data_classes/_data_sheet.py
DataSheetWriteList
Bases: DomainModelWriteList[DataSheetWrite]
List of data sheets in the writing version.
Source code in examples/wind_turbine/data_classes/_data_sheet.py
Distance
Bases: DomainRelation
This represents the reading version of distance.
It is used to when data is retrieved from CDF.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
space
|
The space where the node is located. |
required | |
external_id
|
The external id of the distance. |
required | |
data_record
|
The data record of the distance edge. |
required | |
end_node
|
The end node of this edge. |
required | |
distance
|
The distance field. |
required |
Source code in examples/wind_turbine/data_classes/_distance.py
as_write()
DistanceGraphQL
Bases: GraphQLCore
This represents the reading version of distance, used when data is retrieved from CDF using GraphQL.
It is used when retrieving data from CDF using GraphQL.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
space
|
The space where the node is located. |
required | |
external_id
|
The external id of the distance. |
required | |
data_record
|
The data record of the distance node. |
required | |
end_node
|
The end node of this edge. |
required | |
distance
|
The distance field. |
required |
Source code in examples/wind_turbine/data_classes/_distance.py
as_read()
as_write()
DistanceList
Bases: DomainRelationList[Distance]
List of distances in the reading version.
Source code in examples/wind_turbine/data_classes/_distance.py
as_write()
Convert this read version of distance list to the writing version.
DistanceWrite
Bases: DomainRelationWrite
This represents the writing version of distance.
It is used to when data is sent to CDF.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
space
|
The space where the node is located. |
required | |
external_id
|
The external id of the distance. |
required | |
data_record
|
The data record of the distance edge. |
required | |
end_node
|
The end node of this edge. |
required | |
distance
|
The distance field. |
required |
Source code in examples/wind_turbine/data_classes/_distance.py
DistanceWriteList
Bases: DomainRelationWriteList[DistanceWrite]
List of distances in the writing version.
Source code in examples/wind_turbine/data_classes/_distance.py
Gearbox
Bases: DomainModel
This represents the reading version of gearbox.
It is used to when data is retrieved from CDF.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
space
|
The space where the node is located. |
required | |
external_id
|
The external id of the gearbox. |
required | |
data_record
|
The data record of the gearbox node. |
required | |
displacement_x
|
The displacement x field. |
required | |
displacement_y
|
The displacement y field. |
required | |
displacement_z
|
The displacement z field. |
required | |
nacelle
|
The nacelle field. |
required |
Source code in examples/wind_turbine/data_classes/_gearbox.py
as_write()
GearboxGraphQL
Bases: GraphQLCore
This represents the reading version of gearbox, used when data is retrieved from CDF using GraphQL.
It is used when retrieving data from CDF using GraphQL.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
space
|
The space where the node is located. |
required | |
external_id
|
The external id of the gearbox. |
required | |
data_record
|
The data record of the gearbox node. |
required | |
displacement_x
|
The displacement x field. |
required | |
displacement_y
|
The displacement y field. |
required | |
displacement_z
|
The displacement z field. |
required | |
nacelle
|
The nacelle field. |
required |
Source code in examples/wind_turbine/data_classes/_gearbox.py
as_read()
as_write()
GearboxList
Bases: DomainModelList[Gearbox]
List of gearboxes in the read version.
Source code in examples/wind_turbine/data_classes/_gearbox.py
as_write()
Convert these read versions of gearbox to the writing versions.
GearboxWrite
Bases: DomainModelWrite
This represents the writing version of gearbox.
It is used to when data is sent to CDF.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
space
|
The space where the node is located. |
required | |
external_id
|
The external id of the gearbox. |
required | |
data_record
|
The data record of the gearbox node. |
required | |
displacement_x
|
The displacement x field. |
required | |
displacement_y
|
The displacement y field. |
required | |
displacement_z
|
The displacement z field. |
required |
Source code in examples/wind_turbine/data_classes/_gearbox.py
GearboxWriteList
Bases: DomainModelWriteList[GearboxWrite]
List of gearboxes in the writing version.
Source code in examples/wind_turbine/data_classes/_gearbox.py
GeneratingUnit
Bases: DomainModel
This represents the reading version of generating unit.
It is used to when data is retrieved from CDF.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
space
|
The space where the node is located. |
required | |
external_id
|
The external id of the generating unit. |
required | |
data_record
|
The data record of the generating unit node. |
required | |
capacity
|
The capacity field. |
required | |
description
|
Description of the instance |
required | |
name
|
Name of the instance |
required |
Source code in examples/wind_turbine/data_classes/_generating_unit.py
as_write()
Convert this read version of generating unit to the writing version.
GeneratingUnitGraphQL
Bases: GraphQLCore
This represents the reading version of generating unit, used when data is retrieved from CDF using GraphQL.
It is used when retrieving data from CDF using GraphQL.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
space
|
The space where the node is located. |
required | |
external_id
|
The external id of the generating unit. |
required | |
data_record
|
The data record of the generating unit node. |
required | |
capacity
|
The capacity field. |
required | |
description
|
Description of the instance |
required | |
name
|
Name of the instance |
required |
Source code in examples/wind_turbine/data_classes/_generating_unit.py
as_read()
Convert this GraphQL format of generating unit to the reading format.
as_write()
Convert this GraphQL format of generating unit to the writing format.
GeneratingUnitList
Bases: DomainModelList[GeneratingUnit]
List of generating units in the read version.
Source code in examples/wind_turbine/data_classes/_generating_unit.py
as_write()
Convert these read versions of generating unit to the writing versions.
GeneratingUnitWrite
Bases: DomainModelWrite
This represents the writing version of generating unit.
It is used to when data is sent to CDF.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
space
|
The space where the node is located. |
required | |
external_id
|
The external id of the generating unit. |
required | |
data_record
|
The data record of the generating unit node. |
required | |
capacity
|
The capacity field. |
required | |
description
|
Description of the instance |
required | |
name
|
Name of the instance |
required |
Source code in examples/wind_turbine/data_classes/_generating_unit.py
GeneratingUnitWriteList
Bases: DomainModelWriteList[GeneratingUnitWrite]
List of generating units in the writing version.
Source code in examples/wind_turbine/data_classes/_generating_unit.py
Generator
Bases: DomainModel
This represents the reading version of generator.
It is used to when data is retrieved from CDF.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
space
|
The space where the node is located. |
required | |
external_id
|
The external id of the generator. |
required | |
data_record
|
The data record of the generator node. |
required | |
generator_speed_controller
|
The generator speed controller field. |
required | |
generator_speed_controller_reference
|
The generator speed controller reference field. |
required | |
nacelle
|
The nacelle field. |
required |
Source code in examples/wind_turbine/data_classes/_generator.py
as_write()
Convert this read version of generator to the writing version.
GeneratorGraphQL
Bases: GraphQLCore
This represents the reading version of generator, used when data is retrieved from CDF using GraphQL.
It is used when retrieving data from CDF using GraphQL.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
space
|
The space where the node is located. |
required | |
external_id
|
The external id of the generator. |
required | |
data_record
|
The data record of the generator node. |
required | |
generator_speed_controller
|
The generator speed controller field. |
required | |
generator_speed_controller_reference
|
The generator speed controller reference field. |
required | |
nacelle
|
The nacelle field. |
required |
Source code in examples/wind_turbine/data_classes/_generator.py
as_read()
as_write()
Convert this GraphQL format of generator to the writing format.
GeneratorList
Bases: DomainModelList[Generator]
List of generators in the read version.
Source code in examples/wind_turbine/data_classes/_generator.py
as_write()
Convert these read versions of generator to the writing versions.
GeneratorWrite
Bases: DomainModelWrite
This represents the writing version of generator.
It is used to when data is sent to CDF.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
space
|
The space where the node is located. |
required | |
external_id
|
The external id of the generator. |
required | |
data_record
|
The data record of the generator node. |
required | |
generator_speed_controller
|
The generator speed controller field. |
required | |
generator_speed_controller_reference
|
The generator speed controller reference field. |
required |
Source code in examples/wind_turbine/data_classes/_generator.py
GeneratorWriteList
Bases: DomainModelWriteList[GeneratorWrite]
List of generators in the writing version.
Source code in examples/wind_turbine/data_classes/_generator.py
HighSpeedShaft
Bases: DomainModel
This represents the reading version of high speed shaft.
It is used to when data is retrieved from CDF.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
space
|
The space where the node is located. |
required | |
external_id
|
The external id of the high speed shaft. |
required | |
data_record
|
The data record of the high speed shaft node. |
required | |
bending_moment_y
|
The bending moment y field. |
required | |
bending_monent_x
|
The bending monent x field. |
required | |
nacelle
|
The nacelle field. |
required | |
torque
|
The torque field. |
required |
Source code in examples/wind_turbine/data_classes/_high_speed_shaft.py
as_write()
Convert this read version of high speed shaft to the writing version.
HighSpeedShaftGraphQL
Bases: GraphQLCore
This represents the reading version of high speed shaft, used when data is retrieved from CDF using GraphQL.
It is used when retrieving data from CDF using GraphQL.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
space
|
The space where the node is located. |
required | |
external_id
|
The external id of the high speed shaft. |
required | |
data_record
|
The data record of the high speed shaft node. |
required | |
bending_moment_y
|
The bending moment y field. |
required | |
bending_monent_x
|
The bending monent x field. |
required | |
nacelle
|
The nacelle field. |
required | |
torque
|
The torque field. |
required |
Source code in examples/wind_turbine/data_classes/_high_speed_shaft.py
as_read()
Convert this GraphQL format of high speed shaft to the reading format.
as_write()
Convert this GraphQL format of high speed shaft to the writing format.
HighSpeedShaftList
Bases: DomainModelList[HighSpeedShaft]
List of high speed shafts in the read version.
Source code in examples/wind_turbine/data_classes/_high_speed_shaft.py
as_write()
Convert these read versions of high speed shaft to the writing versions.
HighSpeedShaftWrite
Bases: DomainModelWrite
This represents the writing version of high speed shaft.
It is used to when data is sent to CDF.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
space
|
The space where the node is located. |
required | |
external_id
|
The external id of the high speed shaft. |
required | |
data_record
|
The data record of the high speed shaft node. |
required | |
bending_moment_y
|
The bending moment y field. |
required | |
bending_monent_x
|
The bending monent x field. |
required | |
torque
|
The torque field. |
required |
Source code in examples/wind_turbine/data_classes/_high_speed_shaft.py
HighSpeedShaftWriteList
Bases: DomainModelWriteList[HighSpeedShaftWrite]
List of high speed shafts in the writing version.
Source code in examples/wind_turbine/data_classes/_high_speed_shaft.py
MainShaft
Bases: DomainModel
This represents the reading version of main shaft.
It is used to when data is retrieved from CDF.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
space
|
The space where the node is located. |
required | |
external_id
|
The external id of the main shaft. |
required | |
data_record
|
The data record of the main shaft node. |
required | |
bending_x
|
The bending x field. |
required | |
bending_y
|
The bending y field. |
required | |
calculated_tilt_moment
|
The calculated tilt moment field. |
required | |
calculated_yaw_moment
|
The calculated yaw moment field. |
required | |
nacelle
|
The nacelle field. |
required | |
torque
|
The torque field. |
required |
Source code in examples/wind_turbine/data_classes/_main_shaft.py
as_write()
Convert this read version of main shaft to the writing version.
MainShaftGraphQL
Bases: GraphQLCore
This represents the reading version of main shaft, used when data is retrieved from CDF using GraphQL.
It is used when retrieving data from CDF using GraphQL.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
space
|
The space where the node is located. |
required | |
external_id
|
The external id of the main shaft. |
required | |
data_record
|
The data record of the main shaft node. |
required | |
bending_x
|
The bending x field. |
required | |
bending_y
|
The bending y field. |
required | |
calculated_tilt_moment
|
The calculated tilt moment field. |
required | |
calculated_yaw_moment
|
The calculated yaw moment field. |
required | |
nacelle
|
The nacelle field. |
required | |
torque
|
The torque field. |
required |
Source code in examples/wind_turbine/data_classes/_main_shaft.py
as_read()
as_write()
Convert this GraphQL format of main shaft to the writing format.
MainShaftList
Bases: DomainModelList[MainShaft]
List of main shafts in the read version.
Source code in examples/wind_turbine/data_classes/_main_shaft.py
as_write()
Convert these read versions of main shaft to the writing versions.
MainShaftWrite
Bases: DomainModelWrite
This represents the writing version of main shaft.
It is used to when data is sent to CDF.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
space
|
The space where the node is located. |
required | |
external_id
|
The external id of the main shaft. |
required | |
data_record
|
The data record of the main shaft node. |
required | |
bending_x
|
The bending x field. |
required | |
bending_y
|
The bending y field. |
required | |
calculated_tilt_moment
|
The calculated tilt moment field. |
required | |
calculated_yaw_moment
|
The calculated yaw moment field. |
required | |
torque
|
The torque field. |
required |
Source code in examples/wind_turbine/data_classes/_main_shaft.py
MainShaftWriteList
Bases: DomainModelWriteList[MainShaftWrite]
List of main shafts in the writing version.
Source code in examples/wind_turbine/data_classes/_main_shaft.py
Metmast
Bases: DomainModel
This represents the reading version of metmast.
It is used to when data is retrieved from CDF.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
space
|
The space where the node is located. |
required | |
external_id
|
The external id of the metmast. |
required | |
data_record
|
The data record of the metmast node. |
required | |
position
|
The position field. |
required | |
temperature
|
The temperature field. |
required | |
tilt_angle
|
The tilt angle field. |
required | |
wind_speed
|
The wind speed field. |
required | |
wind_turbines
|
The wind turbine field. |
required |
Source code in examples/wind_turbine/data_classes/_metmast.py
as_write()
MetmastGraphQL
Bases: GraphQLCore
This represents the reading version of metmast, used when data is retrieved from CDF using GraphQL.
It is used when retrieving data from CDF using GraphQL.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
space
|
The space where the node is located. |
required | |
external_id
|
The external id of the metmast. |
required | |
data_record
|
The data record of the metmast node. |
required | |
position
|
The position field. |
required | |
temperature
|
The temperature field. |
required | |
tilt_angle
|
The tilt angle field. |
required | |
wind_speed
|
The wind speed field. |
required | |
wind_turbines
|
The wind turbine field. |
required |
Source code in examples/wind_turbine/data_classes/_metmast.py
as_read()
as_write()
MetmastList
Bases: DomainModelList[Metmast]
List of metmasts in the read version.
Source code in examples/wind_turbine/data_classes/_metmast.py
as_write()
Convert these read versions of metmast to the writing versions.
MetmastWrite
Bases: DomainModelWrite
This represents the writing version of metmast.
It is used to when data is sent to CDF.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
space
|
The space where the node is located. |
required | |
external_id
|
The external id of the metmast. |
required | |
data_record
|
The data record of the metmast node. |
required | |
position
|
The position field. |
required | |
temperature
|
The temperature field. |
required | |
tilt_angle
|
The tilt angle field. |
required | |
wind_speed
|
The wind speed field. |
required | |
wind_turbines
|
The wind turbine field. |
required |
Source code in examples/wind_turbine/data_classes/_metmast.py
MetmastWriteList
Bases: DomainModelWriteList[MetmastWrite]
List of metmasts in the writing version.
Source code in examples/wind_turbine/data_classes/_metmast.py
Nacelle
Bases: DomainModel
This represents the reading version of nacelle.
It is used to when data is retrieved from CDF.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
space
|
The space where the node is located. |
required | |
external_id
|
The external id of the nacelle. |
required | |
data_record
|
The data record of the nacelle node. |
required | |
acc_from_back_side_x
|
The acc from back side x field. |
required | |
acc_from_back_side_y
|
The acc from back side y field. |
required | |
acc_from_back_side_z
|
The acc from back side z field. |
required | |
gearbox
|
The gearbox field. |
required | |
generator
|
The generator field. |
required | |
high_speed_shaft
|
The high speed shaft field. |
required | |
main_shaft
|
The main shaft field. |
required | |
power_inverter
|
The power inverter field. |
required | |
wind_turbine
|
The wind turbine field. |
required | |
yaw_direction
|
The yaw direction field. |
required | |
yaw_error
|
The yaw error field. |
required |
Source code in examples/wind_turbine/data_classes/_nacelle.py
as_write()
NacelleGraphQL
Bases: GraphQLCore
This represents the reading version of nacelle, used when data is retrieved from CDF using GraphQL.
It is used when retrieving data from CDF using GraphQL.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
space
|
The space where the node is located. |
required | |
external_id
|
The external id of the nacelle. |
required | |
data_record
|
The data record of the nacelle node. |
required | |
acc_from_back_side_x
|
The acc from back side x field. |
required | |
acc_from_back_side_y
|
The acc from back side y field. |
required | |
acc_from_back_side_z
|
The acc from back side z field. |
required | |
gearbox
|
The gearbox field. |
required | |
generator
|
The generator field. |
required | |
high_speed_shaft
|
The high speed shaft field. |
required | |
main_shaft
|
The main shaft field. |
required | |
power_inverter
|
The power inverter field. |
required | |
wind_turbine
|
The wind turbine field. |
required | |
yaw_direction
|
The yaw direction field. |
required | |
yaw_error
|
The yaw error field. |
required |
Source code in examples/wind_turbine/data_classes/_nacelle.py
as_read()
as_write()
NacelleList
Bases: DomainModelList[Nacelle]
List of nacelles in the read version.
Source code in examples/wind_turbine/data_classes/_nacelle.py
324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 |
|
as_write()
Convert these read versions of nacelle to the writing versions.
NacelleWrite
Bases: DomainModelWrite
This represents the writing version of nacelle.
It is used to when data is sent to CDF.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
space
|
The space where the node is located. |
required | |
external_id
|
The external id of the nacelle. |
required | |
data_record
|
The data record of the nacelle node. |
required | |
acc_from_back_side_x
|
The acc from back side x field. |
required | |
acc_from_back_side_y
|
The acc from back side y field. |
required | |
acc_from_back_side_z
|
The acc from back side z field. |
required | |
gearbox
|
The gearbox field. |
required | |
generator
|
The generator field. |
required | |
high_speed_shaft
|
The high speed shaft field. |
required | |
main_shaft
|
The main shaft field. |
required | |
power_inverter
|
The power inverter field. |
required | |
yaw_direction
|
The yaw direction field. |
required | |
yaw_error
|
The yaw error field. |
required |
Source code in examples/wind_turbine/data_classes/_nacelle.py
242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 |
|
NacelleWriteList
Bases: DomainModelWriteList[NacelleWrite]
List of nacelles in the writing version.
Source code in examples/wind_turbine/data_classes/_nacelle.py
406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 |
|
PowerInverter
Bases: DomainModel
This represents the reading version of power inverter.
It is used to when data is retrieved from CDF.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
space
|
The space where the node is located. |
required | |
external_id
|
The external id of the power inverter. |
required | |
data_record
|
The data record of the power inverter node. |
required | |
active_power_total
|
The active power total field. |
required | |
apparent_power_total
|
The apparent power total field. |
required | |
nacelle
|
The nacelle field. |
required | |
reactive_power_total
|
The reactive power total field. |
required |
Source code in examples/wind_turbine/data_classes/_power_inverter.py
as_write()
Convert this read version of power inverter to the writing version.
PowerInverterGraphQL
Bases: GraphQLCore
This represents the reading version of power inverter, used when data is retrieved from CDF using GraphQL.
It is used when retrieving data from CDF using GraphQL.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
space
|
The space where the node is located. |
required | |
external_id
|
The external id of the power inverter. |
required | |
data_record
|
The data record of the power inverter node. |
required | |
active_power_total
|
The active power total field. |
required | |
apparent_power_total
|
The apparent power total field. |
required | |
nacelle
|
The nacelle field. |
required | |
reactive_power_total
|
The reactive power total field. |
required |
Source code in examples/wind_turbine/data_classes/_power_inverter.py
as_read()
Convert this GraphQL format of power inverter to the reading format.
as_write()
Convert this GraphQL format of power inverter to the writing format.
PowerInverterList
Bases: DomainModelList[PowerInverter]
List of power inverters in the read version.
Source code in examples/wind_turbine/data_classes/_power_inverter.py
as_write()
Convert these read versions of power inverter to the writing versions.
PowerInverterWrite
Bases: DomainModelWrite
This represents the writing version of power inverter.
It is used to when data is sent to CDF.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
space
|
The space where the node is located. |
required | |
external_id
|
The external id of the power inverter. |
required | |
data_record
|
The data record of the power inverter node. |
required | |
active_power_total
|
The active power total field. |
required | |
apparent_power_total
|
The apparent power total field. |
required | |
reactive_power_total
|
The reactive power total field. |
required |
Source code in examples/wind_turbine/data_classes/_power_inverter.py
PowerInverterWriteList
Bases: DomainModelWriteList[PowerInverterWrite]
List of power inverters in the writing version.
Source code in examples/wind_turbine/data_classes/_power_inverter.py
Rotor
Bases: DomainModel
This represents the reading version of rotor.
It is used to when data is retrieved from CDF.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
space
|
The space where the node is located. |
required | |
external_id
|
The external id of the rotor. |
required | |
data_record
|
The data record of the rotor node. |
required | |
rotor_speed_controller
|
The rotor speed controller field. |
required | |
rpm_low_speed_shaft
|
The rpm low speed shaft field. |
required | |
wind_turbine
|
The wind turbine field. |
required |
Source code in examples/wind_turbine/data_classes/_rotor.py
RotorGraphQL
Bases: GraphQLCore
This represents the reading version of rotor, used when data is retrieved from CDF using GraphQL.
It is used when retrieving data from CDF using GraphQL.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
space
|
The space where the node is located. |
required | |
external_id
|
The external id of the rotor. |
required | |
data_record
|
The data record of the rotor node. |
required | |
rotor_speed_controller
|
The rotor speed controller field. |
required | |
rpm_low_speed_shaft
|
The rpm low speed shaft field. |
required | |
wind_turbine
|
The wind turbine field. |
required |
Source code in examples/wind_turbine/data_classes/_rotor.py
as_read()
RotorList
Bases: DomainModelList[Rotor]
List of rotors in the read version.
Source code in examples/wind_turbine/data_classes/_rotor.py
as_write()
Convert these read versions of rotor to the writing versions.
RotorWrite
Bases: DomainModelWrite
This represents the writing version of rotor.
It is used to when data is sent to CDF.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
space
|
The space where the node is located. |
required | |
external_id
|
The external id of the rotor. |
required | |
data_record
|
The data record of the rotor node. |
required | |
rotor_speed_controller
|
The rotor speed controller field. |
required | |
rpm_low_speed_shaft
|
The rpm low speed shaft field. |
required |
Source code in examples/wind_turbine/data_classes/_rotor.py
RotorWriteList
Bases: DomainModelWriteList[RotorWrite]
List of rotors in the writing version.
Source code in examples/wind_turbine/data_classes/_rotor.py
SensorPosition
Bases: DomainModel
This represents the reading version of sensor position.
It is used to when data is retrieved from CDF.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
space
|
The space where the node is located. |
required | |
external_id
|
The external id of the sensor position. |
required | |
data_record
|
The data record of the sensor position node. |
required | |
blade
|
The blade field. |
required | |
edgewise_bend_mom_crosstalk_corrected
|
The edgewise bend mom crosstalk corrected field. |
required | |
edgewise_bend_mom_offset
|
The edgewise bend mom offset field. |
required | |
edgewise_bend_mom_offset_crosstalk_corrected
|
The edgewise bend mom offset crosstalk corrected field. |
required | |
edgewisewise_bend_mom
|
The edgewisewise bend mom field. |
required | |
flapwise_bend_mom
|
The flapwise bend mom field. |
required | |
flapwise_bend_mom_crosstalk_corrected
|
The flapwise bend mom crosstalk corrected field. |
required | |
flapwise_bend_mom_offset
|
The flapwise bend mom offset field. |
required | |
flapwise_bend_mom_offset_crosstalk_corrected
|
The flapwise bend mom offset crosstalk corrected field. |
required | |
position
|
The position field. |
required |
Source code in examples/wind_turbine/data_classes/_sensor_position.py
as_write()
Convert this read version of sensor position to the writing version.
SensorPositionGraphQL
Bases: GraphQLCore
This represents the reading version of sensor position, used when data is retrieved from CDF using GraphQL.
It is used when retrieving data from CDF using GraphQL.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
space
|
The space where the node is located. |
required | |
external_id
|
The external id of the sensor position. |
required | |
data_record
|
The data record of the sensor position node. |
required | |
blade
|
The blade field. |
required | |
edgewise_bend_mom_crosstalk_corrected
|
The edgewise bend mom crosstalk corrected field. |
required | |
edgewise_bend_mom_offset
|
The edgewise bend mom offset field. |
required | |
edgewise_bend_mom_offset_crosstalk_corrected
|
The edgewise bend mom offset crosstalk corrected field. |
required | |
edgewisewise_bend_mom
|
The edgewisewise bend mom field. |
required | |
flapwise_bend_mom
|
The flapwise bend mom field. |
required | |
flapwise_bend_mom_crosstalk_corrected
|
The flapwise bend mom crosstalk corrected field. |
required | |
flapwise_bend_mom_offset
|
The flapwise bend mom offset field. |
required | |
flapwise_bend_mom_offset_crosstalk_corrected
|
The flapwise bend mom offset crosstalk corrected field. |
required | |
position
|
The position field. |
required |
Source code in examples/wind_turbine/data_classes/_sensor_position.py
as_read()
Convert this GraphQL format of sensor position to the reading format.
as_write()
Convert this GraphQL format of sensor position to the writing format.
SensorPositionList
Bases: DomainModelList[SensorPosition]
List of sensor positions in the read version.
Source code in examples/wind_turbine/data_classes/_sensor_position.py
300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 |
|
as_write()
Convert these read versions of sensor position to the writing versions.
SensorPositionWrite
Bases: DomainModelWrite
This represents the writing version of sensor position.
It is used to when data is sent to CDF.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
space
|
The space where the node is located. |
required | |
external_id
|
The external id of the sensor position. |
required | |
data_record
|
The data record of the sensor position node. |
required | |
blade
|
The blade field. |
required | |
edgewise_bend_mom_crosstalk_corrected
|
The edgewise bend mom crosstalk corrected field. |
required | |
edgewise_bend_mom_offset
|
The edgewise bend mom offset field. |
required | |
edgewise_bend_mom_offset_crosstalk_corrected
|
The edgewise bend mom offset crosstalk corrected field. |
required | |
edgewisewise_bend_mom
|
The edgewisewise bend mom field. |
required | |
flapwise_bend_mom
|
The flapwise bend mom field. |
required | |
flapwise_bend_mom_crosstalk_corrected
|
The flapwise bend mom crosstalk corrected field. |
required | |
flapwise_bend_mom_offset
|
The flapwise bend mom offset field. |
required | |
flapwise_bend_mom_offset_crosstalk_corrected
|
The flapwise bend mom offset crosstalk corrected field. |
required | |
position
|
The position field. |
required |
Source code in examples/wind_turbine/data_classes/_sensor_position.py
210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 |
|
SensorPositionWriteList
Bases: DomainModelWriteList[SensorPositionWrite]
List of sensor positions in the writing version.
Source code in examples/wind_turbine/data_classes/_sensor_position.py
408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 |
|
SensorTimeSeries
Bases: DomainModel
This represents the reading version of sensor time series.
It is used to when data is retrieved from CDF.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
space
|
The space where the node is located. |
required | |
external_id
|
The external id of the sensor time series. |
required | |
data_record
|
The data record of the sensor time series node. |
required | |
aliases
|
Alternative names for the node |
required | |
concept_id
|
The concept ID of the time series. |
required | |
description
|
Description of the instance |
required | |
is_step
|
Specifies whether the time series is a step time series or not. |
required | |
name
|
Name of the instance |
required | |
source_unit
|
The unit specified in the source system. |
required | |
standard_name
|
The standard name of the time series. |
required | |
type_
|
Specifies the data type of the data points. |
required |
Source code in examples/wind_turbine/data_classes/_sensor_time_series.py
as_write()
Convert this read version of sensor time series to the writing version.
SensorTimeSeriesGraphQL
Bases: GraphQLCore
This represents the reading version of sensor time series, used when data is retrieved from CDF using GraphQL.
It is used when retrieving data from CDF using GraphQL.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
space
|
The space where the node is located. |
required | |
external_id
|
The external id of the sensor time series. |
required | |
data_record
|
The data record of the sensor time series node. |
required | |
aliases
|
Alternative names for the node |
required | |
concept_id
|
The concept ID of the time series. |
required | |
description
|
Description of the instance |
required | |
is_step
|
Specifies whether the time series is a step time series or not. |
required | |
name
|
Name of the instance |
required | |
source_unit
|
The unit specified in the source system. |
required | |
standard_name
|
The standard name of the time series. |
required | |
type_
|
Specifies the data type of the data points. |
required |
Source code in examples/wind_turbine/data_classes/_sensor_time_series.py
as_read()
Convert this GraphQL format of sensor time series to the reading format.
as_write()
Convert this GraphQL format of sensor time series to the writing format.
SensorTimeSeriesList
Bases: DomainModelList[SensorTimeSeries]
List of sensor time series in the read version.
Source code in examples/wind_turbine/data_classes/_sensor_time_series.py
as_write()
Convert these read versions of sensor time series to the writing versions.
SensorTimeSeriesWrite
Bases: DomainModelWrite
This represents the writing version of sensor time series.
It is used to when data is sent to CDF.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
space
|
The space where the node is located. |
required | |
external_id
|
The external id of the sensor time series. |
required | |
data_record
|
The data record of the sensor time series node. |
required | |
aliases
|
Alternative names for the node |
required | |
concept_id
|
The concept ID of the time series. |
required | |
description
|
Description of the instance |
required | |
is_step
|
Specifies whether the time series is a step time series or not. |
required | |
name
|
Name of the instance |
required | |
source_unit
|
The unit specified in the source system. |
required | |
standard_name
|
The standard name of the time series. |
required | |
type_
|
Specifies the data type of the data points. |
required |
Source code in examples/wind_turbine/data_classes/_sensor_time_series.py
SensorTimeSeriesWriteList
Bases: DomainModelWriteList[SensorTimeSeriesWrite]
List of sensor time series in the writing version.
Source code in examples/wind_turbine/data_classes/_sensor_time_series.py
SolarPanel
Bases: GeneratingUnit
This represents the reading version of solar panel.
It is used to when data is retrieved from CDF.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
space
|
The space where the node is located. |
required | |
external_id
|
The external id of the solar panel. |
required | |
data_record
|
The data record of the solar panel node. |
required | |
capacity
|
The capacity field. |
required | |
description
|
Description of the instance |
required | |
efficiency
|
The efficiency field. |
required | |
name
|
Name of the instance |
required | |
orientation
|
The orientation field. |
required |
Source code in examples/wind_turbine/data_classes/_solar_panel.py
as_write()
Convert this read version of solar panel to the writing version.
SolarPanelGraphQL
Bases: GraphQLCore
This represents the reading version of solar panel, used when data is retrieved from CDF using GraphQL.
It is used when retrieving data from CDF using GraphQL.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
space
|
The space where the node is located. |
required | |
external_id
|
The external id of the solar panel. |
required | |
data_record
|
The data record of the solar panel node. |
required | |
capacity
|
The capacity field. |
required | |
description
|
Description of the instance |
required | |
efficiency
|
The efficiency field. |
required | |
name
|
Name of the instance |
required | |
orientation
|
The orientation field. |
required |
Source code in examples/wind_turbine/data_classes/_solar_panel.py
as_read()
Convert this GraphQL format of solar panel to the reading format.
as_write()
Convert this GraphQL format of solar panel to the writing format.
SolarPanelList
Bases: DomainModelList[SolarPanel]
List of solar panels in the read version.
Source code in examples/wind_turbine/data_classes/_solar_panel.py
as_write()
Convert these read versions of solar panel to the writing versions.
SolarPanelWrite
Bases: GeneratingUnitWrite
This represents the writing version of solar panel.
It is used to when data is sent to CDF.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
space
|
The space where the node is located. |
required | |
external_id
|
The external id of the solar panel. |
required | |
data_record
|
The data record of the solar panel node. |
required | |
capacity
|
The capacity field. |
required | |
description
|
Description of the instance |
required | |
efficiency
|
The efficiency field. |
required | |
name
|
Name of the instance |
required | |
orientation
|
The orientation field. |
required |
Source code in examples/wind_turbine/data_classes/_solar_panel.py
SolarPanelWriteList
Bases: DomainModelWriteList[SolarPanelWrite]
List of solar panels in the writing version.
Source code in examples/wind_turbine/data_classes/_solar_panel.py
WindTurbine
Bases: GeneratingUnit
This represents the reading version of wind turbine.
It is used to when data is retrieved from CDF.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
space
|
The space where the node is located. |
required | |
external_id
|
The external id of the wind turbine. |
required | |
data_record
|
The data record of the wind turbine node. |
required | |
blades
|
The blade field. |
required | |
capacity
|
The capacity field. |
required | |
datasheets
|
The datasheet field. |
required | |
description
|
Description of the instance |
required | |
metmast
|
The metmast field. |
required | |
nacelle
|
The nacelle field. |
required | |
name
|
Name of the instance |
required | |
power_curve
|
The power curve field. |
required | |
rotor
|
The rotor field. |
required | |
windfarm
|
The windfarm field. |
required |
Source code in examples/wind_turbine/data_classes/_wind_turbine.py
as_write()
Convert this read version of wind turbine to the writing version.
WindTurbineGraphQL
Bases: GraphQLCore
This represents the reading version of wind turbine, used when data is retrieved from CDF using GraphQL.
It is used when retrieving data from CDF using GraphQL.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
space
|
The space where the node is located. |
required | |
external_id
|
The external id of the wind turbine. |
required | |
data_record
|
The data record of the wind turbine node. |
required | |
blades
|
The blade field. |
required | |
capacity
|
The capacity field. |
required | |
datasheets
|
The datasheet field. |
required | |
description
|
Description of the instance |
required | |
metmast
|
The metmast field. |
required | |
nacelle
|
The nacelle field. |
required | |
name
|
Name of the instance |
required | |
power_curve
|
The power curve field. |
required | |
rotor
|
The rotor field. |
required | |
windfarm
|
The windfarm field. |
required |
Source code in examples/wind_turbine/data_classes/_wind_turbine.py
as_read()
Convert this GraphQL format of wind turbine to the reading format.
as_write()
Convert this GraphQL format of wind turbine to the writing format.
WindTurbineList
Bases: DomainModelList[WindTurbine]
List of wind turbines in the read version.
Source code in examples/wind_turbine/data_classes/_wind_turbine.py
as_write()
Convert these read versions of wind turbine to the writing versions.
WindTurbineWrite
Bases: GeneratingUnitWrite
This represents the writing version of wind turbine.
It is used to when data is sent to CDF.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
space
|
The space where the node is located. |
required | |
external_id
|
The external id of the wind turbine. |
required | |
data_record
|
The data record of the wind turbine node. |
required | |
blades
|
The blade field. |
required | |
capacity
|
The capacity field. |
required | |
datasheets
|
The datasheet field. |
required | |
description
|
Description of the instance |
required | |
metmast
|
The metmast field. |
required | |
nacelle
|
The nacelle field. |
required | |
name
|
Name of the instance |
required | |
power_curve
|
The power curve field. |
required | |
rotor
|
The rotor field. |
required | |
windfarm
|
The windfarm field. |
required |
Source code in examples/wind_turbine/data_classes/_wind_turbine.py
WindTurbineWriteList
Bases: DomainModelWriteList[WindTurbineWrite]
List of wind turbines in the writing version.