I want to create a slope model where the groundwater is 1m below the slope surface.
How can I do this in FLAC 2D?
i can think in two options..
One is to create the water table geometry using some drawing software so you can have it in .dxf format. Then import it into flac2d and use the command zone water set.
The other is, knowing the vertex of that water table, you can built it using the geometry edge create command, and then use the command zone water set.
I tried your first option.
It works pretty good.
Thanks for your help!
1 Like
A simpler one is to use “zone water table” command, e.g.,
table ‘water_table’ add (-1,9) (4,9) (12,2), (100,2)
zone water density 1.0
zone water table ‘water_table’
This method also works. Thanks!