StatorItem
StatorItem ID
| Constant | Description | Value | 
| StatorItem.ID1 | Identifier of the lower part of the stator | 1 | 
| StatorItem.ID2 | Identifier of the middle part of the stator | 2 | 
| StatorItem.ID3 | Identifier of the upper part of the stator | 3 | 
Attention
The number of stator parts depends on the type of motor. The numbering of the stator parts is done from bottom to top, i.e., the lower part of the stator has an identifier StatorItem.ID1, the middle part of the stator has an identifier StatorItem.ID2 and the upper part of the stator has an identifier StatorItem.ID3.
 
Example
| JS | 
|---|
|  | console.info(StatorItem.ID1) // output: 1
let BtmStatorHeight = stator.item(StatorItem.ID1).height;
console.info(BtmStatorHeight) // output: for example, 50
 | 
StatorItem Layer
| Constant | Description | Value | 
| StatorItem.Lower | Lower layer of the stator element | 1 | 
| StatorItem.Upper | Upper layer of the stator element | 2 | 
Example
| JS | 
|---|
|  | let value = StatorItem.Lower;
console.info(value);
 |