Skip to content
Snippets Groups Projects
Commit dc6efef4 authored by Elias Pipping's avatar Elias Pipping Committed by Elias Pipping
Browse files

Comments

parent ac73676a
No related branches found
No related tags found
No related merge requests found
...@@ -84,7 +84,7 @@ model = Dieterich # Ruina ...@@ -84,7 +84,7 @@ model = Dieterich # Ruina
a = 0.0075 a = 0.0075
b = 0.015 b = 0.015
# If L is too large, reaching a steady state takes too long # If L is too large, reaching a steady state takes too long
L = 1e-8 # 1e-3 for the Dirichlet case, 1e-5 - 1e-7 for the Neumann case L = 1e-8
# The second-order a and b terms in [..] are very important in # The second-order a and b terms in [..] are very important in
# determining whether sliding is stable or unstable and (in appli- # determining whether sliding is stable or unstable and (in appli-
......
...@@ -11,6 +11,7 @@ class neumannCondition: ...@@ -11,6 +11,7 @@ class neumannCondition:
else: else:
return trd * (x - 2.0/3) + (fst + snd) * 1.0/3 return trd * (x - 2.0/3) + (fst + snd) * 1.0/3
## FIXME: If we change time discretisation, we currently change the problem
class dirichletCondition: class dirichletCondition:
def __call__(self, x): def __call__(self, x):
return 3e-3 / 16 return 3e-3 / 16
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment