struct State {
};
{{ GENERATED_CODE }}
void evaluate(Context ctx) {
auto ratio = getValue<input_RATIO>(ctx);
auto Ka = getValue<input_KA>(ctx);
auto Kb = getValue<input_KB>(ctx);
delay(0);
auto scaledOut = exp((log(ratio) - Kb) / Ka);
emitValue<output_OUT>(ctx, scaledOut);
}