Solid Edge Large Assembly Performance: Simplify Mode, Active Only, and Configuration Management
Solid Edge assemblies with 5000+ parts lag during rotation, editing, and saving. I cover the Simplify mode, Activate Only selection, and the configuration management strategy that keeps large assemblies responsive.
Solid Edge Large Assembly Performance: Simplify Mode, Active Only, and Configuration Management
DesignFusion, a Solid Edge training and support provider, regularly addresses performance questions. Their guidance is straightforward: "The vast majority of performance issues can be improved by doing one of the following: improve the performance of your computer, check your Solid Edge data for errors, or take the Advanced Assembly course." A user on the Siemens Community forum reported that their processor only reached 20% utilization during Solid Edge operations, indicating a bottleneck that more CPU power alone won't fix. Another user reported that Solid Edge froze when trying to open a project or file.
Solid Edge handles large assemblies better than many mid-range CAD systems, but there's still a limit. When your assembly exceeds 5000 parts, you need to use Solid Edge's built-in large assembly tools to maintain performance.
Fix 1: Use Simplify Mode
Solid Edge's Simplify mode displays components with reduced geometry, which dramatically improves display performance:
- In the assembly environment, go to Tools → Simplify
- Select Simplify Assembly
- Choose simplification options:
- Remove fillets and rounds: Eliminates all rounded edges
- Remove holes: Fills holes below a specified diameter
- Remove internal geometry: Removes faces not visible from outside
- Click OK to generate the simplified representation
- Solid Edge stores the simplified version alongside the full model
- Toggle between simplified and full display with Tools → Simplify → Toggle
When to Use Simplify Mode
- During assembly layout: When positioning components and checking clearances
- During large assembly editing: When making changes to the assembly structure
- During presentations: When showing the assembly to stakeholders
- NOT during detailed part editing: Switch to full mode when editing individual parts
Performance Impact
Simplify mode can reduce the triangle count by 70-90%, which directly improves:
- Orbit and zoom responsiveness
- Selection speed
- Save and open times
- Memory usage
Fix 2: Use Activate Only
Solid Edge loads all parts in an assembly, but only "active" parts are fully loaded into memory. Inactive parts are displayed as lightweight representations:
- In the assembly, select all parts: Ctrl+A
- Right-click → Inactivate
- All parts become inactive (lightweight)
- Select only the parts you're currently working on
- Right-click → Activate
- Only the active parts are fully loaded, reducing memory usage and improving performance
Benefits of Inactive Parts
- Faster assembly open: Inactive parts load as lightweight representations
- Lower memory usage: Only active parts consume full memory
- Faster orbiting: Fewer triangles to render
- Faster saving: Inactive parts don't need to be reprocessed
When to Activate Parts
- When you need to edit a part's geometry
- When you need to create assembly features that reference the part
- When you need to measure precise geometry on the part
- Keep all other parts inactive
Fix 3: Use Configurations for Display States
Configurations in Solid Edge assemblies let you save different display states:
- Create a configuration called "Layout" with:
- Only structural components visible
- All other components hidden
- Create a configuration called "Detail - Drive System" with:
- Only drive system components visible and active
- All other components hidden and inactive
- Create a configuration called "Full Assembly" with:
- All components visible (use for final review only)
- Switch between configurations as you work on different areas
Creating Assembly Configurations
- Go to Home → Configurations
- Click New Configuration
- Name it and set the display/active state for each part
- Repeat for each working state
- Switch configurations from the dropdown in the ribbon
Fix 4: Use Part Simplification
Each part in your assembly can have a simplified representation:
- Open a part in the Part environment
- Go to Tools → Simplify
- Create a simplified version of the part:
- Remove fillets and chamfers
- Remove small holes
- Replace complex geometry with simple shapes
- Save the part
- In the assembly, Solid Edge can display the simplified version
- The full version is used for drawings and manufacturing
Batch Part Simplification
- Use Solid Edge API to simplify multiple parts:
Dim asm As SolidEdgeAssembly.AssemblyDocument Dim occ As SolidEdgeAssembly.Occurrence For Each occ In asm.Occurrences occ.PartDocument.Simplify Next - This applies simplification to all parts in the assembly
- Run this as a batch process during off-hours
Fix 5: Manage Assembly Structure
Use Subassemblies
- Break large assemblies into functional subassemblies:
- Frame subassembly
- Drive system subassembly
- Control system subassembly
- Enclosure subassembly
- Each subassembly can be opened and edited independently
- In the main assembly, subassemblies can be inactivated as a unit
- This reduces the number of active parts at the top level
Use Part Copies Instead of Patterns
- For repeated components (bolts, brackets), use Assembly Patterns
- Patterns share one part definition across all instances
- This is more memory-efficient than inserting individual parts
- Use Assembly → Pattern → Rectangular or Circular
Fix 6: Optimize Display Settings
Disable Unnecessary Display Features
- Go to Solid Edge Options → View
- Disable:
- Show profiles (edge profiles add rendering overhead)
- Show shadows (shadows are GPU-intensive)
- Show reflections (reflections are very GPU-intensive)
- Anti-aliasing (set to Off or 2x, not 8x)
- Set Display quality to Performance (not Quality)
- Set Frame rate to Fixed at 30 FPS (not Variable)
Use Performance Mode
- Go to Tools → Environment → Performance
- Solid Edge automatically adjusts display settings for large assemblies
- This is equivalent to manually disabling all the features above
- Use Performance mode for working, switch to Quality mode for screenshots
Fix 7: Check Data for Errors
DesignFusion's guidance includes checking data for errors. Corrupted or invalid geometry can cause performance problems:
- Go to Tools → Check → Check Assembly
- Solid Edge checks for:
- Missing or broken part links
- Invalid geometry
- Interference issues
- Mate conflicts
- Fix any errors found
- Run Check Part on individual parts to verify geometry integrity
Fix 8: Hardware Optimization
CPU
The user who reported 20% CPU utilization was experiencing a single-core bottleneck. Solid Edge's modeling operations are largely single-threaded:
- Prioritize single-core clock speed over core count
- An i7 at 5.0GHz outperforms a Xeon at 3.0GHz for Solid Edge
- 20% CPU utilization on a 5-core processor means 1 core is maxed out (100/5 = 20%)
RAM
- 16GB: Minimum for assemblies up to 1000 parts
- 32GB: Recommended for assemblies up to 5000 parts
- 64GB: For assemblies with 10,000+ parts
GPU
- 4GB VRAM: Minimum for moderate assemblies
- 8GB VRAM: Recommended for large assemblies with textures
- Use NVIDIA Studio Drivers (not Game Ready)
- Solid Edge is certified with NVIDIA Quadro/RTX A-series cards
Storage
- NVMe SSD: Significantly faster assembly open/save
- Ensure at least 50GB free space for Solid Edge temp files
- Don't store Solid Edge files on network drives for active work — copy locally
Fix 9: Use Solid Edge's Built-in Large Assembly Mode
Solid Edge automatically switches to Large Assembly mode when the part count exceeds a threshold:
- Go to Solid Edge Options → Assembly
- Check Enable Large Assembly mode
- Set the Part count threshold (default is 500)
- When the assembly exceeds this threshold, Solid Edge automatically:
- Switches to Performance display mode
- Inactivates all parts
- Disables shadows and reflections
- You can override individual settings as needed
Summary
| Fix | Impact | Difficulty | |-----|--------|------------| | Use Simplify mode | Very high | Easy | | Use Activate Only | Very high | Easy | | Use display configurations | High | Medium | | Simplify individual parts | High | Medium | | Use subassemblies | High | Medium | | Optimize display settings | Medium | Easy | | Check data for errors | Medium | Easy | | Enable Large Assembly mode | High | Easy |
The most effective combination is: enable Large Assembly mode, inactivate all parts, then activate only the parts you're currently editing. Use Simplify mode for display during navigation and layout work. This combination can make a 10,000-part assembly as responsive as a 500-part assembly.
Source Verification
More Solid Edge Guides
performance
Solid Edge 2025 Slow Startup: License Server Timeout, Network Drive Checks, and Registry Fixes
9 min
performance
Solid Edge Drafting Performance: View Update Slow, Dimension Lag, and Sheet Metal Flat Pattern Fixes
8 min
troubleshooting
Solid Edge Sheet Metal Flat Pattern Errors: Unfold Failures, Wrong K-Factor, and Bend Allowance Fixes
9 min
workflow
Solid Edge Synchronous Technology: Transitioning from Ordered to Synchronous Modeling
9 min
Related Performance Guides
Similar performance content for other CAD tools
3ds Max
•performance
3ds Max Large Scene Optimization: Proxies, Instances, and Memory Management
10 min
3ds Max
•performance
3ds Max Viewport Lag on High-End PC: GPU Driver, Display, and Scene Optimization Fixes
9 min
Ansys
•performance
Ansys Mesh Quality Metrics: Element Distortion Diagnosis and Fix Guide
10 min
Archicad
•performance
ArchiCAD File Bloat and Corruption: Compress, Repair, and Audit Workflow
8 min