Hi,
I want to calculate the matrix belonging to the EFIE discretized with Raviart Thomas test and trial spaces, so I've tried:
rwg_space = bempp.api.function_space(grid, "RWG",0)
efie = bempp.api.operators.boundary.maxwell.electric_field(rwg_space, rwg_space, rwg_space, k)
It appears, however, that this is not a valid choice, and that I have to take my test space equal to a Nedelec curl-conforming space, i.e.
rwg_space = bempp.api.function_space(grid, "RWG", 0)
snc_space = bempp.api.function_space(grid, "SNC", 0)
efie = bempp.api.operators.boundary.maxwell.electric_field(rwg_space, rwg_space, snc_space, k)
Is it possible to circumvent this restriction? Or is the latter somehow equivalent to what I wish to calculate?
Thanks in advance!
Raymond