Skip to content

Commit 5d78546

Browse files
Change generalized alpha
alpha_m and alpha_f must be 0 to obtain the Newmark Beta scheme. We currently cannot support alpha_f != 0 with preCICE as long as Waveform Iteration is not implemented.
1 parent caa5ad0 commit 5d78546

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

perpendicular-flap/solid-fenics/perp-flap.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,8 @@ def neumann_boundary(x, on_boundary):
7979
bc = DirichletBC(V, Constant((0, 0)), fixed_boundary)
8080

8181
# alpha method parameters
82-
alpha_m = Constant(0.2)
83-
alpha_f = Constant(0.4)
82+
alpha_m = Constant(0)
83+
alpha_f = Constant(0)
8484
gamma = Constant(0.5 + alpha_f - alpha_m)
8585
beta = Constant((gamma + 0.5)**2 / 4.)
8686

0 commit comments

Comments
 (0)