Closed
Description
I have 5 time-lapse data sets (all with the same number of measures).
If I load one at the time
data0=ert.load('ttl00.pyg')
data1=ert.load('ttl01.pyg')
data2=ert.load('ttl02.pyg')
data3=ert.load('ttl03.pyg')
data4=ert.load('ttl04.pyg')
I can invert each one individually
mgr = ert.ERTManager(data0)
mgr.invert(verbose=True,mesh=mesh,robustData=False,blockyModel=False)
But if I load them as a time-lpase data set
DATA=[]
DATA.append(data0)
DATA.append(data1)
DATA.append(data2)
DATA.append(data3)
DATA.append(data4)
mgr = ert.TimelapseERT(DATA,mesh=mesh)
mgr.fullInversion()
I get the following error
RuntimeError: ./core/src/bert/datamap.cpp:187 GIMLI::RVector GIMLI::DataMap::data(const GIMLI::DataContainerERT&, bool, bool) Collect matrix to small. data: 0 Number of electrodes = 193; a = -2147483647 b = 1 m = 3 n = 4
AFAIK the remote something is off with the remote electrode. Any advice on what to do?
Metadata
Metadata
Assignees
Labels
No labels