// // file: single_smd_0603_pad_geom.txt // // date: 20-June-2024 Original Version for DK // // // Geometry for a Single 0603 SMD Pad Component // ----------------------- // // This geometry is a Single 0603 size SMD Pad component. // // It can be used where you want a Test Point or // where you want access to some signal. // // The SMD Pad is 1.00 mm by 1.00 mm square. // // I made this pad a square to help avoid it being // confused with a fiducial mark. // // There is no Silkscreen or Paste Mask opening // associated with this component. // $abort_enable = @false; $$lock_windows(@on) ; $$snap_diagonal(@off) ; $$snap_orthogonal(@off) ; //---------------------------------------------------------------------------- // // Start the Pin/Pad Geometry for this Component // $$create_pin("single_smd_0603_pad", @replace); $$page(0.0, 0.0, 0.0, @mm, 0.0, 0.0, [0.0,0.0,'PI$single_smd_0603_pad'] ); $$point_mode(@vertex); $$polygon( "PAD", , [ -0.50, -0.50, 0.50, -0.50, 0.50, 0.50, -0.50, 0.50 ]); $$polygon( "SOLDER_MASK", , [ -0.55, -0.55, 0.55, -0.55, 0.55, 0.55, -0.55, 0.55 ]); $$attribute( "TERMINAL_SURFACE_DEFINITION", ""); //---------------------------------------------------------------------------- // // Start the actual Component Geometry // $$create_component("single_0603_pad", @replace); $$page(0.0, 0.0, 0.0, @mm, 0.0, 0.0, [0.0,0.0,'CO$single_0603_pad' ] ); $$point_mode(@vertex); $$attribute( "COMPONENT_LAYOUT_TYPE", "surface"); $$attribute( "COMPONENT_LAYOUT_SURFACE", "both"); $$attribute( "COMPONENT_HEIGHT", "", , @scale , , [0.02, 0.0]); // // This component is Not in BOM. // $$attribute( "COMPONENT_NOT_IN_BOM" ); // // Component Placement Outline // $$initial([ -0.60, -0.60 ], , @nosnap ); $$terminal([ -0.60, 0.60 ] ); $$terminal([ 0.60, 0.60 ] ); $$terminal([ 0.60, -0.60 ] ); $$attribute( "COMPONENT_PLACEMENT_OUTLINE", "", @mark, @scale ); // // Silkscreen - None // // // Reference Designator - None // // // Define the pin for the Single SMD Pad Component // $$attribute( "COMPONENT_PIN_DEFINITION", "1", , @scale , , [ 0.0, 0.0 ]); $$attribute( "COMPONENT_PADSTACK_OVERRIDE", "1, single_smd_0603_pad" );