timowest / flauta

GNU General Public License v2.0
7 stars 0 forks source link

Verification of Inputs for Receptivity #8

Closed cbarria closed 12 years ago

cbarria commented 12 years ago

We need to verified which variables are inputs into the Receptivity Module, because i notice that the Faust version has 3 inputs and the C++ version has only 2 inputs (Acoustic Velocity and Hydrodynamic Feedback). the 3rd one is generated by 'Flow In' Module with this 2 inputs from Receptivity. (or at least i think it is, please someone take a look at this! ^^)

timowest commented 12 years ago

In the Faust model the third parameter uj_steady is used to parametrize the filters jet_filter_peak1,jet_filter_peak2 and jet_filter_shelf.

You can use the third parameter to call the following method

void Receptivity::set_Coefficients(StkFloat Uj_steady);

All parameters that are dependent on other modules are fed as input parameters to the modules.

timowest commented 12 years ago

I tried to change the Receptivity test, but got some error, I commited my changes, please try yourself

cbarria commented 12 years ago

awesome, you did some cleaning here too. i will check this later! (btw, the filter your need for your other project is basically a shelving filter that is described inside the MyFilter.cpp)