Hi Brad,
I would like to understand how to handle simulations where there are multiple through-going faults. I know that when faults intersect, the through-going fault should come first in the list of interfaces.
But for the case of the figure below, where there are multiple through-going faults, how would you specify the order of the faults in the list of interfaces? If set something like this, then PyLith throws an error during the creation of the cohesive cells:
interfaces = [Fault_3, Fault_2B, Fault_8, Fault_2A]
If I didn’t have Fault_8 in the figure below, then this would work fine:
interfaces = [Fault_3, Fault_2B, Fault_2A]
Similarly, if I remove Fault_3, then this also works fine:
interfaces = [Fault_2B, Fault_8, Fault_2A ]
Note that I made sure that the cohesive cells are created properly with each individual faults.
Let me know what you think about this.
Thank you in advance,
Josimar