As a simple example for applying stl-files I took "cow" out of MMA example data. I'm able to discretize the Graphic without problems
kuh = ExampleData[{"Geometry3D", "Cow"}]
mesh=DiscretizeGraphics[kuh,MeshCellStyle -> {{1, All} -> Red}] (* MeshRegion *)
to get an stl-like triangle surface, which seems to be ok
ConstantRegionQ[mesh]
(*True*)
for further meshing, but my attempt to create a volumemesh fails
Needs["NDSolve`FEM`"]
ToElementMesh[RegionBoundary[mesh]]
(*$Failed*)
What's wrong with my attempt? Thanks!



RegionBoundaryand it should work. – Pinti Mar 07 '19 at 11:02ToElementMesh[mesh] (*$Failed*)– Ulrich Neumann Mar 07 '19 at 11:11ExampleData[{"Geometry3D", "Cow"}, "MeshRegion"]? – J. M.'s missing motivation Mar 07 '19 at 11:21FindMeshDefects[ExampleData[{"Geometry3D", "Cow"}, "MeshRegion"]]shows that a conversion to a volume mesh might not be straightforward. – J. M.'s missing motivation Mar 07 '19 at 11:23