Hello,
How can I use python to see a list of all the boreholepolygones generated in Plaxis?
Same question also applies to a list of all the user-defined water levels, loads, etc.
Thank you very much
Hello Farbod,
Yes, you can simply do a for loop:
for bhpol in g_i.SoilPolygons: print(bhpol.Name) # add code here
The same logic can be applied in all listables in PLAXIS, including the water levels or loads:
for wl in g_i.UserWaterLevels: print(wl.Name) # add code here