Velocity field with phase

Hello, apologies in advance but I am an engineer not a mathematician(!)

I’m working on an acoustics problem of a cube with one face radiating.
I based it on this tutorial: https://nbviewer.org/github/mscroggs/bempp-acoustic-tutorials/blob/main/tutorials/5_loudspeaker.ipynb

It works quite nicely, but now I would like to try making the opposite face radiate with an amplitude and phase difference to look at the directivity patterns and generally play around with it.
I have my tagged mesh set up with different IDs for the different faces.

How do I set up the two velocity fields in Bempp with different amplitude and phase?
How do I set up the solver with the multiple spaces?

Thanks!

I worked this out.

The velocity field is defined in this function:

@bempp.api.complex_callable
def u_total_callable(x, n, domain_index, result):
if domain_index == 2:
result[0] = n[2];
else:
result[0] = 0

To add another field to another domain, I included an elif for that domain index/tag.
The complex values for each field can be entered as required.