Rack input and output values (carried by cables) are in voltage units. You can measure absolute voltage levels using the Fundamental Scope.
Rack attempts to model Eurorack standards as accurately as possible, but this is a problem for two reasons: there are very few actual “standards” in Eurorack (The only rule is that you can always find a module which breaks the rule), and a few changes must be made due to using a finite sample rate (digital) vs. an infinite sample rate (analog).
Audio outputs are typically ±5V (before bandlimiting is applied), and CV modulation sources are typically 0 to 10V (unipolar CV) or ±5V (bipolar CV).
In Eurorack, power supplies supply -12 to 12V. No voltage should be generated beyond this range, since it would be (mostly) impossible to obtain in Eurorack. Additionally, protection diodes on the ±12V rails usually drop the range to ±11.7V.
However, if you do not want to model analog output saturation for simplicity or performance reasons, that is perfectly fine.
It is best to allow voltages outside this range rather than use hard clipping with clampf(out, -1.f, 1.f)
because in the best case they will be attenuated by a module downstream, and in the worst case, they will be hard clipped by the Audio Interface.
If your module applies gain to an input, it is a good idea to saturate the output.
In Eurorack, many modules are triggered by reaching a particular rising slope threshold. However, because of the Gibbs phenomenon, a digital emulation will falsely retrigger many times if the trigger source is bandlimited.
Thus, trigger inputs in Rack should use SchmittTrigger
from digital.hpp
with a low threshold of about 0.1V and a high threshold of around 1 to 2V.
For example, Audible Instruments modules are triggered once the input reaches 1.7V and can only be retriggered after the signal drops to or below 0V.
Trigger sources should produce 5 to 10V with a duration of 1 millisecond.
An easy way to do this is to use PulseGenerator
from digital.hpp
.
Most Eurorack manufacturers use the 1V/octave standard. The relationship between frequency $$f$$ and voltage $$V$$ is $$f = f_0 \cdot 2^{V}$$, where $$f_0$$ is an arbitrary baseline set by a pitch knob or the note C4 ($$f_0 =$$ 261.626 Hz).
If your module might produce NaNs or infinite values with finite input, e.g. an unstable IIR filter or reverb, it should check and return 0 if this happens: isfinite(out) ? out : 0.f
.