Skip to main content

make_n_hole_flange_rsolid

Kind: Function
Domain: Modeling and geometry
Canonical import: from cadflow import make_n_hole_flange_rsolid

Signature

def make_n_hole_flange_rsolid(flange_outer_diameter=120.0, flange_inner_diameter=60.0, flange_thickness=15.0, boss_outer_diameter=80.0, boss_height=5.0, hole_diameter=8.0, hole_circle_diameter=100.0, hole_count=8, chamfer_size=1.0) -> cadflow._engine.geometry.core.Solid

Description

Create an n-hole flange with a raised boss ring and optional chamfers. The center of the bottom face is placed at the origin.

Parameters

NameTypeRequiredDefaultSource description
flange_outer_diameterAnyno120.0Not explicitly described in the source docstring.
flange_inner_diameterAnyno60.0Not explicitly described in the source docstring.
flange_thicknessAnyno15.0Not explicitly described in the source docstring.
boss_outer_diameterAnyno80.0Not explicitly described in the source docstring.
boss_heightAnyno5.0Not explicitly described in the source docstring.
hole_diameterAnyno8.0Not explicitly described in the source docstring.
hole_circle_diameterAnyno100.0Not explicitly described in the source docstring.
hole_countAnyno8Not explicitly described in the source docstring.
chamfer_sizeAnyno1.0Not explicitly described in the source docstring.

Returns

Type: cadflow._engine.geometry.core.Solid

The source docstring does not declare additional return semantics.

Errors

The source docstring does not declare a narrower exception contract. Invalid types, values, ownership, paths, or backend state may still raise the corresponding public error.

Behavior and constraints

  • The contract below is generated from the current public runtime signature. Check domain notes for ownership and workflow constraints.

Import check

from cadflow import make_n_hole_flange_rsolid

See also