I am designing a geiger counter with flow code. My Problem is the math functions. The tube's response for CPS (count per second) to MRad/Hr is as follows:
e^((Ln(y)-2.8903)/0.912)=x rad/hr as you can see i need epow and ln operators and i couldn't find a way to solve this problem in Flow Code (floating is also needed.. yep.). Are there any math libraries designed for Flow Code pic or should i buy AVR version with a programmer and redesign

TMR0 is used for a full sec count as frequency can never be larger than 10khz and i have a nearly whole second empty processor time

y ranges from anywhere between 1 to 10 khz so a table is not an option. I also tried to linearize the function splitting the counting zones but this also resulted in more than 100 zones

Anyone can suggest me a solution with epow ln libraries ?
WISH LIST:
1. Please add math functions as macro to the next version of flow code. I know they will be long and slow but better than none.