Skip to content

Commit 47e4033

Browse files
nasty typo part 2
1 parent 2b4c1c4 commit 47e4033

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/transient_linear.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ f(t) = x -> sin(t) * sinpi(x[1]) * sinpi(x[2])
7878
m(t, dtu, v) = (v * dtu)dΩ
7979
a(t, u, v) = (α(t) * (v) (u))dΩ
8080
l(t, v) = (v * f(t))dΩ
81-
op = TransientLinearFEOperator((m, a), l, Ug, V0)
81+
op = TransientLinearFEOperator((a, m), l, Ug, V0)
8282

8383
# In our case, the mass term ($m(t, \cdot, \cdot)$) is constant in time. We can take advantage of that to save some computational effort, and indicate it to Gridap as follows
8484
op_opt = TransientLinearFEOperator((a, m), l, Ug, V0, constant_forms=(true, false))

0 commit comments

Comments
 (0)