all tests pass now

This commit is contained in:
Jukka Aho
2016-07-03 21:16:03 +03:00
parent eec6db657d
commit 757ba2b3d9
52 changed files with 607 additions and 853 deletions
+2 -4
View File
@@ -99,10 +99,8 @@ end
bc3 = Problem(Mortar, "interface between blocks", 2, "displacement")
push!(bc3, sel1, mel1)
solver = Solver(Nonlinear)
solver.properties.linear_system_solver = :DirectLinearSolver_UMFPACK
push!(solver, body1, body2, bc1, bc2, bc3)
solver()
solver = LinearSolver(body1, body2, bc1, bc2, bc3)
call(solver)
u = e2("displacement", [1.0, 1.0], 0.0)
u_expected = [-1/3, 1.0]