// // File: cap_0603 // // Date: 2-SEPT-2012 original version // 20-Apr-2015 clean up and move rc --> cap for the Hub Module // // // Geometry for the Capacitor 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 0.96 1.00 1.60 0.64 // // // As currently made this 0603 Capacitor geometry is exactly // the recommended middle material Kemet IPC-7351 dimensions. // // The Kemet IPC-7351 Courtyard is 3.1 mm along the X axis // by 1.50 mm along the Y axis. // // This cap_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("cap_0603_pad", @replace); $$page(0.0, 0.0, 0.0, @mm, 0.0, 0.0, [0.0,0.0,'PI$cap_0603_pad'] ); $$point_mode(@vertex); $$polygon( "PAD", , [ -0.48, -0.50, 0.48, -0.50, 0.48, 0.50, -0.48, 0.50 ] ); $$polygon( "SOLDER_MASK", , [ -0.53, -0.55, 0.53, -0.55, 0.53, 0.55, -0.53, 0.55 ] ); $$polygon( "PASTE_MASK", , [ -0.48, -0.50, 0.48, -0.50, 0.48, 0.50, -0.48, 0.50 ] ); $$attribute( "TERMINAL_SURFACE_DEFINITION", ""); //---------------------------------------------------------------------------- $$create_component("cap_0603", @replace); $$page(0.0, 0.0, 0.0, @mm, 0.0, 0.0, [0.0,0.0,'CO$cap_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 cap_0603 // $$initial([ -1.50, -0.75 ], , @nosnap ); $$terminal([ -1.50, 0.75 ] ); $$terminal([ 1.50, 0.75 ] ); $$terminal([ 1.50, -0.75 ] ); $$attribute( "COMPONENT_PLACEMENT_OUTLINE", "", @mark, @scale ); $$template_line_style( @Solid ); $$path( "SILKSCREEN", 0.20, , [ -1.40, 0.80, 1.40, 0.80 ]); $$path( "SILKSCREEN", 0.20, , [ -1.40, -0.80, 1.40, -0.80 ]); // 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 cap_0603: // pin #1 is to the left, pin #2 to the right, the axis is horizontal $$attribute( "COMPONENT_PIN_DEFINITION", "1", , @scale , , [ -0.80, 0.00 ]); $$attribute( "COMPONENT_PADSTACK_OVERRIDE", "1, cap_0603_pad"); $$attribute( "COMPONENT_PIN_DEFINITION", "2", , @scale , , [ 0.80, 0.00 ]); $$attribute( "COMPONENT_PADSTACK_OVERRIDE", "2, cap_0603_pad");