0
0
Solidworksbi_tool~15 mins

Feature Manager design tree in Solidworks - Real Business Scenario

Choose your learning style9 modes available
Scenario Mode
šŸ‘¤ Your Role: You are a product engineer working with SolidWorks CAD software.
šŸ“‹ Request: Your manager wants a report showing how the Feature Manager design tree is organized for a complex part, highlighting key features and their dependencies.
šŸ“Š Data: You have access to the Feature Manager design tree data exported as a list of features with their types, order, and parent-child relationships.
šŸŽÆ Deliverable: Create a dashboard report that visualizes the Feature Manager design tree structure, counts of feature types, and identifies any missing or suppressed features.
Progress0 / 5 steps
Sample Data
FeatureIDFeatureNameFeatureTypeParentFeatureIDStatus
1Base ExtrudeExtrudeActive
2Cut-Extrude1Cut1Active
3Fillet1Fillet2Active
4Boss-Extrude1Extrude1Suppressed
5Hole Wizard1Hole3Active
6Pattern1Pattern5Active
7Shell1Shell1Active
8Draft1Draft7Active
1
Step 1: Import the Feature Manager design tree data into your BI tool as a table with columns FeatureID, FeatureName, FeatureType, ParentFeatureID, and Status.
Load the provided sample_data table into the BI tool's data model.
Expected Result
Data table with 8 rows and 5 columns loaded successfully.
2
Step 2: Create a hierarchy visualization showing the parent-child relationships of features using FeatureID and ParentFeatureID.
Configure a tree diagram visual: Nodes = FeatureName, Parent = ParentFeatureID.
Expected Result
A tree diagram showing Base Extrude at root, with branches to Cut-Extrude1, Boss-Extrude1 (suppressed), Shell1, and their child features.
3
Step 3: Create a measure to count the number of features by FeatureType.
CountFeatures = COUNTROWS('FeatureTable') grouped by FeatureType.
Expected Result
Counts such as Extrude=2, Cut=1, Fillet=1, Hole=1, Pattern=1, Shell=1, Draft=1.
4
Step 4: Create a filter or highlight to identify suppressed features in the tree and counts.
Filter Status = 'Suppressed' to highlight suppressed features in visuals.
Expected Result
Boss-Extrude1 is highlighted as suppressed in the tree and excluded or marked in counts.
5
Step 5: Build a dashboard combining the tree diagram, feature type counts, and a status summary showing active vs suppressed features.
Dashboard layout: Left - Feature Manager tree; Right top - FeatureType counts bar chart; Right bottom - Status pie chart.
Expected Result
Dashboard clearly shows feature hierarchy, counts by type, and status distribution.
Final Result
Feature Manager Design Tree Dashboard

[Tree Diagram]
Base Extrude
ā”œā”€ Cut-Extrude1
│  └─ Fillet1
│     └─ Hole Wizard1
│        └─ Pattern1
ā”œā”€ Boss-Extrude1 (Suppressed)
└─ Shell1
   └─ Draft1

[Feature Type Counts]
Extrude: 2
Cut: 1
Fillet: 1
Hole: 1
Pattern: 1
Shell: 1
Draft: 1

[Status Summary]
Active: 7
Suppressed: 1
Bonus Challenge

Add a timeline visualization showing when each feature was created or modified if timestamp data is available.

Show Hint
Use a date/time column and create a Gantt or line chart to visualize feature creation order.