Skip to content

Commit 3a7d728

Browse files
authored
Updates to forces gradients (#122)
Rework gradients of forces
1 parent eab9fd9 commit 3a7d728

File tree

6 files changed

+494
-170
lines changed

6 files changed

+494
-170
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "Jutul"
22
uuid = "2b460a1a-8a2b-45b2-b125-b5c536396eb9"
33
authors = ["Olav Møyner <[email protected]>"]
4-
version = "0.3.8"
4+
version = "0.3.9"
55

66
[deps]
77
AlgebraicMultigrid = "2169fc97-5a83-5252-b627-83903c6c433c"

ext/JutulGmshExt/interface.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ function Jutul.mesh_from_gmsh(pth; manage_gmsh = true, kwarg...)
44
Gmsh.initialize()
55
end
66
ext = pth |> splitext |> last
7-
gmsh.open(pth)
8-
if lowercase(ext) == ".geo"
9-
gmsh.model.mesh.generate()
10-
end
117
g = missing
128
try
9+
gmsh.open(pth)
10+
if lowercase(ext) == ".geo"
11+
gmsh.model.mesh.generate()
12+
end
1313
g = Jutul.mesh_from_gmsh(; kwarg...)
1414
finally
1515
if manage_gmsh

0 commit comments

Comments
 (0)