- Timestamp:
- 08/20/08 15:41:21 (16 years ago)
- Location:
- pmsm
- Files:
-
- 3 modified
Legend:
- Unmodified
- Added
- Removed
-
pmsm/pmsm.h
r128 r145 13 13 // }; 14 14 15 //! State evolution model for a PMSM drive and its derivative with respect to \ $x\$15 //! State evolution model for a PMSM drive and its derivative with respect to \f$x\f$$ 16 16 class IMpmsm : public diffbifn { 17 17 protected: … … 70 70 }; 71 71 72 //! State evolution model for a PMSM drive and its derivative with respect to \f$x\f$, equation for \f$\omega\f$ is omitted.$ 72 73 class IMpmsmStat : public IMpmsm { 73 74 IMpmsmStat() :IMpmsm() {}; … … 120 121 }; 121 122 122 //! Observation model for PMSM drive and its derivative with respect to \ $x\$123 //! Observation model for PMSM drive and its derivative with respect to \f$x\f$ 123 124 class OMpmsm: public diffbifn { 124 125 public: -
pmsm/pmsm_mix.cpp
r131 r145 79 79 // cout << Eevol.sample() <<endl; 80 80 81 mepdf evolQR( rQR,rQR,&Eevol);81 mepdf evolQR(Eevol); 82 82 MPF<EKFful_unQR> M ( rx,rQR, evolQR, evolQR, Npar, EKU ); 83 83 M.set_est ( evolQR._epdf() ); -
pmsm/simulator_zdenek/ekf_example/ekf_obj.h
r61 r145 26 26 27 27 /*! 28 \brief Extended Kalman Filter in full matrices28 \brief Extended Kalman Filter with full matrices in fixed point arithmetic 29 29 30 30 An approximation of the exact Bayesian filter with Gaussian noices and non-linear evolutions of their mean.