Skip to main content

make_connection_behavior_rconnectionbehavior

Kind: Function
Domain: Physical connections
Canonical import: from cadflow import make_connection_behavior_rconnectionbehavior

Signature

def make_connection_behavior_rconnectionbehavior(*, response_mode: 'ConnectionResponseMode | str', normal_stiffness: 'float' = 0.0, tangential_stiffness: 'float' = 0.0, rotational_stiffness: 'float' = 0.0, normal_damping: 'float' = 0.0, tangential_damping: 'float' = 0.0, rotational_damping: 'float' = 0.0, friction_coefficient: 'float' = 0.0, preload: 'float' = 0.0, clearance: 'float' = 0.0, interference: 'float' = 0.0, tensile_limit: 'Optional[float]' = None, shear_limit: 'Optional[float]' = None, torque_limit: 'Optional[float]' = None) -> 'ConnectionBehavior'

Description

Public function in the CadFlow physical connections API.

Other public imports

  • from cadflow.physical import make_connection_behavior_rconnectionbehavior

Parameters

NameTypeRequiredDefaultSource description
response_mode'ConnectionResponseMode | str'yes-Not explicitly described in the source docstring.
normal_stiffness'float'no0.0Not explicitly described in the source docstring.
tangential_stiffness'float'no0.0Not explicitly described in the source docstring.
rotational_stiffness'float'no0.0Not explicitly described in the source docstring.
normal_damping'float'no0.0Not explicitly described in the source docstring.
tangential_damping'float'no0.0Not explicitly described in the source docstring.
rotational_damping'float'no0.0Not explicitly described in the source docstring.
friction_coefficient'float'no0.0Not explicitly described in the source docstring.
preload'float'no0.0Not explicitly described in the source docstring.
clearance'float'no0.0Not explicitly described in the source docstring.
interference'float'no0.0Not explicitly described in the source docstring.
tensile_limit'Optional[float]'noNoneNot explicitly described in the source docstring.
shear_limit'Optional[float]'noNoneNot explicitly described in the source docstring.
torque_limit'Optional[float]'noNoneNot explicitly described in the source docstring.

Returns

Type: 'ConnectionBehavior'

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_connection_behavior_rconnectionbehavior

See also