-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to generate a real landslide mode #4
Comments
Dear Henry, Yes, Titan2D can only handle two simple forms for now. It shouldn't be very difficult to implement and we have discussed it earlier, but it is not clear when we will have time to add that. Thanks, |
Dear Nikolay, |
Yes, you can try to use a set of piles to approximate more complex geometry. The input file is a python script so you can add it within your input script. Basically you need to add piles multiple times with modified arguments for addPile method: piles_xy = [
[644956.0, 2157970.0],
[644936.0, 2157970.0]
]
for xy in piles_xy:
sim.addPile(
pile_type='Paraboloid',
height=30.0,
center=xy,
radii=[55.0, 55.0],
orientation=0.0,
Vmagnitude=0.0,
Vdirection=0.0,
) The problem is that I don't think it will handle overlapping piles correctly, particularly the initial material volume. Current stable release has a bug in calculation of cylindrical piles volume by factor of two results are not identical but qualitatively somewhat similar (parabolic pile are ok and it is already fixed in master). Regards, |
Thanks a lot. |
Dear All,
Titan2D is a powerful code for the simulation of the landslide. But how to generate a real landslide model with complex boundary. For I only see some examples with the simple shape, such as cylinder and so on.
Thanks a lot!
Best regards,
Henry
The text was updated successfully, but these errors were encountered: