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
as_apply()
Convert this read version of blade to the writing version.
Source code in examples/wind_turbine/data_classes/_blade.py
as_write()
Convert this read version of blade to the writing version.
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()
Convert this GraphQL format of blade to the reading format.
Source code in examples/wind_turbine/data_classes/_blade.py
as_write()
Convert this GraphQL format of blade to the writing format.
Source code in examples/wind_turbine/data_classes/_blade.py
BladeList
Bases: DomainModelList[Blade]
List of blades in the read version.
Source code in examples/wind_turbine/data_classes/_blade.py
as_apply()
Convert these read versions of primitive nullable to the writing versions.
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_apply()
Convert this read version of data sheet to the writing version.
Source code in examples/wind_turbine/data_classes/_data_sheet.py
as_write()
Convert this read version of data sheet to the writing version.
Source code in examples/wind_turbine/data_classes/_data_sheet.py
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()
Convert this GraphQL format of data sheet to the reading format.
Source code in examples/wind_turbine/data_classes/_data_sheet.py
as_write()
Convert this GraphQL format of data sheet to the writing format.
Source code in examples/wind_turbine/data_classes/_data_sheet.py
DataSheetList
Bases: DomainModelList[DataSheet]
List of data sheets in the read version.
Source code in examples/wind_turbine/data_classes/_data_sheet.py
as_apply()
Convert these read versions of primitive nullable to the writing versions.
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_apply()
Convert this read version of distance to the writing version.
Source code in examples/wind_turbine/data_classes/_distance.py
as_write()
Convert this read version of distance to the writing version.
Source code in examples/wind_turbine/data_classes/_distance.py
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()
Convert this GraphQL format of distance to the reading format.
Source code in examples/wind_turbine/data_classes/_distance.py
as_write()
Convert this GraphQL format of distance to the writing format.
Source code in examples/wind_turbine/data_classes/_distance.py
DistanceList
Bases: DomainRelationList[Distance]
List of distances in the reading version.
Source code in examples/wind_turbine/data_classes/_distance.py
as_apply()
Convert these read versions of distance list to the writing versions.
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
155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 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 |
|
as_apply()
Convert this read version of gearbox to the writing version.
Source code in examples/wind_turbine/data_classes/_gearbox.py
as_write()
Convert this read version of gearbox to the writing version.
Source code in examples/wind_turbine/data_classes/_gearbox.py
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
68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 |
|
as_read()
Convert this GraphQL format of gearbox to the reading format.
Source code in examples/wind_turbine/data_classes/_gearbox.py
as_write()
Convert this GraphQL format of gearbox to the writing format.
Source code in examples/wind_turbine/data_classes/_gearbox.py
GearboxList
Bases: DomainModelList[Gearbox]
List of gearboxes in the read version.
Source code in examples/wind_turbine/data_classes/_gearbox.py
as_apply()
Convert these read versions of primitive nullable to the writing versions.
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
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 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 |
|
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_apply()
Convert this read version of generating unit to the writing version.
Source code in examples/wind_turbine/data_classes/_generating_unit.py
as_write()
Convert this read version of generating unit to the writing version.
Source code in examples/wind_turbine/data_classes/_generating_unit.py
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.
Source code in examples/wind_turbine/data_classes/_generating_unit.py
as_write()
Convert this GraphQL format of generating unit to the writing format.
Source code in examples/wind_turbine/data_classes/_generating_unit.py
GeneratingUnitList
Bases: DomainModelList[GeneratingUnit]
List of generating units in the read version.
Source code in examples/wind_turbine/data_classes/_generating_unit.py
as_apply()
Convert these read versions of primitive nullable to the writing versions.
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
155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 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 |
|
as_apply()
Convert this read version of generator to the writing version.
Source code in examples/wind_turbine/data_classes/_generator.py
as_write()
Convert this read version of generator to the writing version.
Source code in examples/wind_turbine/data_classes/_generator.py
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
68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 |
|
as_read()
Convert this GraphQL format of generator to the reading format.
Source code in examples/wind_turbine/data_classes/_generator.py
as_write()
Convert this GraphQL format of generator to the writing format.
Source code in examples/wind_turbine/data_classes/_generator.py
GeneratorList
Bases: DomainModelList[Generator]
List of generators in the read version.
Source code in examples/wind_turbine/data_classes/_generator.py
as_apply()
Convert these read versions of primitive nullable to the writing versions.
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
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 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 |
|
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
159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 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 |
|
as_apply()
Convert this read version of high speed shaft to the writing version.
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.
Source code in examples/wind_turbine/data_classes/_high_speed_shaft.py
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
68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 |
|
as_read()
Convert this GraphQL format of high speed shaft to the reading format.
Source code in examples/wind_turbine/data_classes/_high_speed_shaft.py
as_write()
Convert this GraphQL format of high speed shaft to the writing format.
Source code in examples/wind_turbine/data_classes/_high_speed_shaft.py
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_apply()
Convert these read versions of primitive nullable to the writing versions.
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
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 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 |
|
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
169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 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 |
|
as_apply()
Convert this read version of main shaft to the writing version.
Source code in examples/wind_turbine/data_classes/_main_shaft.py
as_write()
Convert this read version of main shaft to the writing version.
Source code in examples/wind_turbine/data_classes/_main_shaft.py
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
68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 |
|
as_read()
Convert this GraphQL format of main shaft to the reading format.
Source code in examples/wind_turbine/data_classes/_main_shaft.py
as_write()
Convert this GraphQL format of main shaft to the writing format.
Source code in examples/wind_turbine/data_classes/_main_shaft.py
MainShaftList
Bases: DomainModelList[MainShaft]
List of main shafts in the read version.
Source code in examples/wind_turbine/data_classes/_main_shaft.py
as_apply()
Convert these read versions of primitive nullable to the writing versions.
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
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 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 406 407 408 409 410 411 412 413 414 |
|
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
164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 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 |
|
as_apply()
Convert this read version of metmast to the writing version.
Source code in examples/wind_turbine/data_classes/_metmast.py
as_write()
Convert this read version of metmast to the writing version.
Source code in examples/wind_turbine/data_classes/_metmast.py
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()
Convert this GraphQL format of metmast to the reading format.
Source code in examples/wind_turbine/data_classes/_metmast.py
as_write()
Convert this GraphQL format of metmast to the writing format.
Source code in examples/wind_turbine/data_classes/_metmast.py
MetmastList
Bases: DomainModelList[Metmast]
List of metmasts in the read version.
Source code in examples/wind_turbine/data_classes/_metmast.py
as_apply()
Convert these read versions of primitive nullable to the writing versions.
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
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 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 |
|
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
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 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 406 407 408 409 410 411 412 413 414 415 416 417 418 419 |
|
as_apply()
Convert this read version of nacelle to the writing version.
Source code in examples/wind_turbine/data_classes/_nacelle.py
as_write()
Convert this read version of nacelle to the writing version.
Source code in examples/wind_turbine/data_classes/_nacelle.py
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
103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 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 |
|
as_read()
Convert this GraphQL format of nacelle to the reading format.
Source code in examples/wind_turbine/data_classes/_nacelle.py
as_write()
Convert this GraphQL format of nacelle to the writing format.
Source code in examples/wind_turbine/data_classes/_nacelle.py
NacelleList
Bases: DomainModelList[Nacelle]
List of nacelles in the read version.
Source code in examples/wind_turbine/data_classes/_nacelle.py
638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 |
|
as_apply()
Convert these read versions of primitive nullable to the writing versions.
Source code in examples/wind_turbine/data_classes/_nacelle.py
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
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 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 |
|
NacelleWriteList
Bases: DomainModelWriteList[NacelleWrite]
List of nacelles in the writing version.
Source code in examples/wind_turbine/data_classes/_nacelle.py
729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 |
|
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
167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 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 |
|
as_apply()
Convert this read version of power inverter to the writing version.
Source code in examples/wind_turbine/data_classes/_power_inverter.py
as_write()
Convert this read version of power inverter to the writing version.
Source code in examples/wind_turbine/data_classes/_power_inverter.py
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
68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 |
|
as_read()
Convert this GraphQL format of power inverter to the reading format.
Source code in examples/wind_turbine/data_classes/_power_inverter.py
as_write()
Convert this GraphQL format of power inverter to the writing format.
Source code in examples/wind_turbine/data_classes/_power_inverter.py
PowerInverterList
Bases: DomainModelList[PowerInverter]
List of power inverters in the read version.
Source code in examples/wind_turbine/data_classes/_power_inverter.py
as_apply()
Convert these read versions of primitive nullable to the writing versions.
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
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 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 |
|
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
163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 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 |
|
as_apply()
Convert this read version of rotor to the writing version.
Source code in examples/wind_turbine/data_classes/_rotor.py
as_write()
Convert this read version of rotor to the writing version.
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
74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 |
|
as_read()
Convert this GraphQL format of rotor to the reading format.
Source code in examples/wind_turbine/data_classes/_rotor.py
as_write()
Convert this GraphQL format of rotor to the writing format.
Source code in examples/wind_turbine/data_classes/_rotor.py
RotorList
Bases: DomainModelList[Rotor]
List of rotors in the read version.
Source code in examples/wind_turbine/data_classes/_rotor.py
as_apply()
Convert these read versions of primitive nullable to the writing versions.
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
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 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 |
|
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
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 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 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 |
|
as_apply()
Convert this read version of sensor position to the writing version.
Source code in examples/wind_turbine/data_classes/_sensor_position.py
as_write()
Convert this read version of sensor position to the writing version.
Source code in examples/wind_turbine/data_classes/_sensor_position.py
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
71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 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 |
|
as_read()
Convert this GraphQL format of sensor position to the reading format.
Source code in examples/wind_turbine/data_classes/_sensor_position.py
as_write()
Convert this GraphQL format of sensor position to the writing format.
Source code in examples/wind_turbine/data_classes/_sensor_position.py
SensorPositionList
Bases: DomainModelList[SensorPosition]
List of sensor positions in the read version.
Source code in examples/wind_turbine/data_classes/_sensor_position.py
691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 |
|
as_apply()
Convert these read versions of primitive nullable to the writing versions.
Source code in examples/wind_turbine/data_classes/_sensor_position.py
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
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 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 |
|
SensorPositionWriteList
Bases: DomainModelWriteList[SensorPositionWrite]
List of sensor positions in the writing version.
Source code in examples/wind_turbine/data_classes/_sensor_position.py
808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 |
|
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_apply()
Convert this read version of sensor time series to the writing version.
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.
Source code in examples/wind_turbine/data_classes/_sensor_time_series.py
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
74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 |
|
as_read()
Convert this GraphQL format of sensor time series to the reading format.
Source code in examples/wind_turbine/data_classes/_sensor_time_series.py
as_write()
Convert this GraphQL format of sensor time series to the writing format.
Source code in examples/wind_turbine/data_classes/_sensor_time_series.py
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_apply()
Convert these read versions of primitive nullable to the writing versions.
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
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 298 299 300 |
|
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_apply()
Convert this read version of solar panel to the writing version.
Source code in examples/wind_turbine/data_classes/_solar_panel.py
as_write()
Convert this read version of solar panel to the writing version.
Source code in examples/wind_turbine/data_classes/_solar_panel.py
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.
Source code in examples/wind_turbine/data_classes/_solar_panel.py
as_write()
Convert this GraphQL format of solar panel to the writing format.
Source code in examples/wind_turbine/data_classes/_solar_panel.py
SolarPanelList
Bases: DomainModelList[SolarPanel]
List of solar panels in the read version.
Source code in examples/wind_turbine/data_classes/_solar_panel.py
as_apply()
Convert these read versions of primitive nullable to the writing versions.
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
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 298 299 300 301 302 303 304 305 306 307 308 309 310 311 |
|
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
196 197 198 199 200 201 202 203 204 205 206 207 208 209 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 298 299 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 |
|
as_apply()
Convert this read version of wind turbine to the writing version.
Source code in examples/wind_turbine/data_classes/_wind_turbine.py
as_write()
Convert this read version of wind turbine to the writing version.
Source code in examples/wind_turbine/data_classes/_wind_turbine.py
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
96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 |
|
as_read()
Convert this GraphQL format of wind turbine to the reading format.
Source code in examples/wind_turbine/data_classes/_wind_turbine.py
as_write()
Convert this GraphQL format of wind turbine to the writing format.
Source code in examples/wind_turbine/data_classes/_wind_turbine.py
WindTurbineList
Bases: DomainModelList[WindTurbine]
List of wind turbines in the read version.
Source code in examples/wind_turbine/data_classes/_wind_turbine.py
as_apply()
Convert these read versions of primitive nullable to the writing versions.
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
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 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 486 487 488 489 |
|
WindTurbineWriteList
Bases: DomainModelWriteList[WindTurbineWrite]
List of wind turbines in the writing version.