// // File: diff_pair_thru_1mm // // Date: 25-Jun-2015 original version - made for Hub Module // // 10-Jun-2016 Remove the Silkscreen Reference Designator. // // 14-Jun-2016 Add the "Component_not_in_bom" attribute to // Remove all instances of this component from the BOM. // // 27-Aug-2016 Remove the Silkscreen component outline. // // // // Geometry for a high-speed through board differential via pair // with return vias on either side. // // // // In this version of the 4 via DPV component: // // --> The Return Current Vias are spaced 1 mm from Signal Vias // // // // This is not a component that the assembly house installs on the // card so its Reference Designator is Not shown in SilkScreen. // // This component has the Not in BOM attribute. // // This Diff_Pair_Thru_1mm board geometry includes a cutout of // the Gerber negative data Ground Plane. This cutout is provided // by a "path" on layer PREPREG_3. // // The long axis of this part is horizontal with pin #1 to the left. // // Pins #1 and #4 need to be tied to Gnd in the net list. // // Pins #2 and #3 are the differential pair. // // // The pin-pad-stacks used in this geometry are defined in // the file for the Diff_Pair_Through geometry. // // $abort_enable = @false; $$lock_windows(@on) ; $$snap_diagonal(@off) ; $$snap_orthogonal(@off) ; // // Now the actual DIFF PAIR THRU 1MM Geometry // $$create_component("DIFF_PAIR_THRU_1MM"); $$page(0.0, 0.0, 0.0, @mm, 0.0, 0.0, [0.0,0.0,'CO$DIFF_PAIR_THRU_1MM'] ); $$point_mode(@vertex); $$attribute( "COMPONENT_HEIGHT", "", , @scale , , [ 1.0, 0.0 ]); $$attribute( "COMPONENT_OUTLINE_OVERHANG", "yes"); $$attribute( "COMPONENT_LAYOUT_SURFACE", "both"); $$attribute( "COMPONENT_NOT_IN_BOM" ); // // Component Outline of the square body part of the connector // $$initial([ 1.80, 0.30 ], , @nosnap ); $$terminal([ -1.80, 0.30 ]); $$terminal([ -1.80, -0.30 ]); $$terminal([ 1.80, -0.30 ]); $$terminal([ 1.80, 0.30 ]); $$attribute( "COMPONENT_PLACEMENT_OUTLINE", "", @mark, @scale ); // // Silkscreen Outline of the square body part of the connector // $$template_line_style( @Solid ); // //$$initial([ 1.80, 0.40 ], , @nosnap ); // //$$terminal([ -1.80, 0.40 ]); // //$$terminal([ -1.80, -0.40 ]); // //$$terminal([ 1.80, -0.40 ]); // //$$terminal([ 1.80, 0.40 ]); // //$$path( "SILKSCREEN", 0.10 ); // Silkscreen End of // // Reference Designator - Is NOT shown in SilkScreen // // //$$text( "SILKSCREEN", "^$ref", 0.0, 0.0, 0.3, @CC, 0, 1.00, 0.10, "std", "None", 0.0, 0.0 ); // This Diff_Pair_Thru_1mm board geometry includes a cutout of // the Gerber negative data Ground Plane. This cutout is provided // by a "path" on layer PREPREG_3. $$path( "PREPREG_3", 1.00, , [ -0.50, 0.00, 0.50, 0.00 ]); // // Ground and Signal Pins in the Diff_Pair-Through // ------------------------------------------------- // // // Pin #1 Pin #2 Pin #3 Pin #4 // Ground Signal Signal Ground // $$attribute( "COMPONENT_PIN_DEFINITION", "1", , @scale , , [ -1.50, 0.00 ]); $$attribute( "COMPONENT_PADSTACK_OVERRIDE", "1, DIFF_PAIR_THRU_GND_PAD"); $$attribute( "COMPONENT_PIN_DEFINITION", "2", , @scale , , [ -0.50, 0.00 ]); $$attribute( "COMPONENT_PADSTACK_OVERRIDE", "2, DIFF_PAIR_THRU_SIG_PAD"); $$attribute( "COMPONENT_PIN_DEFINITION", "3", , @scale , , [ 0.50, 0.00 ]); $$attribute( "COMPONENT_PADSTACK_OVERRIDE", "3, DIFF_PAIR_THRU_SIG_PAD"); $$attribute( "COMPONENT_PIN_DEFINITION", "4", , @scale , , [ 1.50, 0.00 ]); $$attribute( "COMPONENT_PADSTACK_OVERRIDE", "4, DIFF_PAIR_THRU_GND_PAD");