// // File: res_0603 // // Date: 2-SEPT-2012 original version // 22-Apr-2015 clean up and move rc --> res for the Hub Module // // // Geometry for the Resistor versions of the 0603 component. // // // The long axis of this part is horizontal with pin #1 to the left. // // There appear to be many variations of the 0603 foot print // in the documentation from different manufacturers. For // reference I have listed the following AVX, Kement, and IPC // recommended dimensions along with the dimensions that I // have used in this geometry. // // // Pad Pad Pad Center Opening // Version Width X Height Y to Center Between Pads // ------- -------- -------- ---------- ------------ // // TDK Cap 0.60/0.80 0.60/0.80 0.60 / 0.80 0.00 / 0.20 // // AVX Cap 0.80 0.75 1.50 0.70 // // Kemet Cap 1.05 1.08 1.73 0.68 // // Kemet Cap 0.96 1.00 1.60 0.64 // IPC-7351 // // IPC Ref 1.70 0.65 // IPC Range 1.00/1.10 1.00/1.20 1.60 / 1.80 0.50 / 0.80 // // This Geom 1.05 1.10 1.70 0.65 // // // As currently made this 0603 Resistor geometry is exactly // the recommended middle material IPC dimensions. // // The Courtyard is 3.10 mm along the X axis // by 1.80 mm along the Y axis. // // This res_0603 geometry was made for the Hub Module. // // // The Reference Designator is on the SilkScreen Layer. // $abort_enable = @false; $$lock_windows(@on) ; $$snap_diagonal(@off) ; $$snap_orthogonal(@off) ; //---------------------------------------------------------------------------- $$create_pin("res_0603_pad", @replace); $$page(0.0, 0.0, 0.0, @mm, 0.0, 0.0, [0.0,0.0,'PI$res_0603_pad'] ); $$point_mode(@vertex); $$polygon( "PAD", , [ -0.53, -0.55, 0.53, -0.55, 0.53, 0.55, -0.53, 0.55 ] ); $$polygon( "SOLDER_MASK", , [ -0.58, -0.60, 0.58, -0.60, 0.58, 0.60, -0.58, 0.60 ] ); $$polygon( "PASTE_MASK", , [ -0.53, -0.55, 0.53, -0.55, 0.53, 0.55, -0.53, 0.55 ] ); $$attribute( "TERMINAL_SURFACE_DEFINITION", ""); //---------------------------------------------------------------------------- $$create_component("res_0603", @replace); $$page(0.0, 0.0, 0.0, @mm, 0.0, 0.0, [0.0,0.0,'CO$res_0603'] ); $$point_mode(@vertex); $$attribute( "COMPONENT_LAYOUT_TYPE", "surface"); $$attribute( "COMPONENT_LAYOUT_SURFACE", "both"); $$attribute( "COMPONENT_HEIGHT", "", , @scale , , [0.028, 0.0]); // // Component Placement Outline for the res_0603 // $$initial([ -1.55, -0.75 ], , @nosnap ); $$terminal([ -1.55, 0.75 ] ); $$terminal([ 1.55, 0.75 ] ); $$terminal([ 1.55, -0.75 ] ); $$attribute( "COMPONENT_PLACEMENT_OUTLINE", "", @mark, @scale ); $$template_line_style( @Solid ); $$path( "SILKSCREEN", 0.20, , [ -1.40, 0.85, 1.40, 0.85 ]); $$path( "SILKSCREEN", 0.20, , [ -1.40, -0.85, 1.40, -0.85 ]); // Reference Designator is on the SILKSCREEN Layer. $$text( "SILKSCREEN", "^$ref", 0.0, 0.0, 1.4, @CC, 0, 0.7, 0.20, "std", "None", 0.0, 0.0 ); // Define the two pins on the res_0603: // pin #1 is to the left, pin #2 to the right, the axis is horizontal $$attribute( "COMPONENT_PIN_DEFINITION", "1", , @scale , , [ -0.85, 0.00 ]); $$attribute( "COMPONENT_PADSTACK_OVERRIDE", "1, res_0603_pad"); $$attribute( "COMPONENT_PIN_DEFINITION", "2", , @scale , , [ 0.85, 0.00 ]); $$attribute( "COMPONENT_PADSTACK_OVERRIDE", "2, res_0603_pad");