gimli-org / gimli

Geophysical Inversion and Modeling Library :earth_africa:
https://www.pygimli.org
Other
374 stars 137 forks source link

Traveltime inversion of a velocity model #785

Closed makeabhishek closed 4 days ago

makeabhishek commented 5 days ago

Hi, I'm trying to invert following velocity model. I created the forward model using this velocity values (Figure) But the inversion results are not as expected.

image
modInv = mgr.invert(data, 
                    mesh=pMesh,   
                    lam=250,  
                    secNodes=3, 
                    showProgress= True, 
                    verbose=True,
                    cType=2,
                   )

Any suggestions or reasoning why its not able to invert? Is it because the velocity is first increasing from center towards edge and then dropped? So the ray path is not able to bend?

halbmy commented 4 days ago

Your velocity model is practically constant considering the color scale of 1101 to 1104 as even modelling errors will be bigger than the differences to a homogeneous model. So of course you won't be able to resolve this in inversion.

makeabhishek commented 4 days ago

Thanks for the advise.