Skip to content

GeometryProc

Process

Create a geometric representation of a physical system.
A/ create_geometry: Create and export a simple geometric entity (beam, plate, or block) in STEP or BREP format.

erDiagram
  **Parameters** ||--|| **Inputs** : provides
  **Paths** ||--|| **Inputs** : provides
  **Inputs** ||--|| **GeometryProc** : feeds
  **GeometryProc** ||--|| **Outputs** : generates

  **Parameters** {
    int dim
    float length
    float width
    float height
  }
  **Paths** {
    _ _ "_"
  }
  **GeometryProc** {
    op create_geometry
  }
  **Outputs** {
    file outfile "step/brep"
  }

Input Parameter(s)

  • dim: Dimension of the geometry: 1 for a line (beam), 2 for a rectangle (plate), 3 for a box (block).
  • length: Length of the geometry along the X axis.
  • width: Width of the geometry along the Y axis (only used if dim = 2|3).
  • height: Height of the geometry along the Z axis (only used if dim = 3).

Output Path(s)

  • outfile: File containing the geometric model (in .step if dim = 3|2 or .brep if dim = 1).