Bird
Raised Fist0
Solidworksbi_tool~10 mins

Creating an assembly document in Solidworks - Interactive Practice

Choose your learning style10 modes available

Start learning this pattern below

Jump into concepts and practice - no test required

or
Recommended
Test this pattern10 questions across easy, medium, and hard to know if this pattern is strong
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the code to start a new assembly document in SolidWorks.

Solidworks
swApp.[1]()
Drag options to blanks, or click blank then click option'
ANewDocument
BNewAssembly
COpenAssembly
DCreateAssembly
Attempts:
3 left
💡 Hint
Common Mistakes
Using a method that does not exist like NewAssembly
Trying to open instead of create new
2fill in blank
medium

Complete the code to specify the assembly template when creating a new document.

Solidworks
swApp.NewDocument("[1]", 0, 0, 0)
Drag options to blanks, or click blank then click option'
Apart.prtdot
Bassembly.asmdot
Cdrawing.drwdot
Dtemplate.tpl
Attempts:
3 left
💡 Hint
Common Mistakes
Using part or drawing templates instead of assembly
Using a generic or incorrect file extension
3fill in blank
hard

Fix the error in the code to add a component to the assembly document.

Solidworks
assemblyDoc.[1]("C:\\Parts\\part1.sldprt")
Drag options to blanks, or click blank then click option'
AInsertComponent
BAddComponent
CAddComponent5
DAddPart
Attempts:
3 left
💡 Hint
Common Mistakes
Using non-existent methods like AddComponent
Confusing with InsertComponent
4fill in blank
hard

Fill both blanks to correctly position a component in the assembly.

Solidworks
component.[1] = 0.0
component.[2] = 0.0
Drag options to blanks, or click blank then click option'
AX
BY
CZ
DAngle
Attempts:
3 left
💡 Hint
Common Mistakes
Using Angle instead of coordinate axis
Using Z only without X or Y
5fill in blank
hard

Fill all three blanks to correctly save the assembly document.

Solidworks
assemblyDoc.[1]("C:\\Assemblies\\assembly1.sldasm", [2], [3])
Drag options to blanks, or click blank then click option'
ASaveAs
BswSaveAsOptions_Silent
CswSaveAsOptions_Copy
DSave
Attempts:
3 left
💡 Hint
Common Mistakes
Using Save instead of SaveAs
Using wrong save options or none

Practice

(1/5)
1. What is the main purpose of creating an assembly document in SolidWorks?
easy
A. To combine multiple parts and show how they fit together
B. To create a 2D drawing of a single part
C. To write code for automating part creation
D. To export parts as image files

Solution

  1. Step 1: Understand the role of assembly documents

    Assembly documents are used to combine parts to visualize how they fit and work together.
  2. Step 2: Differentiate from other document types

    Unlike part or drawing documents, assemblies focus on multiple parts and their relationships.
  3. Final Answer:

    To combine multiple parts and show how they fit together -> Option A
  4. Quick Check:

    Assembly = Combine parts [OK]
Hint: Assemblies show part relationships, not single parts [OK]
Common Mistakes:
  • Confusing assembly with part document
  • Thinking assembly creates 2D drawings
  • Assuming assembly is for coding or exporting images
2. Which SolidWorks command is used to add parts into an assembly document?
easy
A. Extrude Boss/Base
B. New Part
C. Save As
D. Insert Components

Solution

  1. Step 1: Identify the command to add parts

    The 'Insert Components' command allows you to bring existing parts into an assembly.
  2. Step 2: Exclude unrelated commands

    'New Part' creates a new part file, 'Save As' saves files, and 'Extrude Boss/Base' creates features inside parts.
  3. Final Answer:

    Insert Components -> Option D
  4. Quick Check:

    Add parts = Insert Components [OK]
Hint: Use 'Insert Components' to add parts in assembly [OK]
Common Mistakes:
  • Choosing 'New Part' instead of inserting existing parts
  • Confusing feature commands with assembly commands
  • Using 'Save As' to add parts
3. Consider you inserted two parts in an assembly and applied a 'Coincident Mate' between their faces. What will happen?
medium
A. The assembly will show an error and not save
B. The two faces will align and touch each other
C. The parts will move freely without restriction
D. The parts will merge into a single part

Solution

  1. Step 1: Understand the 'Coincident Mate'

    This mate aligns two faces so they touch and stay together in the assembly.
  2. Step 2: Clarify what does not happen

    The parts do not merge; they remain separate but connected. The assembly does not error or allow free movement for those faces.
  3. Final Answer:

    The two faces will align and touch each other -> Option B
  4. Quick Check:

    Coincident Mate = Faces touch [OK]
Hint: 'Coincident Mate' aligns faces exactly [OK]
Common Mistakes:
  • Thinking parts merge into one
  • Assuming parts remain free to move
  • Believing assembly errors on mate
4. You tried to insert a part into an assembly but received an error saying the part is already in the assembly. What is the likely cause?
medium
A. The part file is missing from the computer
B. The assembly document is corrupted
C. You are trying to insert the same part twice without renaming
D. You did not save the assembly before inserting

Solution

  1. Step 1: Analyze the error message

    The error indicates the part is already present, so inserting it again without changes causes conflict.
  2. Step 2: Exclude other causes

    Corruption or missing files cause different errors. Not saving assembly does not prevent insertion.
  3. Final Answer:

    You are trying to insert the same part twice without renaming -> Option C
  4. Quick Check:

    Duplicate part insertion = Error [OK]
Hint: Avoid inserting identical parts twice without changes [OK]
Common Mistakes:
  • Assuming assembly corruption causes this error
  • Thinking missing files cause this error
  • Believing saving assembly is required before insert
5. You want to create an assembly where a wheel rotates around an axle but does not move sideways. Which mate combination should you use?
hard
A. Use a concentric mate for rotation and a coincident mate to fix sideways movement
B. Use two coincident mates on the wheel and axle faces
C. Use a distance mate to keep the wheel fixed in place
D. Use a parallel mate to allow free rotation and movement

Solution

  1. Step 1: Understand rotation and movement constraints

    A concentric mate aligns the wheel and axle axes allowing rotation. A coincident mate fixes sideways movement by aligning faces.
  2. Step 2: Evaluate other mate options

    Two coincident mates restrict rotation. Distance mate fixes position but may restrict rotation. Parallel mate allows unwanted movement.
  3. Final Answer:

    Use a concentric mate for rotation and a coincident mate to fix sideways movement -> Option A
  4. Quick Check:

    Rotation + fixed sideways = Concentric + Coincident [OK]
Hint: Concentric for rotation, coincident to fix sideways [OK]
Common Mistakes:
  • Using only coincident mates restricting rotation
  • Using distance mate that blocks rotation
  • Choosing parallel mate allowing unwanted movement