ERT Field #300
ERT Field
#300
Replies: 1 comment 6 replies
-
The resulting scheme contains four electrodes but only one measurement (A=1, B=2, M=3, N=4). When simulating ERT, we typically model single electrodes (i.e. four potential distributions) and superpose them for later use. By specifying |
Beta Was this translation helpful? Give feedback.
6 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I tried to use a 'dd' scheme in a 3D model.
scheme = ert.createERTData(elecs=np.linspace(start=-15, stop=15, num=4), schemeName='dd')
so the 4 electrodes are placed evenly at
([[-15., 0., 0.], [ -5., 0., 0.], [ 5., 0., 0.], [ 15., 0., 0.]])
and evaluate the potential field
field_het = simulateERT(mesh, res=res, scheme=scheme, sr=False,calcOnly=True, verbose=True,returnFields=returnFields)
I was expecting one field to be returned, as we have specified a,b,m,n. However, the 3 fields with different pair of injection current electrodes were returned? Could someone help me understand this please?
Cheers,
George
Beta Was this translation helpful? Give feedback.
All reactions