Changeset 325
- Timestamp:
- 04/23/09 23:29:54 (16 years ago)
- Files:
-
- 4 added
- 4 modified
Legend:
- Unmodified
- Added
- Removed
-
applications/pmsm/pmsm.h
r318 r325 128 128 xth2o(2) = kp*p*p * Ypm/J *( dib * cth-ibm*sth - (dia * sth + iam *cth)); 129 129 xth2o(3) = dom; 130 // multiply by dt^2/2 131 xth2o*=d2t/2; 130 132 return xth2o; 131 133 } -
bdm/estim/KF_ui.h
r289 r325 39 39 RV* rv; UIbuild(S["rv"],rv); 40 40 E->set_rv(*rv); 41 42 if (S.exists("options")){E->set_options(S["options"]);}; 43 41 44 return E; 42 45 } -
bdm/stat/libBM.h
r317 r325 700 700 701 701 //! Set boolean options from a string 702 v oid set_options ( const string &opt ) {702 virtual void set_options ( const string &opt ) { 703 703 opt_L_bounds= ( opt.find ( "logbounds" ) !=string::npos ); 704 704 } -
bdm/uibuilder.h
r281 r325 125 125 //! Function building the computational object 126 126 virtual bdmroot* build ( Setting &S ) const =0; 127 //! Virtual destructor for future use; 128 virtual ~UIbuilder(){}; 127 129 }; 128 130