该函数用于修改Surface对象的名称。
set_surfaces_name(self, old_name: Union[str, List[str]], new_name: Union[str, List[str]])
该函数不返回任何值,但会修改Surface对象的名称。
import gempy as gp
# 载入模型数据
geo_model = gp.create_model('Example model')
gp.init_data(geo_model, [0, 10, 0, 10, 0, 10], [50, 50, 50], ghost_block=True)
# 创建Surface对象
gp.add_surface(geo_model, ['surface1'])
# 修改Surface对象的名称
geo_model.surfaces.set_surfaces_name('surface1', 'new_surface1')