time_variables¶
- property HelicalGear.time_variables: dict[str, list[UnitBase]]
Time variables of the gear. Each time variable is stored as a dictionary key-value pair. The available time variables are:
angular_position:'angular position',angular_speed:'angular speed',angular_acceleration:'angular acceleration',torque:'torque',driving_torque:'driving torque',load_torque:'load torque',tangential_force:'tangential force',bending_stress:'bending stress',contact_stress:'contact stress'.
'tangential force','bending stress'and'contact stress'are listed among time variables only if they are computable indeed, depending on which gear parameters are set at gear instantiation; seetangential_force_is_computable,bending_stress_is_computableandcontact_stress_is_computablefor more details.Corresponding values of the dictionary are lists of the respective time variable values.
At each time iteration, the
Solverappends every time variables’ values to the relative list in the dictionary.Returns¶
dictTime variables of the gear.
See Also