Changeset 325

Show
Ignore:
Timestamp:
04/23/09 23:29:54 (15 years ago)
Author:
smidl
Message:

Barcelona work...

Files:
4 added
4 modified

Legend:

Unmodified
Added
Removed
  • applications/pmsm/pmsm.h

    r318 r325  
    128128                        xth2o(2) = kp*p*p * Ypm/J *( dib * cth-ibm*sth - (dia * sth + iam *cth)); 
    129129                        xth2o(3) = dom; 
     130                        // multiply by dt^2/2 
     131                        xth2o*=d2t/2; 
    130132                        return xth2o; 
    131133                } 
  • bdm/estim/KF_ui.h

    r289 r325  
    3939                RV* rv; UIbuild(S["rv"],rv); 
    4040                E->set_rv(*rv); 
     41                 
     42                if (S.exists("options")){E->set_options(S["options"]);}; 
     43                 
    4144                return E; 
    4245        }        
  • bdm/stat/libBM.h

    r317 r325  
    700700 
    701701        //! Set boolean options from a string 
    702         void set_options ( const string &opt ) { 
     702        virtual void set_options ( const string &opt ) { 
    703703                opt_L_bounds= ( opt.find ( "logbounds" ) !=string::npos ); 
    704704        } 
  • bdm/uibuilder.h

    r281 r325  
    125125        //! Function building the computational object 
    126126        virtual bdmroot* build ( Setting &S ) const =0; 
     127        //! Virtual destructor for future use; 
     128        virtual ~UIbuilder(){}; 
    127129}; 
    128130