Solidworks 技能创建
- 作者仓库星标 20
- 作者仓库 claude-engineering-skills
SolidWorks CAD Integration
This skill provides guidance for automating parametric pump impeller design and other mechanical component modeling using the SolidWorks API.
Overview of SolidWorks API
SolidWorks provides a comprehensive API that allows users to automate design tasks, create parametric models, manipulate assemblies, and generate drawings programmatically. The API exposes the full functionality of SolidWorks through COM interfaces, enabling external applications to control SolidWorks and access its features.
Key capabilities:
- Parametric part and assembly creation
- Feature manipulation and dimension control
- Sketch creation and editing
- Drawing automation and annotation
- File import/export operations
- Simulation and analysis integration
- Bill of materials (BOM) generation
Licensing Requirements
Important: SolidWorks API access requires:
Valid SolidWorks License: A full SolidWorks license is required to use the API. The API cannot be used with viewer-only licenses.
License Types:
- SolidWorks Standard, Professional, or Premium
- Network (concurrent) or standalone licenses both support API access
- SolidWorks PDM integration requires additional PDM licenses
Windows Platform: SolidWorks and its API are Windows-only. The API utilizes COM/ActiveX technology specific to Windows.
Version Compatibility: Ensure your API code matches your SolidWorks version. API methods may vary between versions.
API Access Methods
1. VBA Macros
VBA (Visual Basic for Applications) is the built-in scripting environment in SolidWorks.
Advantages:
- Native integration with SolidWorks
- No external dependencies
- Easy to debug within SolidWorks
- Direct access to UI elements
Use Cases:
- Quick automation scripts
- User interaction through forms
- Prototyping API workflows
Access: Tools > Macro > New or Edit in SolidWorks
2. Python (via win32com)
Python can control SolidWorks through the win32com package (pywin32).
Advantages:
- Modern, readable syntax
- Extensive Python ecosystem for data processing
- Integration with scientific libraries (NumPy, pandas)
- Easier to version control and test
Requirements:
pip install pywin32
Use Cases:
- Batch processing of parts
- Data-driven design automation
- Integration with engineering calculations
- Export/import workflows
3. C# .NET
C# provides strong typing and robust development tools for SolidWorks automation.
Advantages:
- Best performance
- Strong typing and IntelliSense support
- Comprehensive error handling
- Professional application development
Requirements:
- Visual Studio
- SolidWorks Interop Assemblies (installed with SolidWorks)
Use Cases:
- Custom SolidWorks add-ins
- Enterprise integration applications
- Complex automation workflows
- Standalone applications controlling SolidWorks
Common Tasks
Parametric Part Creation
Create parts with dimensions that can be modified programmatically:
- Define sketches with dimensional constraints
- Create features (extrude, revolve, sweep, loft)
- Add relations between features
- Set global variables and equations
Impeller Blade Geometry
Specialized tasks for pump impeller design:
- Blade Profile Generation: Create complex 3D curves for blade profiles
- Swept Features: Use guide curves and profiles to create blade surfaces
- Circular Patterns: Array blades around the central axis
- Hub and Shroud Modeling: Create the central hub and outer shroud geometries
- Fillet Operations: Add fillets for manufacturing and performance optimization
- Parametric Control: Link blade angles, thickness, and count to design variables
Assembly Automation
Automate assembly creation and modification:
- Insert components into assemblies
- Apply mates (coincident, concentric, distance, angle)
- Create patterns of components
- Detect interferences
- Manage assembly configurations
Drawing Generation
Automatically create and populate engineering drawings:
- Create drawing sheets from templates
- Insert model views (standard, section, detail)
- Add dimensions and annotations
- Generate BOMs and balloons
- Export to PDF or DWG
File Export
Export SolidWorks models to neutral formats:
- STEP (ISO 10303): Industry-standard for CAD data exchange
- IGES: Legacy format, widely supported
- Parasolid: High-fidelity geometry transfer
- STL: For 3D printing and mesh-based analysis
- DXF/DWG: 2D drawing export for manufacturing
Best Practices
- Error Handling: Always implement robust error handling as API operations can fail
- Version Control: Keep API code separate from CAD files for better version control
- Documentation: Document units, coordinate systems, and design intent
- Testing: Test API scripts on simple models before applying to complex designs
- Performance: Suppress screen updates and rebuild operations for better performance
- Cleanup: Always release COM objects properly to avoid memory leaks
Learning Resources
- SolidWorks API Help: Access from Help > API Help in SolidWorks
- API SDK: Includes examples and documentation (installed with SolidWorks)
- Online Community: SolidWorks Forums and user groups
- Sample Code: Available in SolidWorks installation directory
Limitations and Considerations
- Platform: Windows-only, no macOS or Linux support
- Performance: Complex operations may be slow; consider batch processing during off-hours
- Licensing: Requires active SolidWorks session (consumes a license)
- Version Dependencies: API changes between SolidWorks versions may break scripts
- COM Complexity: Understanding COM object model is essential for advanced use
Integration with Engineering Workflow
The SolidWorks API is particularly valuable for:
- Design Optimization: Parametric studies with multiple design variants
- CFD Preprocessing: Automated geometry preparation for OpenFOAM or ANSYS
- Manufacturing: Automated drawing generation and BOM creation
- Product Configurators: Customer-driven product customization
- Data Management: Integration with PLM/PDM systems
- 流狐分类
- 设计与多媒体
- 作者声明 Agent
- 未找到明确声明;不据此推断已兼容或已测试
- 静态检查
- 85 / 100 · 启发式扫描,不代表运行安全
- 作者 / 版本 / 许可
- @Soljourner · 未声明 license
- 流狐 Token 估算
- 低消耗
- 流狐接入估算
- 即装即用
- 是否需要外部 API Key
- 未发现要求
- 检测到的系统要求
- macOS · Linux · Windows
- 底层运行要求
- Python
- 检测到的文件与系统行为
-
- 只读
- 允许写入 / 修改
- 检测到的网络行为
- 仅限本地
- 安装命令数
- 无(仅作为资料)
档案由构建时根据 SKILL.md 与安装命令自动衍生,可能与作者实际意图存在差异。
需要注意: 未限定 allowed-tools,默认拥有全部工具权限。;上游仓库已 211 天未更新,可能与最新 agent 行为不一致。
作者没有在当前 SKILL.md 中定义固定输出样例。 SolidWorks provides a comprehensive API that allows users to automate design tasks, create parametric models, manipulate assemblies, and generate drawings programmatically. The API exposes the full functionality of SolidWorks through COM interfaces, enabling…
Important: SolidWorks API access requires: Valid SolidWorks License: A full SolidWorks license is required to use the API. The API cannot be used with viewer-only licenses. License Types:
API Access Methods
VBA (Visual Basic for Applications) is the built-in scripting environment in SolidWorks. Advantages: Native integration with SolidWorks
Python can control SolidWorks through the win32com package (pywin32). Advantages: Modern, readable syntax
C provides strong typing and robust development tools for SolidWorks automation. Advantages: Best performance
# SolidWorks CAD Integration
This skill provides guidance for automating parametric pump impeller design and other mechanical component modeling using the SolidWorks API.
## Overview of SolidWorks API
SolidWorks provides a comprehensive API that allows users to automate design tasks, create parametric models, manipulate assemblies, and generate drawings programmatically. The API exposes the full functionality of SolidWorks through COM interfaces, enabling external applications to control SolidWorks and access its features.
Key capabilities:
- Parametric part and assembly creation
- Feature manipulation and dimension control
- Sketch creation and editing
- Drawing automation and annotation
- File import/export operations
- Simulation and analysis integration
- Bill of materials (BOM) generation
## Licensing Requirements
**Important**: SolidWorks API access requires:
1. **Valid SolidWorks License**: A full SolidWorks license is required to use the API. The API cannot be used with viewer-only licenses.
2. **License Types**:
- SolidWorks Standard, Professional, or Premium
- Network (concurrent) or standalone licenses both support API access
- SolidWorks PDM integration requires additional PDM licenses
3. **Windows Platform**: SolidWorks and its API are Windows-only. The API utilizes COM/ActiveX technology specific to Windows.
4. **Version Compatibility**: Ensure your API code matches your SolidWorks version. API methods may vary between versions.
## API Access Methods
### 1. VBA Macros
VBA (Visual Basic for Applications) is the built-in scripting environment in SolidWorks.
**Advantages**:
- Native integration with SolidWorks
- No external dependencies
- Easy to debug within SolidWorks
- Direct access to UI elements
**Use Cases**:
… 作者原文负责流程事实;流狐只索引当前章节、要点、文件与命令。
章节 -> Overview of SolidWorks API → Licensing Requirements → API Access Methods → 1. VBA Macros → 2. Python (via win32com) → 3. C .NET
要点 -> Important · Valid SolidWorks License · License Types · Windows Platform · Version Compatibility · Advantages · Use Cases · Access
文件/命令 -> win32com · import/export · COM/ActiveX · Export/import · DXF/DWG · PLM/PDM
内容 SHA-256 -> 3a1437c0e8cf
方法与流程
适用与边界
原文中的明确线索
win32com、import/export、COM/ActiveX、Export/import、DXF/DWG、PLM/PDM