Mercurial > hg > aimc
diff src/CAR.h @ 480:5def66bf228f carfac_cpp
(none)
author | Ulf.Hammarqvist@gmail.com |
---|---|
date | Wed, 28 Mar 2012 17:20:06 +0000 |
parents | 7eba2f13aa13 |
children | cad69634b411 |
line wrap: on
line diff
--- a/src/CAR.h Wed Mar 28 16:44:46 2012 +0000 +++ b/src/CAR.h Wed Mar 28 17:20:06 2012 +0000 @@ -1,19 +1,24 @@ -/* - * CAR.h - * - * Created on: 24 mar 2012 - * Author: ulha - */ - #ifndef CAR_H_ #define CAR_H_ #include "CARFAC_common_typedefs.h" +#include <math.h> class CAR_parameters { public: - CAR_parameters(); - virtual ~CAR_parameters(); + CAR_parameters(){ + velocity_scale = 0.2; + v_offset = 0.01; + v2_corner = 0.2; + v_damp_max = 0.01; + min_zeta = 0.10; + first_pole_theta = 0.085*PI; + zero_ratio = sqrt(2); + high_f_damping_compression = 0.5; + ERB_per_step = 0.5; + min_pole_Hz = 30; + } + virtual ~CAR_parameters(){} float velocity_scale; float v_offset;