// // File: cap_0201 // // Date: 31-Oct-2013 original version CMX // 2-Apr-2015 clean up just the names for Hub Module // 10-Jun-2015 Move it 100% to the Kemet Normal Layout. // // // Geometry for the standard Capacitor versions of the 0201 component. // // The Reference Designator is on the SilkScreen Layer. // // The long axis of this part is horizontal with pin #1 to the left. // // There appear to be many variations of the 0201 foot print // in the documentation from different manufacturers. For // reference I have listed the AVX and Kement recommended // dimensions along with the dimensions that I have used in this // geometry. // // // Pad Pad Pad Center Opening Court // Version Length X Width Y to Center Between Pads Yard // ------- -------- -------- ---------- ------------ ----------- // // AVX Cap 0.30 0.35 0.55 0.25 // // Kemet Most 0.56 0.52 0.76 0.20 1.80 x 1.00 // // Kemet Norm 0.46 0.42 0.66 0.20 1.50 x 0.80 // // Kemet Least 0.36 0.32 0.56 0.20 1.20 x 0.60 // // // This Geom 0.46 0.42 0.66 0.20 1.50 x 0.80 // // // So as currently made this 0201 geometry is 100% // the Kemet Normal Density recomendation. // // // The IPC 0201 Courtyard must be about 2mm in the long dimension X // by 1mm in the Y dimension. // // // This geometry was made for the Hub Module design. // // $abort_enable = @false; $$lock_windows(@on) ; $$snap_diagonal(@off) ; $$snap_orthogonal(@off) ; //---------------------------------------------------------------------------- $$create_pin("cap_0201_pad", @replace); $$page(0.0, 0.0, 0.0, @mm, 0.0, 0.0, [0.0,0.0,'PI$cap_0201_pad'] ); $$point_mode(@vertex); $$polygon( "PAD", , [ -0.23, -0.21, 0.23, -0.21, 0.23, 0.21, -0.23, 0.21 ] ); $$polygon( "SOLDER_MASK", , [ -0.27, -0.25, 0.27, -0.25, 0.27, 0.25, -0.27, 0.25 ] ); $$polygon( "PASTE_MASK", , [ -0.23, -0.21, 0.23, -0.21, 0.23, 0.21, -0.23, 0.21 ] ); $$attribute( "TERMINAL_SURFACE_DEFINITION", ""); //---------------------------------------------------------------------------- $$create_component("cap_0201", @replace); $$page(0.0, 0.0, 0.0, @mm, 0.0, 0.0, [0.0,0.0,'CO$cap_0201'] ); $$point_mode(@vertex); $$attribute( "COMPONENT_LAYOUT_TYPE", "surface"); $$attribute( "COMPONENT_LAYOUT_SURFACE", "both"); $$attribute( "COMPONENT_HEIGHT", "", , @scale , , [0.028, 0.0]); $$initial([ 0.75, 0.40 ], , @nosnap ); $$terminal([ -0.75, 0.40 ]); $$terminal([ -0.75, -0.40 ]); $$terminal([ 0.75, -0.40 ]); $$terminal([ 0.75, 0.40 ]); $$attribute( "COMPONENT_PLACEMENT_OUTLINE", "", @mark, @scale ); $$template_line_style( @Solid ); $$path( "SILKSCREEN", 0.20, , [ -0.70, 0.50, 0.70, 0.50 ]); $$path( "SILKSCREEN", 0.20, , [ -0.70, -0.50, 0.70, -0.50 ]); // 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_0201: // pin #1 is to the left, pin #2 to the right, the axis is horizontal $$attribute( "COMPONENT_PIN_DEFINITION", "1", , @scale , , [ -0.33, 0.0 ]); $$attribute( "COMPONENT_PADSTACK_OVERRIDE", "1, cap_0201_pad"); $$attribute( "COMPONENT_PIN_DEFINITION", "2", , @scale , , [ 0.33, 0.0 ]); $$attribute( "COMPONENT_PADSTACK_OVERRIDE", "2, cap_0201_pad");