It is possible to solve nonlinear state-space models non-iteratively, via linearly-implicit schemes. The update requires at most the solution of one linear system, thus sidestepping the machinery of iterative methods (including design choices such as the maximum number of iterations and tolerance). The schemes can be constructed so to satisfy increasing orders of accuracy, (p=1:4). In particular, a first-order accurate scheme can be constructed, depending on a free parameter. The scheme is unconditionally stable, therefore guaranteeing passivity. The free parameter controls the amount of low-pass filtering induced by the scheme, reducing aliasing. Here, the non-iterative schemes are compared to two classic designs: the trapezoid and midpoint methods.

convergence test
Convergence test. Cubic scalar nonlinearity.

DIODE CLIPPER
Outside of its relevance in the context of virtual-analog simulation, the diode clipper is particularly interesting from a numerical stand-point. Explicit numerical designs (such as e.g. Forward Euler, orthe Runge-Kutta RK4 scheme) are known to fail here, unless the time step is chosen to very small values compared to the time scales of the computed solution. The differential equation is stiff in this case, as the exponentially-unbounded nonlinearity accounts for a fast variation in the transients of the computed solution. Linear sine sweeps are passed through the diode clipper, simulated using the schemes described above. Note that higher-order scheme have worse aliasing than lower-order ones. The free parameter a in the p = 1 scheme can be tuned to effectively reduce aliasing. Matlab sample code is available here.

diode clipper spectra
Diode clipper output spectra. Input is a linear sine sweep of amplitude 1V. Trapezoid and midpoint are run at 2X audio rate. The non-iterative schemes at 4X audio rate. Free parameter a as indicated.
Input
Trapezoid
Midpoint
p = 1, a = 1
p = 1, a = 2
p = 1, a = 4
p = 2
p = 3
p = 4

RING MODULATOR
The ring modulator is expressed as a system of nonlinear equations. Extensions of the scalar case above are possible. Here are the results from two sine sweeps, using different carrier frequencies.

ring mod spectra 1
Ring modulator output spectra. The modulator input is a linear sine sweep of amplitude 1V. The carrier input is a 500Hz sine wave of amplitude 0.2V. Oversampling factors as indicated. Free parameter a as indicated.
Input (modulator)
Trapezoid (1X)
Trapezoid (2X)
Midpoint (1X)
Midpoint (2X)
p = 1, a = 2
p = 2
ring mod spectra 1
Ring modulator output spectra. The modulator input is a linear sine sweep of amplitude 1V. The carrier input is a 1000Hz sine wave of amplitude 0.2V. Oversampling factors as indicated. Free parameter a as indicated.
Input (modulator)
Trapezoid (1X)
Trapezoid (2X)
Midpoint (1X)
Midpoint (2X)
p = 1, a = 2
p = 2

COMPUTE TIMES
Below are the ring modulator compute times in C++ for 1 second of output. The non-iterative schemes work at a fixed cost, comparable to that of the trapezoid method for average input voltage amplitudes.

ring mod spectra 1
Top: compute times in ms. Bottom: ratios. Colour scheme: trapezoid 1X audio rate (red), trapezoid 2X audio rate (black), non-iterative 4X audio rate (green). Resampling times are included.