24 lines
440 B
C
24 lines
440 B
C
/*
|
|
* params_motor.h
|
|
*
|
|
* Created on: 14 ôåâð. 2020 ã.
|
|
* Author: yura
|
|
*/
|
|
|
|
#ifndef SRC_MAIN_PARAMS_MOTOR_H_
|
|
#define SRC_MAIN_PARAMS_MOTOR_H_
|
|
|
|
|
|
#define L_SIGMA_S 0.000964
|
|
#define L_SIGMA_R 0.001134
|
|
#define L_M 0.03889
|
|
#define R_STATOR 0.0118
|
|
#define R_ROTOR_SHTRIH 0.0111
|
|
#define SLIP_NOM 0.0106
|
|
#define R_ROTOR (R_ROTOR_SHTRIH / SLIP_NOM)
|
|
#define F_STATOR_NOM 12.0
|
|
|
|
|
|
|
|
#endif /* SRC_MAIN_PARAMS_MOTOR_H_ */
|