0
0
Solidworksbi_tool~10 mins

Shell feature for hollow parts in Solidworks - Interactive Code Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the code to apply a shell feature with a thickness of 2mm.

Solidworks
ShellFeature = model.FeatureManager.[1](2.0)
Drag options to blanks, or click blank then click option'
AAddShellFeature
BInsertThinFeature
CInsertShell
DInsertShellFeature
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'InsertThinFeature' which is for thin features but not shell.
Using 'InsertShell' which is incomplete or invalid method.
Using 'AddShellFeature' which is not a valid API method.
2fill in blank
medium

Complete the code to specify the faces to remove in the shell feature.

Solidworks
facesToRemove = [face1, face2]
ShellFeature.[1](facesToRemove)
Drag options to blanks, or click blank then click option'
ASetFacesToRemove
BRemoveFaces
CAddFacesToRemove
DSetFacesToKeep
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'SetFacesToKeep' which is the opposite operation.
Using 'AddFacesToRemove' which is not a valid method.
Using 'RemoveFaces' which is not a recognized API call.
3fill in blank
hard

Fix the error in the shell thickness assignment.

Solidworks
ShellFeature.Thickness = [1]
Drag options to blanks, or click blank then click option'
A2
B'2mm'
C2.0
D"2"
Attempts:
3 left
💡 Hint
Common Mistakes
Using strings like '2mm' or "2" which cause type errors.
Using integer 2 which might be accepted but less precise.
4fill in blank
hard

Fill the three blanks to create a shell feature and specify the thickness and faces to remove.

Solidworks
shell = model.FeatureManager.[1]([2])
shell.[3](facesToRemove)
Drag options to blanks, or click blank then click option'
AInsertShellFeature
B2.5
CSetFacesToRemove
DAddShellFeature
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'AddShellFeature' which is invalid.
Using thickness as a string.
Using wrong method to set faces.
5fill in blank
hard

Fill all four blanks to create a shell feature, set thickness, and remove specific faces.

Solidworks
shellFeature = model.FeatureManager.[1]([2])
shellFeature.[3](facesToRemove)
shellFeature.Thickness = [4]
Drag options to blanks, or click blank then click option'
AInsertShellFeature
B3.0
CSetFacesToRemove
D2.0
Attempts:
3 left
💡 Hint
Common Mistakes
Using strings for thickness values.
Using invalid method names.
Not setting thickness property after creation.