For models that are based on IBMethod, like ConstraintIBMethod, internally the implementation uses forces on the Lagrangian points instead of force densities. The basic formula looks like:
f_{i,j,k} = sum_l F_l delta_h(x_{i,j,k} - X_l)
Note that delta_h has units of 1/volume, and so this converts a force on the IB points into a force density on the grid.
The reason that IBMethod works like this is to try to facilitate support codimenion-0, 1, and 2 structure models — so the code doesn’t know if the IB force is a force per unit volume, per unit area, or per unit length.
Amneet hopefully will chime in if this is wrong, but I think that for ConstraintIBMethod, models are usually set up so that the volume associated with each IB point is equal to the background grid spacing.
— Boyce