Skip to content

Analysis Tools

Use these after a model or assembly already exists. Start with mass properties, then interference checking, then geometry analysis, then material properties.

Prerequisite: An active model or assembly with solid geometry.

Total tools in this category: 5

  1. calculate_mass_properties or get_mass_properties
  2. check_interference
  3. analyze_geometry
  4. get_material_properties

Known limits

  • get_mass_properties is a compatibility alias for calculate_mass_properties.
  • These tools do not create or modify geometry.
  • In tests and local development, the mock adapter stands in for SolidWorks COM and returns canned success/error payloads so the suite can run without a live SolidWorks session, this is mostly for CI and testing use cases. Use a real SolidWorks Tinstallation to validate engineering results.

calculate_mass_properties

Get mass properties of the current SolidWorks model.

Prerequisite: Active model with solid geometry

Parameters:

Parameter Type Required Default Description
model_path str? None Path to the model file
units str metric Units for mass properties
include_hidden bool False Include hidden components
reference_coordinate_system str? None Reference coordinate system alias

Sample call:

{}

get_mass_properties

Backward-compatible alias for calculate_mass_properties.

Prerequisite: Active model with solid geometry

Sample call:

{}

check_interference

Check for interference between components in an assembly.

Prerequisite: Active assembly

Parameters:

Parameter Type Required Default Description
assembly_path str? None Assembly path alias
check_all_components bool False Check all components alias
include_hidden bool False Include hidden components
components List[str] `` List of component names to check for interference
tolerance float 0.001 Interference detection tolerance in mm

Sample call:

{
  "components": []
}

analyze_geometry

Perform geometry analysis on the current model.

Prerequisite: Active model with geometry

Parameters:

Parameter Type Required Default Description
analysis_type str `` Type of analysis (curvature, draft, thickness, etc.)
parameters Dict[str, Any]? None Analysis-specific parameters

Sample call:

{
  "analysis_type": "curvature"
}

get_material_properties

Get material properties of the current model.

Prerequisite: Active part with assigned material

Sample call:

{}