// // File: ind_blm // // Date: 11-Aug-2023 original version // // // // Geometry for the Murata BLM15AX300SN1D Ferrite Bead // ------------------------ // // The Reference Designator is on the SilkScreen Layer. // // The long axis of this part is horizontal with pin #1 to the left. // // The design of this geometry comes right from pages 3 and 7 // of the Murata data sheet for the BLM15AX300SN1D Ferrite Bead. // // // This geometry was made for the DK Module design. // $abort_enable = @false; $$lock_windows(@on) ; $$snap_diagonal(@off) ; $$snap_orthogonal(@off) ; //---------------------------------------------------------------------------- // // This pad is is for the Murata BLM15AX300SN1D Ferrite Bead. // // This pad is 0.40 mm in X by 0.50 mm in Y // $$create_pin("ind_blm_pad", @replace); $$page(0.0, 0.0, 0.0, @mm, 0.0, 0.0, [0.0,0.0,'PI$ind_blm_pad'] ); $$point_mode(@vertex); $$polygon( "PAD", , [ -0.20, -0.25, 0.20, -0.25, 0.20, 0.25, -0.20, 0.25 ] ); $$polygon( "SOLDER_MASK", , [ -0.25, -0.30, 0.25, -0.30, 0.25, 0.30, -0.25, 0.30 ] ); $$polygon( "PASTE_MASK", , [ -0.20, -0.25, 0.20, -0.25, 0.20, 0.25, -0.20, 0.25 ] ); $$attribute( "TERMINAL_SURFACE_DEFINITION", ""); //---------------------------------------------------------------------------- $$create_component("ind_blm", @replace); $$page(0.0, 0.0, 0.0, @mm, 0.0, 0.0, [0.0,0.0,'CO$ind_blm'] ); $$point_mode(@vertex); $$attribute( "COMPONENT_LAYOUT_TYPE", "surface"); $$attribute( "COMPONENT_LAYOUT_SURFACE", "both"); $$attribute( "COMPONENT_HEIGHT", "", , @scale , , [ 1.0, 0.0 ]); // // Component Placement Outline for the ind_blm // $$initial([ -0.70, -0.40 ], , @nosnap ); $$terminal([ -0.70, 0.40 ]); $$terminal([ 0.70, 0.40 ]); $$terminal([ 0.70, -0.40 ]); $$attribute( "COMPONENT_PLACEMENT_OUTLINE", "", @mark, @scale ); $$template_line_style( @Solid ); $$path( "SILKSCREEN", 0.20, , [ -0.70, 0.52, 0.70, 0.52 ]); $$path( "SILKSCREEN", 0.20, , [ -0.70, -0.52, 0.70, -0.52 ]); // Reference Designator is on the SILKSCREEN Layer. $$text( "SILKSCREEN", "^$ref", 0.0, 1.5, 1.4, @CC, 0, 0.7, 0.20, "std", "None", 0.0, 0.0 ); // // Define the two pins on the ind_blm: // pin #1 is to the left, pin #2 to the right, the axis is horizontal $$attribute( "COMPONENT_PIN_DEFINITION", "1", , @scale , , [ -0.40, 0.0 ]); $$attribute( "COMPONENT_PADSTACK_OVERRIDE", "1, ind_blm_pad"); $$attribute( "COMPONENT_PIN_DEFINITION", "2", , @scale , , [ 0.40, 0.0 ]); $$attribute( "COMPONENT_PADSTACK_OVERRIDE", "2, ind_blm_pad");