Changeset 128
- Timestamp:
- 06/20/08 13:55:30 (17 years ago)
- Files:
-
- 2 modified
Legend:
- Unmodified
- Added
- Removed
-
pmsm/pmsm.h
r94 r128 3 3 4 4 #include <stat/libFN.h> 5 #include <userinfo.h>6 7 5 8 6 //TODO hardcoded RVs!!! … … 11 9 RV ry ( "7 8", "{oia oib }", ones_i ( 2 ) ,zeros_i ( 2 )); 12 10 13 class uipmsm : public uibase{14 double Rs, Ls, dt, Ypm, kp, p, J, Mz;15 };11 // class uipmsm : public uibase{ 12 // double Rs, Ls, dt, Ypm, kp, p, J, Mz; 13 // }; 16 14 17 15 //! State evolution model for a PMSM drive and its derivative with respect to \$x\$ -
tests/testUI.cpp
r122 r128 22 22 23 23 EngineUI() 24 : UserInfo ( "engine", "type of engine" ),24 : UserInfo<Engine>( "engine", "type of engine" ), 25 25 producer( "producer"), 26 26 consumption( "consumption") … … 62 62 63 63 CarUI() 64 : UserInfo ("car", "type of a car"),64 : UserInfo<Car>("car", "type of a car"), 65 65 color( "color"), 66 year( " year" )66 year( "color" ) 67 67 { 68 68 engine.Attach( elements );