fix(legacy): wire Abaqus shim to Legacy surface helper

Stop re-exporting `create_surface_elements` from top-level `JuliaFEM`
(which no longer defines it) and bind the compatibility submodule against the
Legacy implementation instead.

- Replace `using JuliaFEM: create_surface_elements` with `import
  ..create_surface_elements` inside `Legacy.Abaqus`.
This commit is contained in:
Jukka Aho
2026-05-09 17:20:28 +03:00
parent c02af32e75
commit ca1bc0b81e
+4 -1
View File
@@ -10,5 +10,8 @@ function assemble!(problem::Problem, element::Element, time=0.0)
end
module Abaqus
using JuliaFEM: create_surface_elements
# Vestigial sub-module wrapper kept for downstream code that did
# `using JuliaFEM.Abaqus: create_surface_elements`. The real definition
# now lives in `JuliaFEM.Legacy.create_surface_elements`.
import ..create_surface_elements
end