2. SynR Machine Operating Point

This class represents the operating point of a synchronous reluctance machine.

2.1. Input from User

The required input from the user to instantiate this class is provided below:

SynR Operating Point

Key

Description

Units

speed

Speed at which machine is evaluated

RPM

speed_ratio

Decimal percentage at which speed is commanded

phi_0

Electrical angle at which currents are offset

degrees

ambient_temp

Ambient temperature at which machine is evaluated

deg C

rotor_temp_rise

Expected rotor temperature rise

deg C

2.2. Creating a SynR_Machine_Oper_Pt object

Finally, the below Python code block shows how to create a SynR_Machine_Oper_Pt object.

from eMach.mach_eval.machines.SynR.SynR_oper_pt import SynR_Machine_Oper_Pt

Machine_Op_Pt = SynR_Machine_Oper_Pt(
   speed=1800,
   speed_ratio=1,
   phi_0 = 0,
   ambient_temp=25,
   rotor_temp_rise=0,
)