reading and testing abaqus .inp files

This commit is contained in:
Jukka Aho
2016-07-11 04:48:59 +03:00
parent 9eaa71fd78
commit d394ed6deb
7 changed files with 143 additions and 18 deletions
+8 -1
View File
@@ -245,7 +245,14 @@ function solve!(K, C1, C2, D, f, g, u, la, ::Type{Val{1}}; F=nothing, debug=fals
try
u[B] = lufact(C2[nz,B]) \ full(g[nz])
catch
error("solver #1 failed to solve boundary dofs (you should not see this message).")
info("solver #1 failed to solve boundary dofs (you should not see this message).")
info("# nz = $(length(nz))")
info("# A = $(length(A))")
info("# B = $(length(B))")
info("# I = $(length(I))")
info("nz = $nz")
info("B = $B")
rethrow()
end
# solve interior domain using LDLt factorization