Here's the GIMP additive description, FWIW:
Where M=mask, I=imageAddition mode is very simple. The pixel values of the upper and lower layers are added to each other. The resulting image is usually lighter. The equation can result in color values greater than 255, so some of the light colors may be set to the maximum value of 255.
The equation is:
E = min(M+I, 255)
The mode is commutative; the order of the two layers doesn't matter.
From https://docs.gimp.org/en/gimp-concepts-layer-modes.html
Don't know if it can be applied to more than two layers ...