|
Revision 278, 437 bytes
(checked in by smidl, 17 years ago)
|
|
props
|
-
Property svn:eol-style set to
native
|
| Line | |
|---|
| 1 | /* |
|---|
| 2 | Simulator of Vector Controlled PMSM Drive |
|---|
| 3 | |
|---|
| 4 | This module is background for PMSM drive object design and |
|---|
| 5 | introduces basic functions ... set_parameters() and eval(). |
|---|
| 6 | |
|---|
| 7 | Z. Peroutka |
|---|
| 8 | |
|---|
| 9 | Rev. 16.3.2008 |
|---|
| 10 | |
|---|
| 11 | */ |
|---|
| 12 | |
|---|
| 13 | |
|---|
| 14 | extern void set_parameters(double Rs0, double Ls0, double Fmag0, double Bf0, double p0, double kp0, double J0, double Uc0, double DT0, double dt0); |
|---|
| 15 | extern void eval(double Ww); |
|---|
| 16 | |
|---|
| 17 | extern double x[9]; |
|---|
| 18 | extern double KalmanObs[4]; |
|---|