Adding geophysical constraints #1085
Replies: 3 comments 1 reply
-
|
Hi @sandhya0892 , we are not using geophysical inversion in this way as a model input to build models. Models are built in Gempy using surface points (points on the interface between to rock units) and orientation points. You would have to interpret this interface in your inversion result. As "geophysical inversion" is a very broad term and there are many algorithms, there is no 100 % robust and general answer to this question. Maybe you describe your aim and algorithm a bit more and maybe we can give you some directions. |
Beta Was this translation helpful? Give feedback.
-
|
Thank you for your response @NilsChudalla, my aim is to create a geological model of a region. I have provided the surface points and the orientations. I would like to know if I can provide the results from the joint gravity and magnetic inversion, which I carried out in SimPEG to GemPy. I understand that I would have to map the densities to the formation before I use it in the code. I tried that as well ( a very rough approximation). My code is as below: import pandas as pd geo_model: gp.data.GeoModel = gp.create_geomodel( df_density = pd.read_csv('inversion_density_model.csv') gp.add_surface_points( gp.map_stack_to_surfaces( sol = gp.compute_model(geo_model, compute_mesh = True) Since this is only a crude approximation, I was wondering whether there is an alternative way to input gravity data. When I print geo_model, I notice that there is a key called geophysical_input, which made me curious about whether gravity data can be incorporated through that instead. Thank you for your response again. |
Beta Was this translation helpful? Give feedback.
-
|
Hi @NilsChudalla, Thank you for your timely response! Your suggestions are really helpful. I will definitely try it out. Regards, Sandhya |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
I have results from geophysical inversion, i.e. density and susceptibility. How do I add these constraints to my geo_model?
Beta Was this translation helpful? Give feedback.
All reactions