8000 time-lapse mode and pole-dipole array · Issue #850 · gimli-org/gimli · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
time-lapse mode and pole-dipole array #850
< 8450 div class="Box-sc-g0xbh4-0 ialRZd prc-PageHeader-ContextAreaActions-RTJRk" data-hidden-regular="true">
Closed
@mariosgeo

Description

@mariosgeo

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
No labels

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions

    0