8.1.3. STEP Format CAD Import for Automated Meshing#

Rather than building the geometry in ESP, the user can load a STEP file into the Engineering Sketch Pad (ESP), label the faces and edges in ESP, and save the labeled geometry as an EGADS file. Then, the EGADS file can be directly uploaded to our cluster via the Python API or using the Web UI.

8.1.3.1. Quick Example#

Here is an example CSM script for importing the example.step file and labeling the faces.

import $/example.step -1
group -1
store $prism
store $cylinder
store $box
mark
   restore $prism
      attribute faceName $prism
      attribute groupName $prism
   restore $cylinder
      attribute faceName $cylinder
      attribute groupName $cylinder
   restore $box
      attribute faceName $box
      attribute groupName $box
dump $/example.egads 0 1 0
  1. For import and dump, the $/ means the STEP and EGADS files are in the same folder as the CSM file.

  2. For import, the -1 means import all solid bodies.

  3. For group, the -1 means ungroup the solid bodies so the user can store them separately later on. The user can determine the order of the ungrouped solid bodies interactively in ESP.

  4. For dump, the 0 1 0 means remove=false toMark=true withTess=false i.e. all solid bodies from mark will be exported into the EGADS file. More details about dump can be found in the ESP documentation.

../../../_images/step_example_three_solid_bodies.svg

Fig. 8.1.7 Three solid bodies imported from a STEP file and labeled in ESP.#

As shown in the example above, immediately after the user restores a solid body, the user can assign attributes to the solid body as well as all faces belonging to this solid body. For more options on selecting and attributing faces and edges, see Adding Face and Group Attributes and Adding Edge Attribute

Currently face attributes from third-party CAD software will not be passed to our automated meshing workflow, though we are currently developing a feature to extract ADVANCED_FACE names from STEP files, which will pass the face attributes through our workflow.

8.1.3.2. Common Issues#

This section summarizes common issues when using a STEP file as an entry point for automated meshing.

8.1.3.2.1. Lofting Surfaces#

When lofting the surfaces, it is strongly recommended to avoid sharp corners between edges or small gaps between adjacent surfaces.

../../../_images/sharp_corner_and_small_gap_on_surface.svg

Fig. 8.1.8 Example of a sharp corner and a small gap.#

The schematic above shows two typical issues: (a) the sharp corner between surface-A/B/C could cause surface mesh failure on surface-B (b) the gap between surface-C/D can result in a surface mesh mismatch. It is worth noting that the size of the gap between surface-C/D is exaggerated for illustration. As shown in the screenshot below, in reality, the gap could be so small that it is almost invisible to the human eye.

../../../_images/invisible_gap.png

Fig. 8.1.9 Small/invisible gap on a sheet body in ESP.#

../../../_images/mismatch_surface_mesh.png

Fig. 8.1.10 Surface mesh mismatch due to the small/invisible gap.#

8.1.3.2.2. Boolean Operations#

When improving a design, changes often affect only a small portion of the geometry, leaving the rest unaltered. In such cases, users can import a baseline STEP file and then create a parametric geometry in ESP to represent the modified part. Before performing the UNION operation, it is critical to ensure that the additional parametric geometry is fully extruded into the baseline geometry. This precaution prevents the occurrence of small gaps or sharp corners in 3D space.

../../../_images/3d_sharp_corner.svg

Fig. 8.1.11 Left: Good example. The root cross-section of the pylon is completely inside the wing. Right: Bad example, there is a sharp corner/small gap at the junction between pylon and wing, which could cause volume mesh failure.#

8.1.3.2.3. Solid Body v.s. Sheet Body#

Solid bodies output to STEP files are more robust than sheet bodies.

  • In ESP, when dealing with sheet bodies, patching gaps/holes and “sewing” patches into a closed solid body is possible. However, this process heavily depends on the tolerance and may lead to issues during surface mesh generation. Hence, direct export of solid bodies to STEP files is strongly recommended.

  • During surface mesh generation, we will always check the watertightness. Gaps or holes will trigger warning messages as follows: "WARNING! There is only one neighboring face for an edge." As aforementioned, these gaps may be extremely small and invisible to the human eye.

  • As shown in the following screenshots, when preparing a half or quasi-3D model, it is recommended to keep the side faces on the “symmetric plane” and create solid bodies. The automated mesher will handle the side faces, eliminating the need for manual removal of these side faces by the user.

../../../_images/solid_vs_sheet_body.svg

Fig. 8.1.12 Left: Good example. Solid body, side faces are kept. Right: Bad example. Sheet body, the user does not need to create holes on the “symmetric plane”#