123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343 |
- (kicad_pcb (version 20171130) (host pcbnew "(5.0.0)")
- (general
- (thickness 1.6)
- (drawings 60)
- (tracks 95)
- (zones 0)
- (modules 38)
- (nets 26)
- )
- (page A4)
- (title_block
- (title "Power Module (Power Board)")
- (date 2018-07-31)
- (rev "Release 0.3")
- (company "Enertechnos Ltd.")
- (comment 1 "Added Mosfet protection")
- )
- (layers
- (0 F.Cu mixed)
- (31 B.Cu power)
- (32 B.Adhes user hide)
- (33 F.Adhes user hide)
- (34 B.Paste user hide)
- (35 F.Paste user hide)
- (36 B.SilkS user)
- (37 F.SilkS user)
- (38 B.Mask user)
- (39 F.Mask user)
- (40 Dwgs.User user hide)
- (41 Cmts.User user hide)
- (42 Eco1.User user hide)
- (43 Eco2.User user hide)
- (44 Edge.Cuts user)
- (45 Margin user hide)
- (46 B.CrtYd user hide)
- (47 F.CrtYd user hide)
- (48 B.Fab user hide)
- (49 F.Fab user hide)
- )
- (setup
- (last_trace_width 2)
- (trace_clearance 0.4)
- (zone_clearance 0.508)
- (zone_45_only no)
- (trace_min 0.2)
- (segment_width 0.2)
- (edge_width 0.1)
- (via_size 1.5)
- (via_drill 1)
- (via_min_size 0.4)
- (via_min_drill 0.3)
- (uvia_size 1)
- (uvia_drill 0.5)
- (uvias_allowed no)
- (uvia_min_size 0.2)
- (uvia_min_drill 0.1)
- (pcb_text_width 0.3)
- (pcb_text_size 1.5 1.5)
- (mod_edge_width 0.15)
- (mod_text_size 1 1)
- (mod_text_width 0.15)
- (pad_size 3.2 3.2)
- (pad_drill 3.2)
- (pad_to_mask_clearance 0)
- (aux_axis_origin 27.94 160.655)
- (visible_elements 7FFFEF1F)
- (pcbplotparams
- (layerselection 0x010f0_80000001)
- (usegerberextensions false)
- (usegerberattributes false)
- (usegerberadvancedattributes false)
- (creategerberjobfile false)
- (excludeedgelayer true)
- (linewidth 0.100000)
- (plotframeref false)
- (viasonmask false)
- (mode 1)
- (useauxorigin true)
- (hpglpennumber 1)
- (hpglpenspeed 20)
- (hpglpendiameter 15.000000)
- (psnegative false)
- (psa4output false)
- (plotreference true)
- (plotvalue true)
- (plotinvisibletext false)
- (padsonsilk false)
- (subtractmaskfromsilk false)
- (outputformat 1)
- (mirror false)
- (drillshape 0)
- (scaleselection 1)
- (outputdirectory "Plot/"))
- )
- (net 0 "")
- (net 1 GND_ISO_1)
- (net 2 "Net-(C1-Pad2)")
- (net 3 GND_ISO_2)
- (net 4 "Net-(C2-Pad2)")
- (net 5 GND_ISO_3)
- (net 6 "Net-(C3-Pad2)")
- (net 7 GND_ISO_4)
- (net 8 "Net-(C4-Pad2)")
- (net 9 "/SinglePowerSwitch 1/PWR_OUT")
- (net 10 DRV_GATE_1)
- (net 11 DRV_GATE_2)
- (net 12 DRV_GATE_3)
- (net 13 DRV_GATE_4)
- (net 14 "Net-(D1-Pad3)")
- (net 15 "Net-(D2-Pad3)")
- (net 16 "Net-(D3-Pad3)")
- (net 17 "Net-(D4-Pad3)")
- (net 18 "Net-(D201-Pad2)")
- (net 19 "Net-(D301-Pad2)")
- (net 20 "Net-(D401-Pad2)")
- (net 21 "Net-(D501-Pad2)")
- (net 22 "Net-(Q1-Pad1)")
- (net 23 "Net-(Q2-Pad1)")
- (net 24 "Net-(Q3-Pad1)")
- (net 25 "Net-(Q4-Pad1)")
- (net_class Default "This is the default net class."
- (clearance 0.4)
- (trace_width 2)
- (via_dia 1.5)
- (via_drill 1)
- (uvia_dia 1)
- (uvia_drill 0.5)
- (add_net "/SinglePowerSwitch 1/PWR_OUT")
- (add_net DRV_GATE_1)
- (add_net DRV_GATE_2)
- (add_net DRV_GATE_3)
- (add_net DRV_GATE_4)
- (add_net GND_ISO_1)
- (add_net GND_ISO_2)
- (add_net GND_ISO_3)
- (add_net GND_ISO_4)
- (add_net "Net-(C1-Pad2)")
- (add_net "Net-(C2-Pad2)")
- (add_net "Net-(C3-Pad2)")
- (add_net "Net-(C4-Pad2)")
- (add_net "Net-(D1-Pad3)")
- (add_net "Net-(D2-Pad3)")
- (add_net "Net-(D201-Pad2)")
- (add_net "Net-(D3-Pad3)")
- (add_net "Net-(D301-Pad2)")
- (add_net "Net-(D4-Pad3)")
- (add_net "Net-(D401-Pad2)")
- (add_net "Net-(D501-Pad2)")
- (add_net "Net-(Q1-Pad1)")
- (add_net "Net-(Q2-Pad1)")
- (add_net "Net-(Q3-Pad1)")
- (add_net "Net-(Q4-Pad1)")
- )
- (module PartsLibraries:MountingHole_M3 (layer F.Cu) (tedit 5B61E668) (tstamp 5AC5FD03)
- (at 68.58 59.69)
- (descr "module 1 pin (ou trou mecanique de percage)")
- (tags DEV)
- (fp_text reference Ref** (at 0 -3.048) (layer F.SilkS) hide
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value Mount (at 0 3) (layer F.Fab) hide
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (pad 1 thru_hole circle (at 0 0) (size 3.2 3.2) (drill 3.2) (layers *.Cu *.Mask)
- (clearance 2) (zone_connect 2))
- )
- (module PartsLibraries:MountingHole_M3 (layer F.Cu) (tedit 5B61E651) (tstamp 5AC5FD16)
- (at 182.88 127)
- (descr "module 1 pin (ou trou mecanique de percage)")
- (tags DEV)
- (fp_text reference Ref** (at 0 -3.048) (layer F.SilkS) hide
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value Mount (at 0 3) (layer F.Fab) hide
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (pad 1 thru_hole circle (at 0 0) (size 3.2 3.2) (drill 3.2) (layers *.Cu *.Mask)
- (clearance 2) (zone_connect 2))
- )
- (module PartsLibraries:MountingHole_M3 (layer F.Cu) (tedit 5B61E660) (tstamp 5AC5FD10)
- (at 67.31 128.27)
- (descr "module 1 pin (ou trou mecanique de percage)")
- (tags DEV)
- (fp_text reference Ref** (at 0 -3.048) (layer F.SilkS) hide
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value Mount (at 0 3) (layer F.Fab) hide
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (pad 1 thru_hole circle (at 0 0) (size 3.2 3.2) (drill 3.2) (layers *.Cu *.Mask)
- (clearance 2) (zone_connect 2))
- )
- (module PartsLibraries:MountingHole_M3 (layer F.Cu) (tedit 5B61E670) (tstamp 5AC5FD0C)
- (at 182.88 58.42)
- (descr "module 1 pin (ou trou mecanique de percage)")
- (tags DEV)
- (fp_text reference Ref** (at 0 -3.048) (layer F.SilkS) hide
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value Mount (at 0 3) (layer F.Fab) hide
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (pad 1 thru_hole circle (at 0 0) (size 3.2 3.2) (drill 3.2) (layers *.Cu *.Mask)
- (clearance 2) (zone_connect 2))
- )
- (module TO_SOT_Packages_THT:TO-247_TO-3P_Vertical (layer B.Cu) (tedit 58CE52AE) (tstamp 59AF08C9)
- (at 101.23 38.1)
- (descr "TO-247, Vertical, RM 5.45mm, TO-3P")
- (tags "TO-247 Vertical RM 5.45mm TO-3P")
- (path /59AEDD49/59AEE007)
- (fp_text reference D1 (at 5.45 3.45) (layer B.SilkS)
- (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
- )
- (fp_text value PWR_DIODE (at 5.45 -6.07) (layer B.Fab)
- (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
- )
- (fp_text user %R (at 5.45 3.45) (layer B.Fab)
- (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
- )
- (fp_line (start -2.5 2.33) (end -2.5 -2.7) (layer B.Fab) (width 0.1))
- (fp_line (start -2.5 -2.7) (end 13.4 -2.7) (layer B.Fab) (width 0.1))
- (fp_line (start 13.4 -2.7) (end 13.4 2.33) (layer B.Fab) (width 0.1))
- (fp_line (start 13.4 2.33) (end -2.5 2.33) (layer B.Fab) (width 0.1))
- (fp_line (start 3.645 2.33) (end 3.645 -2.7) (layer B.Fab) (width 0.1))
- (fp_line (start 7.255 2.33) (end 7.255 -2.7) (layer B.Fab) (width 0.1))
- (fp_line (start -2.62 2.451) (end 13.52 2.451) (layer B.SilkS) (width 0.12))
- (fp_line (start -2.62 -2.82) (end 13.52 -2.82) (layer B.SilkS) (width 0.12))
- (fp_line (start -2.62 2.451) (end -2.62 -2.82) (layer B.SilkS) (width 0.12))
- (fp_line (start 13.52 2.451) (end 13.52 -2.82) (layer B.SilkS) (width 0.12))
- (fp_line (start 3.646 2.451) (end 3.646 -2.82) (layer B.SilkS) (width 0.12))
- (fp_line (start 7.255 2.451) (end 7.255 -2.82) (layer B.SilkS) (width 0.12))
- (fp_line (start -2.75 2.59) (end -2.75 -2.95) (layer B.CrtYd) (width 0.05))
- (fp_line (start -2.75 -2.95) (end 13.65 -2.95) (layer B.CrtYd) (width 0.05))
- (fp_line (start 13.65 -2.95) (end 13.65 2.59) (layer B.CrtYd) (width 0.05))
- (fp_line (start 13.65 2.59) (end -2.75 2.59) (layer B.CrtYd) (width 0.05))
- (pad 1 thru_hole rect (at 0 0) (size 2.5 4.5) (drill 1.5) (layers *.Cu *.Mask)
- (net 1 GND_ISO_1))
- (pad 2 thru_hole oval (at 5.45 0) (size 2.5 4.5) (drill 1.5) (layers *.Cu *.Mask)
- (net 9 "/SinglePowerSwitch 1/PWR_OUT"))
- (pad 3 thru_hole oval (at 10.9 0) (size 2.5 4.5) (drill 1.5) (layers *.Cu *.Mask)
- (net 14 "Net-(D1-Pad3)"))
- (model ${KISYS3DMOD}/TO_SOT_Packages_THT.3dshapes/TO-247_TO-3P_Vertical.wrl
- (offset (xyz 5.399989118900299 0 0))
- (scale (xyz 1 1 1))
- (rotate (xyz 0 0 0))
- )
- )
- (module TO_SOT_Packages_THT:TO-247_TO-3P_Vertical (layer B.Cu) (tedit 58CE52AE) (tstamp 59AF08E1)
- (at 81.65 143.51 180)
- (descr "TO-247, Vertical, RM 5.45mm, TO-3P")
- (tags "TO-247 Vertical RM 5.45mm TO-3P")
- (path /59AEEDCB/59AEE007)
- (fp_text reference D2 (at 5.45 3.45 180) (layer B.SilkS)
- (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
- )
- (fp_text value PWR_DIODE (at 5.45 -6.07 180) (layer B.Fab)
- (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
- )
- (fp_text user %R (at 5.45 3.45 180) (layer B.Fab)
- (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
- )
- (fp_line (start -2.5 2.33) (end -2.5 -2.7) (layer B.Fab) (width 0.1))
- (fp_line (start -2.5 -2.7) (end 13.4 -2.7) (layer B.Fab) (width 0.1))
- (fp_line (start 13.4 -2.7) (end 13.4 2.33) (layer B.Fab) (width 0.1))
- (fp_line (start 13.4 2.33) (end -2.5 2.33) (layer B.Fab) (width 0.1))
- (fp_line (start 3.645 2.33) (end 3.645 -2.7) (layer B.Fab) (width 0.1))
- (fp_line (start 7.255 2.33) (end 7.255 -2.7) (layer B.Fab) (width 0.1))
- (fp_line (start -2.62 2.451) (end 13.52 2.451) (layer B.SilkS) (width 0.12))
- (fp_line (start -2.62 -2.82) (end 13.52 -2.82) (layer B.SilkS) (width 0.12))
- (fp_line (start -2.62 2.451) (end -2.62 -2.82) (layer B.SilkS) (width 0.12))
- (fp_line (start 13.52 2.451) (end 13.52 -2.82) (layer B.SilkS) (width 0.12))
- (fp_line (start 3.646 2.451) (end 3.646 -2.82) (layer B.SilkS) (width 0.12))
- (fp_line (start 7.255 2.451) (end 7.255 -2.82) (layer B.SilkS) (width 0.12))
- (fp_line (start -2.75 2.59) (end -2.75 -2.95) (layer B.CrtYd) (width 0.05))
- (fp_line (start -2.75 -2.95) (end 13.65 -2.95) (layer B.CrtYd) (width 0.05))
- (fp_line (start 13.65 -2.95) (end 13.65 2.59) (layer B.CrtYd) (width 0.05))
- (fp_line (start 13.65 2.59) (end -2.75 2.59) (layer B.CrtYd) (width 0.05))
- (pad 1 thru_hole rect (at 0 0 180) (size 2.5 4.5) (drill 1.5) (layers *.Cu *.Mask)
- (net 3 GND_ISO_2))
- (pad 2 thru_hole oval (at 5.45 0 180) (size 2.5 4.5) (drill 1.5) (layers *.Cu *.Mask)
- (net 9 "/SinglePowerSwitch 1/PWR_OUT"))
- (pad 3 thru_hole oval (at 10.9 0 180) (size 2.5 4.5) (drill 1.5) (layers *.Cu *.Mask)
- (net 15 "Net-(D2-Pad3)"))
- (model ${KISYS3DMOD}/TO_SOT_Packages_THT.3dshapes/TO-247_TO-3P_Vertical.wrl
- (offset (xyz 5.399989118900299 0 0))
- (scale (xyz 1 1 1))
- (rotate (xyz 0 0 0))
- )
- )
- (module TO_SOT_Packages_THT:TO-247_TO-3P_Vertical (layer B.Cu) (tedit 58CE52AE) (tstamp 59AF08F9)
- (at 167.27 38.1)
- (descr "TO-247, Vertical, RM 5.45mm, TO-3P")
- (tags "TO-247 Vertical RM 5.45mm TO-3P")
- (path /59AEEFC6/59AEE007)
- (fp_text reference D3 (at 5.45 3.45) (layer B.SilkS)
- (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
- )
- (fp_text value PWR_DIODE (at 5.45 -6.07) (layer B.Fab)
- (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
- )
- (fp_text user %R (at 5.45 3.45) (layer B.Fab)
- (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
- )
- (fp_line (start -2.5 2.33) (end -2.5 -2.7) (layer B.Fab) (width 0.1))
- (fp_line (start -2.5 -2.7) (end 13.4 -2.7) (layer B.Fab) (width 0.1))
- (fp_line (start 13.4 -2.7) (end 13.4 2.33) (layer B.Fab) (width 0.1))
- (fp_line (start 13.4 2.33) (end -2.5 2.33) (layer B.Fab) (width 0.1))
- (fp_line (start 3.645 2.33) (end 3.645 -2.7) (layer B.Fab) (width 0.1))
- (fp_line (start 7.255 2.33) (end 7.255 -2.7) (layer B.Fab) (width 0.1))
- (fp_line (start -2.62 2.451) (end 13.52 2.451) (layer B.SilkS) (width 0.12))
- (fp_line (start -2.62 -2.82) (end 13.52 -2.82) (layer B.SilkS) (width 0.12))
- (fp_line (start -2.62 2.451) (end -2.62 -2.82) (layer B.SilkS) (width 0.12))
- (fp_line (start 13.52 2.451) (end 13.52 -2.82) (layer B.SilkS) (width 0.12))
- (fp_line (start 3.646 2.451) (end 3.646 -2.82) (layer B.SilkS) (width 0.12))
- (fp_line (start 7.255 2.451) (end 7.255 -2.82) (layer B.SilkS) (width 0.12))
- (fp_line (start -2.75 2.59) (end -2.75 -2.95) (layer B.CrtYd) (width 0.05))
- (fp_line (start -2.75 -2.95) (end 13.65 -2.95) (layer B.CrtYd) (width 0.05))
- (fp_line (start 13.65 -2.95) (end 13.65 2.59) (layer B.CrtYd) (width 0.05))
- (fp_line (start 13.65 2.59) (end -2.75 2.59) (layer B.CrtYd) (width 0.05))
- (pad 1 thru_hole rect (at 0 0) (size 2.5 4.5) (drill 1.5) (layers *.Cu *.Mask)
- (net 5 GND_ISO_3))
- (pad 2 thru_hole oval (at 5.45 0) (size 2.5 4.5) (drill 1.5) (layers *.Cu *.Mask)
- (net 9 "/SinglePowerSwitch 1/PWR_OUT"))
- (pad 3 thru_hole oval (at 10.9 0) (size 2.5 4.5) (drill 1.5) (layers *.Cu *.Mask)
- (net 16 "Net-(D3-Pad3)"))
- (model ${KISYS3DMOD}/TO_SOT_Packages_THT.3dshapes/TO-247_TO-3P_Vertical.wrl
- (offset (xyz 5.399989118900299 0 0))
- (scale (xyz 1 1 1))
- (rotate (xyz 0 0 0))
- )
- )
- (module TO_SOT_Packages_THT:TO-247_TO-3P_Vertical (layer B.Cu) (tedit 58CE52AE) (tstamp 59AF0911)
- (at 147.69 143.51 180)
- (descr "TO-247, Vertical, RM 5.45mm, TO-3P")
- (tags "TO-247 Vertical RM 5.45mm TO-3P")
- (path /59AEEFCD/59AEE007)
- (fp_text reference D4 (at 5.45 3.45 180) (layer B.SilkS)
- (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
- )
- (fp_text value PWR_DIODE (at 5.45 -6.07 180) (layer B.Fab)
- (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
- )
- (fp_text user %R (at 5.45 3.45 180) (layer B.Fab)
- (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
- )
- (fp_line (start -2.5 2.33) (end -2.5 -2.7) (layer B.Fab) (width 0.1))
- (fp_line (start -2.5 -2.7) (end 13.4 -2.7) (layer B.Fab) (width 0.1))
- (fp_line (start 13.4 -2.7) (end 13.4 2.33) (layer B.Fab) (width 0.1))
- (fp_line (start 13.4 2.33) (end -2.5 2.33) (layer B.Fab) (width 0.1))
- (fp_line (start 3.645 2.33) (end 3.645 -2.7) (layer B.Fab) (width 0.1))
- (fp_line (start 7.255 2.33) (end 7.255 -2.7) (layer B.Fab) (width 0.1))
- (fp_line (start -2.62 2.451) (end 13.52 2.451) (layer B.SilkS) (width 0.12))
- (fp_line (start -2.62 -2.82) (end 13.52 -2.82) (layer B.SilkS) (width 0.12))
- (fp_line (start -2.62 2.451) (end -2.62 -2.82) (layer B.SilkS) (width 0.12))
- (fp_line (start 13.52 2.451) (end 13.52 -2.82) (layer B.SilkS) (width 0.12))
- (fp_line (start 3.646 2.451) (end 3.646 -2.82) (layer B.SilkS) (width 0.12))
- (fp_line (start 7.255 2.451) (end 7.255 -2.82) (layer B.SilkS) (width 0.12))
- (fp_line (start -2.75 2.59) (end -2.75 -2.95) (layer B.CrtYd) (width 0.05))
- (fp_line (start -2.75 -2.95) (end 13.65 -2.95) (layer B.CrtYd) (width 0.05))
- (fp_line (start 13.65 -2.95) (end 13.65 2.59) (layer B.CrtYd) (width 0.05))
- (fp_line (start 13.65 2.59) (end -2.75 2.59) (layer B.CrtYd) (width 0.05))
- (pad 1 thru_hole rect (at 0 0 180) (size 2.5 4.5) (drill 1.5) (layers *.Cu *.Mask)
- (net 7 GND_ISO_4))
- (pad 2 thru_hole oval (at 5.45 0 180) (size 2.5 4.5) (drill 1.5) (layers *.Cu *.Mask)
- (net 9 "/SinglePowerSwitch 1/PWR_OUT"))
- (pad 3 thru_hole oval (at 10.9 0 180) (size 2.5 4.5) (drill 1.5) (layers *.Cu *.Mask)
- (net 17 "Net-(D4-Pad3)"))
- (model ${KISYS3DMOD}/TO_SOT_Packages_THT.3dshapes/TO-247_TO-3P_Vertical.wrl
- (offset (xyz 5.399989118900299 0 0))
- (scale (xyz 1 1 1))
- (rotate (xyz 0 0 0))
- )
- )
- (module TO_SOT_Packages_THT:TO-247_TO-3P_Vertical (layer B.Cu) (tedit 58CE52AE) (tstamp 59AF096E)
- (at 70.75 38.1)
- (descr "TO-247, Vertical, RM 5.45mm, TO-3P")
- (tags "TO-247 Vertical RM 5.45mm TO-3P")
- (path /59AEDD49/59AEE014)
- (fp_text reference Q1 (at 5.45 3.45) (layer B.SilkS)
- (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
- )
- (fp_text value RFP12N10L (at 5.45 -6.07) (layer B.Fab)
- (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
- )
- (fp_text user %R (at 5.45 3.45) (layer B.Fab)
- (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
- )
- (fp_line (start -2.5 2.33) (end -2.5 -2.7) (layer B.Fab) (width 0.1))
- (fp_line (start -2.5 -2.7) (end 13.4 -2.7) (layer B.Fab) (width 0.1))
- (fp_line (start 13.4 -2.7) (end 13.4 2.33) (layer B.Fab) (width 0.1))
- (fp_line (start 13.4 2.33) (end -2.5 2.33) (layer B.Fab) (width 0.1))
- (fp_line (start 3.645 2.33) (end 3.645 -2.7) (layer B.Fab) (width 0.1))
- (fp_line (start 7.255 2.33) (end 7.255 -2.7) (layer B.Fab) (width 0.1))
- (fp_line (start -2.62 2.451) (end 13.52 2.451) (layer B.SilkS) (width 0.12))
- (fp_line (start -2.62 -2.82) (end 13.52 -2.82) (layer B.SilkS) (width 0.12))
- (fp_line (start -2.62 2.451) (end -2.62 -2.82) (layer B.SilkS) (width 0.12))
- (fp_line (start 13.52 2.451) (end 13.52 -2.82) (layer B.SilkS) (width 0.12))
- (fp_line (start 3.646 2.451) (end 3.646 -2.82) (layer B.SilkS) (width 0.12))
- (fp_line (start 7.255 2.451) (end 7.255 -2.82) (layer B.SilkS) (width 0.12))
- (fp_line (start -2.75 2.59) (end -2.75 -2.95) (layer B.CrtYd) (width 0.05))
- (fp_line (start -2.75 -2.95) (end 13.65 -2.95) (layer B.CrtYd) (width 0.05))
- (fp_line (start 13.65 -2.95) (end 13.65 2.59) (layer B.CrtYd) (width 0.05))
- (fp_line (start 13.65 2.59) (end -2.75 2.59) (layer B.CrtYd) (width 0.05))
- (pad 1 thru_hole rect (at 0 0) (size 2.5 4.5) (drill 1.5) (layers *.Cu *.Mask)
- (net 22 "Net-(Q1-Pad1)"))
- (pad 2 thru_hole oval (at 5.45 0) (size 2.5 4.5) (drill 1.5) (layers *.Cu *.Mask)
- (net 2 "Net-(C1-Pad2)"))
- (pad 3 thru_hole oval (at 10.9 0) (size 2.5 4.5) (drill 1.5) (layers *.Cu *.Mask)
- (net 1 GND_ISO_1))
- (model ${KISYS3DMOD}/TO_SOT_Packages_THT.3dshapes/TO-247_TO-3P_Vertical.wrl
- (offset (xyz 5.399989118900299 0 0))
- (scale (xyz 1 1 1))
- (rotate (xyz 0 0 0))
- )
- )
- (module TO_SOT_Packages_THT:TO-247_TO-3P_Vertical (layer B.Cu) (tedit 58CE52AE) (tstamp 59AF0986)
- (at 112.13 143.51 180)
- (descr "TO-247, Vertical, RM 5.45mm, TO-3P")
- (tags "TO-247 Vertical RM 5.45mm TO-3P")
- (path /59AEEDCB/59AEE014)
- (fp_text reference Q2 (at 5.45 3.45 180) (layer B.SilkS)
- (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
- )
- (fp_text value RFP12N10L (at 5.45 -6.07 180) (layer B.Fab)
- (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
- )
- (fp_text user %R (at 5.45 3.45 180) (layer B.Fab)
- (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
- )
- (fp_line (start -2.5 2.33) (end -2.5 -2.7) (layer B.Fab) (width 0.1))
- (fp_line (start -2.5 -2.7) (end 13.4 -2.7) (layer B.Fab) (width 0.1))
- (fp_line (start 13.4 -2.7) (end 13.4 2.33) (layer B.Fab) (width 0.1))
- (fp_line (start 13.4 2.33) (end -2.5 2.33) (layer B.Fab) (width 0.1))
- (fp_line (start 3.645 2.33) (end 3.645 -2.7) (layer B.Fab) (width 0.1))
- (fp_line (start 7.255 2.33) (end 7.255 -2.7) (layer B.Fab) (width 0.1))
- (fp_line (start -2.62 2.451) (end 13.52 2.451) (layer B.SilkS) (width 0.12))
- (fp_line (start -2.62 -2.82) (end 13.52 -2.82) (layer B.SilkS) (width 0.12))
- (fp_line (start -2.62 2.451) (end -2.62 -2.82) (layer B.SilkS) (width 0.12))
- (fp_line (start 13.52 2.451) (end 13.52 -2.82) (layer B.SilkS) (width 0.12))
- (fp_line (start 3.646 2.451) (end 3.646 -2.82) (layer B.SilkS) (width 0.12))
- (fp_line (start 7.255 2.451) (end 7.255 -2.82) (layer B.SilkS) (width 0.12))
- (fp_line (start -2.75 2.59) (end -2.75 -2.95) (layer B.CrtYd) (width 0.05))
- (fp_line (start -2.75 -2.95) (end 13.65 -2.95) (layer B.CrtYd) (width 0.05))
- (fp_line (start 13.65 -2.95) (end 13.65 2.59) (layer B.CrtYd) (width 0.05))
- (fp_line (start 13.65 2.59) (end -2.75 2.59) (layer B.CrtYd) (width 0.05))
- (pad 1 thru_hole rect (at 0 0 180) (size 2.5 4.5) (drill 1.5) (layers *.Cu *.Mask)
- (net 23 "Net-(Q2-Pad1)"))
- (pad 2 thru_hole oval (at 5.45 0 180) (size 2.5 4.5) (drill 1.5) (layers *.Cu *.Mask)
- (net 4 "Net-(C2-Pad2)"))
- (pad 3 thru_hole oval (at 10.9 0 180) (size 2.5 4.5) (drill 1.5) (layers *.Cu *.Mask)
- (net 3 GND_ISO_2))
- (model ${KISYS3DMOD}/TO_SOT_Packages_THT.3dshapes/TO-247_TO-3P_Vertical.wrl
- (offset (xyz 5.399989118900299 0 0))
- (scale (xyz 1 1 1))
- (rotate (xyz 0 0 0))
- )
- )
- (module TO_SOT_Packages_THT:TO-247_TO-3P_Vertical (layer B.Cu) (tedit 58CE52AE) (tstamp 59AF099E)
- (at 136.79 38.1)
- (descr "TO-247, Vertical, RM 5.45mm, TO-3P")
- (tags "TO-247 Vertical RM 5.45mm TO-3P")
- (path /59AEEFC6/59AEE014)
- (fp_text reference Q3 (at 5.45 3.45) (layer B.SilkS)
- (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
- )
- (fp_text value RFP12N10L (at 5.45 -6.07) (layer B.Fab)
- (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
- )
- (fp_text user %R (at 5.45 3.45) (layer B.Fab)
- (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
- )
- (fp_line (start -2.5 2.33) (end -2.5 -2.7) (layer B.Fab) (width 0.1))
- (fp_line (start -2.5 -2.7) (end 13.4 -2.7) (layer B.Fab) (width 0.1))
- (fp_line (start 13.4 -2.7) (end 13.4 2.33) (layer B.Fab) (width 0.1))
- (fp_line (start 13.4 2.33) (end -2.5 2.33) (layer B.Fab) (width 0.1))
- (fp_line (start 3.645 2.33) (end 3.645 -2.7) (layer B.Fab) (width 0.1))
- (fp_line (start 7.255 2.33) (end 7.255 -2.7) (layer B.Fab) (width 0.1))
- (fp_line (start -2.62 2.451) (end 13.52 2.451) (layer B.SilkS) (width 0.12))
- (fp_line (start -2.62 -2.82) (end 13.52 -2.82) (layer B.SilkS) (width 0.12))
- (fp_line (start -2.62 2.451) (end -2.62 -2.82) (layer B.SilkS) (width 0.12))
- (fp_line (start 13.52 2.451) (end 13.52 -2.82) (layer B.SilkS) (width 0.12))
- (fp_line (start 3.646 2.451) (end 3.646 -2.82) (layer B.SilkS) (width 0.12))
- (fp_line (start 7.255 2.451) (end 7.255 -2.82) (layer B.SilkS) (width 0.12))
- (fp_line (start -2.75 2.59) (end -2.75 -2.95) (layer B.CrtYd) (width 0.05))
- (fp_line (start -2.75 -2.95) (end 13.65 -2.95) (layer B.CrtYd) (width 0.05))
- (fp_line (start 13.65 -2.95) (end 13.65 2.59) (layer B.CrtYd) (width 0.05))
- (fp_line (start 13.65 2.59) (end -2.75 2.59) (layer B.CrtYd) (width 0.05))
- (pad 1 thru_hole rect (at 0 0) (size 2.5 4.5) (drill 1.5) (layers *.Cu *.Mask)
- (net 24 "Net-(Q3-Pad1)"))
- (pad 2 thru_hole oval (at 5.45 0) (size 2.5 4.5) (drill 1.5) (layers *.Cu *.Mask)
- (net 6 "Net-(C3-Pad2)"))
- (pad 3 thru_hole oval (at 10.9 0) (size 2.5 4.5) (drill 1.5) (layers *.Cu *.Mask)
- (net 5 GND_ISO_3))
- (model ${KISYS3DMOD}/TO_SOT_Packages_THT.3dshapes/TO-247_TO-3P_Vertical.wrl
- (offset (xyz 5.399989118900299 0 0))
- (scale (xyz 1 1 1))
- (rotate (xyz 0 0 0))
- )
- )
- (module TO_SOT_Packages_THT:TO-247_TO-3P_Vertical (layer B.Cu) (tedit 58CE52AE) (tstamp 59AF09B6)
- (at 178.17 143.51 180)
- (descr "TO-247, Vertical, RM 5.45mm, TO-3P")
- (tags "TO-247 Vertical RM 5.45mm TO-3P")
- (path /59AEEFCD/59AEE014)
- (fp_text reference Q4 (at 5.45 3.45 180) (layer B.SilkS)
- (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
- )
- (fp_text value RFP12N10L (at 5.45 -6.07 180) (layer B.Fab)
- (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
- )
- (fp_text user %R (at 5.45 3.45 180) (layer B.Fab)
- (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
- )
- (fp_line (start -2.5 2.33) (end -2.5 -2.7) (layer B.Fab) (width 0.1))
- (fp_line (start -2.5 -2.7) (end 13.4 -2.7) (layer B.Fab) (width 0.1))
- (fp_line (start 13.4 -2.7) (end 13.4 2.33) (layer B.Fab) (width 0.1))
- (fp_line (start 13.4 2.33) (end -2.5 2.33) (layer B.Fab) (width 0.1))
- (fp_line (start 3.645 2.33) (end 3.645 -2.7) (layer B.Fab) (width 0.1))
- (fp_line (start 7.255 2.33) (end 7.255 -2.7) (layer B.Fab) (width 0.1))
- (fp_line (start -2.62 2.451) (end 13.52 2.451) (layer B.SilkS) (width 0.12))
- (fp_line (start -2.62 -2.82) (end 13.52 -2.82) (layer B.SilkS) (width 0.12))
- (fp_line (start -2.62 2.451) (end -2.62 -2.82) (layer B.SilkS) (width 0.12))
- (fp_line (start 13.52 2.451) (end 13.52 -2.82) (layer B.SilkS) (width 0.12))
- (fp_line (start 3.646 2.451) (end 3.646 -2.82) (layer B.SilkS) (width 0.12))
- (fp_line (start 7.255 2.451) (end 7.255 -2.82) (layer B.SilkS) (width 0.12))
- (fp_line (start -2.75 2.59) (end -2.75 -2.95) (layer B.CrtYd) (width 0.05))
- (fp_line (start -2.75 -2.95) (end 13.65 -2.95) (layer B.CrtYd) (width 0.05))
- (fp_line (start 13.65 -2.95) (end 13.65 2.59) (layer B.CrtYd) (width 0.05))
- (fp_line (start 13.65 2.59) (end -2.75 2.59) (layer B.CrtYd) (width 0.05))
- (pad 1 thru_hole rect (at 0 0 180) (size 2.5 4.5) (drill 1.5) (layers *.Cu *.Mask)
- (net 25 "Net-(Q4-Pad1)"))
- (pad 2 thru_hole oval (at 5.45 0 180) (size 2.5 4.5) (drill 1.5) (layers *.Cu *.Mask)
- (net 8 "Net-(C4-Pad2)"))
- (pad 3 thru_hole oval (at 10.9 0 180) (size 2.5 4.5) (drill 1.5) (layers *.Cu *.Mask)
- (net 7 GND_ISO_4))
- (model ${KISYS3DMOD}/TO_SOT_Packages_THT.3dshapes/TO-247_TO-3P_Vertical.wrl
- (offset (xyz 5.399989118900299 0 0))
- (scale (xyz 1 1 1))
- (rotate (xyz 0 0 0))
- )
- )
- (module Diodes_THT:D_A-405_P7.62mm_Horizontal (layer F.Cu) (tedit 5921392E) (tstamp 5B574123)
- (at 65.670748 49.515536 180)
- (descr "D, A-405 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf")
- (tags "D A-405 series Axial Horizontal pin pitch 7.62mm length 5.2mm diameter 2.7mm")
- (path /59AEDD49/5B574136)
- (fp_text reference D201 (at 3.81 -2.41 180) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value D (at 3.81 2.41 180) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text user %R (at 3.81 0 180) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_line (start 1.21 -1.35) (end 1.21 1.35) (layer F.Fab) (width 0.1))
- (fp_line (start 1.21 1.35) (end 6.41 1.35) (layer F.Fab) (width 0.1))
- (fp_line (start 6.41 1.35) (end 6.41 -1.35) (layer F.Fab) (width 0.1))
- (fp_line (start 6.41 -1.35) (end 1.21 -1.35) (layer F.Fab) (width 0.1))
- (fp_line (start 0 0) (end 1.21 0) (layer F.Fab) (width 0.1))
- (fp_line (start 7.62 0) (end 6.41 0) (layer F.Fab) (width 0.1))
- (fp_line (start 1.99 -1.35) (end 1.99 1.35) (layer F.Fab) (width 0.1))
- (fp_line (start 1.15 -1.41) (end 1.15 1.41) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.15 1.41) (end 6.47 1.41) (layer F.SilkS) (width 0.12))
- (fp_line (start 6.47 1.41) (end 6.47 -1.41) (layer F.SilkS) (width 0.12))
- (fp_line (start 6.47 -1.41) (end 1.15 -1.41) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.08 0) (end 1.15 0) (layer F.SilkS) (width 0.12))
- (fp_line (start 6.54 0) (end 6.47 0) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.99 -1.41) (end 1.99 1.41) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.15 -1.7) (end -1.15 1.7) (layer F.CrtYd) (width 0.05))
- (fp_line (start -1.15 1.7) (end 8.8 1.7) (layer F.CrtYd) (width 0.05))
- (fp_line (start 8.8 1.7) (end 8.8 -1.7) (layer F.CrtYd) (width 0.05))
- (fp_line (start 8.8 -1.7) (end -1.15 -1.7) (layer F.CrtYd) (width 0.05))
- (pad 1 thru_hole rect (at 0 0 180) (size 1.8 1.8) (drill 0.9) (layers *.Cu *.Mask)
- (net 10 DRV_GATE_1))
- (pad 2 thru_hole oval (at 7.62 0 180) (size 1.8 1.8) (drill 0.9) (layers *.Cu *.Mask)
- (net 18 "Net-(D201-Pad2)"))
- (model ${KISYS3DMOD}/Diodes_THT.3dshapes/D_A-405_P7.62mm_Horizontal.wrl
- (at (xyz 0 0 0))
- (scale (xyz 0.393701 0.393701 0.393701))
- (rotate (xyz 0 0 0))
- )
- )
- (module Diodes_THT:D_A-405_P7.62mm_Horizontal (layer F.Cu) (tedit 5921392E) (tstamp 5B57413C)
- (at 111.76 125.73)
- (descr "D, A-405 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf")
- (tags "D A-405 series Axial Horizontal pin pitch 7.62mm length 5.2mm diameter 2.7mm")
- (path /59AEEDCB/5B574136)
- (fp_text reference D301 (at 3.81 -2.41) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value D (at 3.81 2.41) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text user %R (at 3.81 0) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_line (start 1.21 -1.35) (end 1.21 1.35) (layer F.Fab) (width 0.1))
- (fp_line (start 1.21 1.35) (end 6.41 1.35) (layer F.Fab) (width 0.1))
- (fp_line (start 6.41 1.35) (end 6.41 -1.35) (layer F.Fab) (width 0.1))
- (fp_line (start 6.41 -1.35) (end 1.21 -1.35) (layer F.Fab) (width 0.1))
- (fp_line (start 0 0) (end 1.21 0) (layer F.Fab) (width 0.1))
- (fp_line (start 7.62 0) (end 6.41 0) (layer F.Fab) (width 0.1))
- (fp_line (start 1.99 -1.35) (end 1.99 1.35) (layer F.Fab) (width 0.1))
- (fp_line (start 1.15 -1.41) (end 1.15 1.41) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.15 1.41) (end 6.47 1.41) (layer F.SilkS) (width 0.12))
- (fp_line (start 6.47 1.41) (end 6.47 -1.41) (layer F.SilkS) (width 0.12))
- (fp_line (start 6.47 -1.41) (end 1.15 -1.41) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.08 0) (end 1.15 0) (layer F.SilkS) (width 0.12))
- (fp_line (start 6.54 0) (end 6.47 0) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.99 -1.41) (end 1.99 1.41) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.15 -1.7) (end -1.15 1.7) (layer F.CrtYd) (width 0.05))
- (fp_line (start -1.15 1.7) (end 8.8 1.7) (layer F.CrtYd) (width 0.05))
- (fp_line (start 8.8 1.7) (end 8.8 -1.7) (layer F.CrtYd) (width 0.05))
- (fp_line (start 8.8 -1.7) (end -1.15 -1.7) (layer F.CrtYd) (width 0.05))
- (pad 1 thru_hole rect (at 0 0) (size 1.8 1.8) (drill 0.9) (layers *.Cu *.Mask)
- (net 11 DRV_GATE_2))
- (pad 2 thru_hole oval (at 7.62 0) (size 1.8 1.8) (drill 0.9) (layers *.Cu *.Mask)
- (net 19 "Net-(D301-Pad2)"))
- (model ${KISYS3DMOD}/Diodes_THT.3dshapes/D_A-405_P7.62mm_Horizontal.wrl
- (at (xyz 0 0 0))
- (scale (xyz 0.393701 0.393701 0.393701))
- (rotate (xyz 0 0 0))
- )
- )
- (module Diodes_THT:D_A-405_P7.62mm_Horizontal (layer F.Cu) (tedit 5921392E) (tstamp 5B574155)
- (at 137.16 54.61 180)
- (descr "D, A-405 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf")
- (tags "D A-405 series Axial Horizontal pin pitch 7.62mm length 5.2mm diameter 2.7mm")
- (path /59AEEFC6/5B574136)
- (fp_text reference D401 (at 3.81 -2.41 180) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value D (at 3.81 2.41 180) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text user %R (at 3.81 0 180) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_line (start 1.21 -1.35) (end 1.21 1.35) (layer F.Fab) (width 0.1))
- (fp_line (start 1.21 1.35) (end 6.41 1.35) (layer F.Fab) (width 0.1))
- (fp_line (start 6.41 1.35) (end 6.41 -1.35) (layer F.Fab) (width 0.1))
- (fp_line (start 6.41 -1.35) (end 1.21 -1.35) (layer F.Fab) (width 0.1))
- (fp_line (start 0 0) (end 1.21 0) (layer F.Fab) (width 0.1))
- (fp_line (start 7.62 0) (end 6.41 0) (layer F.Fab) (width 0.1))
- (fp_line (start 1.99 -1.35) (end 1.99 1.35) (layer F.Fab) (width 0.1))
- (fp_line (start 1.15 -1.41) (end 1.15 1.41) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.15 1.41) (end 6.47 1.41) (layer F.SilkS) (width 0.12))
- (fp_line (start 6.47 1.41) (end 6.47 -1.41) (layer F.SilkS) (width 0.12))
- (fp_line (start 6.47 -1.41) (end 1.15 -1.41) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.08 0) (end 1.15 0) (layer F.SilkS) (width 0.12))
- (fp_line (start 6.54 0) (end 6.47 0) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.99 -1.41) (end 1.99 1.41) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.15 -1.7) (end -1.15 1.7) (layer F.CrtYd) (width 0.05))
- (fp_line (start -1.15 1.7) (end 8.8 1.7) (layer F.CrtYd) (width 0.05))
- (fp_line (start 8.8 1.7) (end 8.8 -1.7) (layer F.CrtYd) (width 0.05))
- (fp_line (start 8.8 -1.7) (end -1.15 -1.7) (layer F.CrtYd) (width 0.05))
- (pad 1 thru_hole rect (at 0 0 180) (size 1.8 1.8) (drill 0.9) (layers *.Cu *.Mask)
- (net 12 DRV_GATE_3))
- (pad 2 thru_hole oval (at 7.62 0 180) (size 1.8 1.8) (drill 0.9) (layers *.Cu *.Mask)
- (net 20 "Net-(D401-Pad2)"))
- (model ${KISYS3DMOD}/Diodes_THT.3dshapes/D_A-405_P7.62mm_Horizontal.wrl
- (at (xyz 0 0 0))
- (scale (xyz 0.393701 0.393701 0.393701))
- (rotate (xyz 0 0 0))
- )
- )
- (module Diodes_THT:D_A-405_P7.62mm_Horizontal (layer F.Cu) (tedit 5921392E) (tstamp 5B57416E)
- (at 184.15 133.35)
- (descr "D, A-405 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf")
- (tags "D A-405 series Axial Horizontal pin pitch 7.62mm length 5.2mm diameter 2.7mm")
- (path /59AEEFCD/5B574136)
- (fp_text reference D501 (at 3.81 -2.41) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value D (at 3.81 2.41) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text user %R (at 3.81 0) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_line (start 1.21 -1.35) (end 1.21 1.35) (layer F.Fab) (width 0.1))
- (fp_line (start 1.21 1.35) (end 6.41 1.35) (layer F.Fab) (width 0.1))
- (fp_line (start 6.41 1.35) (end 6.41 -1.35) (layer F.Fab) (width 0.1))
- (fp_line (start 6.41 -1.35) (end 1.21 -1.35) (layer F.Fab) (width 0.1))
- (fp_line (start 0 0) (end 1.21 0) (layer F.Fab) (width 0.1))
- (fp_line (start 7.62 0) (end 6.41 0) (layer F.Fab) (width 0.1))
- (fp_line (start 1.99 -1.35) (end 1.99 1.35) (layer F.Fab) (width 0.1))
- (fp_line (start 1.15 -1.41) (end 1.15 1.41) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.15 1.41) (end 6.47 1.41) (layer F.SilkS) (width 0.12))
- (fp_line (start 6.47 1.41) (end 6.47 -1.41) (layer F.SilkS) (width 0.12))
- (fp_line (start 6.47 -1.41) (end 1.15 -1.41) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.08 0) (end 1.15 0) (layer F.SilkS) (width 0.12))
- (fp_line (start 6.54 0) (end 6.47 0) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.99 -1.41) (end 1.99 1.41) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.15 -1.7) (end -1.15 1.7) (layer F.CrtYd) (width 0.05))
- (fp_line (start -1.15 1.7) (end 8.8 1.7) (layer F.CrtYd) (width 0.05))
- (fp_line (start 8.8 1.7) (end 8.8 -1.7) (layer F.CrtYd) (width 0.05))
- (fp_line (start 8.8 -1.7) (end -1.15 -1.7) (layer F.CrtYd) (width 0.05))
- (pad 1 thru_hole rect (at 0 0) (size 1.8 1.8) (drill 0.9) (layers *.Cu *.Mask)
- (net 13 DRV_GATE_4))
- (pad 2 thru_hole oval (at 7.62 0) (size 1.8 1.8) (drill 0.9) (layers *.Cu *.Mask)
- (net 21 "Net-(D501-Pad2)"))
- (model ${KISYS3DMOD}/Diodes_THT.3dshapes/D_A-405_P7.62mm_Horizontal.wrl
- (at (xyz 0 0 0))
- (scale (xyz 0.393701 0.393701 0.393701))
- (rotate (xyz 0 0 0))
- )
- )
- (module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 5B574184)
- (at 58.050748 38.085536 270)
- (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
- (tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
- (path /59AEDD49/5B5740BD)
- (fp_text reference R201 (at 3.81 -2.31 270) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value R20 (at 3.81 2.31 270) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
- (fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
- (fp_line (start 0.6 -0.98) (end 0.6 -1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 0.6 -1.31) (end 7.02 -1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 7.02 -1.31) (end 7.02 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 0.6 0.98) (end 0.6 1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 0.6 1.31) (end 7.02 1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 7.02 1.31) (end 7.02 0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start -1.05 1.6) (end 8.7 1.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 8.7 1.6) (end 8.7 -1.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 8.7 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
- (pad 1 thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 22 "Net-(Q1-Pad1)"))
- (pad 2 thru_hole oval (at 7.62 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 18 "Net-(D201-Pad2)"))
- (model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
- (at (xyz 0 0 0))
- (scale (xyz 0.393701 0.393701 0.393701))
- (rotate (xyz 0 0 0))
- )
- )
- (module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 5B57419A)
- (at 65.670748 38.085536 270)
- (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
- (tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
- (path /59AEDD49/5B574108)
- (fp_text reference R202 (at 3.81 -2.31 270) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value R10 (at 3.81 2.31 270) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
- (fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
- (fp_line (start 0.6 -0.98) (end 0.6 -1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 0.6 -1.31) (end 7.02 -1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 7.02 -1.31) (end 7.02 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 0.6 0.98) (end 0.6 1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 0.6 1.31) (end 7.02 1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 7.02 1.31) (end 7.02 0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start -1.05 1.6) (end 8.7 1.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 8.7 1.6) (end 8.7 -1.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 8.7 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
- (pad 1 thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 22 "Net-(Q1-Pad1)"))
- (pad 2 thru_hole oval (at 7.62 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 10 DRV_GATE_1))
- (model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
- (at (xyz 0 0 0))
- (scale (xyz 0.393701 0.393701 0.393701))
- (rotate (xyz 0 0 0))
- )
- )
- (module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 5B5741B0)
- (at 119.38 137.16 90)
- (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
- (tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
- (path /59AEEDCB/5B5740BD)
- (fp_text reference R301 (at 3.81 -2.31 90) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value R20 (at 3.81 2.31 90) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
- (fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
- (fp_line (start 0.6 -0.98) (end 0.6 -1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 0.6 -1.31) (end 7.02 -1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 7.02 -1.31) (end 7.02 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 0.6 0.98) (end 0.6 1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 0.6 1.31) (end 7.02 1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 7.02 1.31) (end 7.02 0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start -1.05 1.6) (end 8.7 1.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 8.7 1.6) (end 8.7 -1.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 8.7 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
- (pad 1 thru_hole circle (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 23 "Net-(Q2-Pad1)"))
- (pad 2 thru_hole oval (at 7.62 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 19 "Net-(D301-Pad2)"))
- (model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
- (at (xyz 0 0 0))
- (scale (xyz 0.393701 0.393701 0.393701))
- (rotate (xyz 0 0 0))
- )
- )
- (module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 5B5741C6)
- (at 111.76 137.16 90)
- (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
- (tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
- (path /59AEEDCB/5B574108)
- (fp_text reference R302 (at 3.81 -2.31 90) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value R10 (at 3.81 2.31 90) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
- (fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
- (fp_line (start 0.6 -0.98) (end 0.6 -1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 0.6 -1.31) (end 7.02 -1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 7.02 -1.31) (end 7.02 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 0.6 0.98) (end 0.6 1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 0.6 1.31) (end 7.02 1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 7.02 1.31) (end 7.02 0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start -1.05 1.6) (end 8.7 1.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 8.7 1.6) (end 8.7 -1.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 8.7 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
- (pad 1 thru_hole circle (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 23 "Net-(Q2-Pad1)"))
- (pad 2 thru_hole oval (at 7.62 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 11 DRV_GATE_2))
- (model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
- (at (xyz 0 0 0))
- (scale (xyz 0.393701 0.393701 0.393701))
- (rotate (xyz 0 0 0))
- )
- )
- (module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 5B5741DC)
- (at 129.54 43.18 270)
- (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
- (tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
- (path /59AEEFC6/5B5740BD)
- (fp_text reference R401 (at 3.81 -2.31 270) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value R20 (at 3.81 2.31 270) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
- (fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
- (fp_line (start 0.6 -0.98) (end 0.6 -1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 0.6 -1.31) (end 7.02 -1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 7.02 -1.31) (end 7.02 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 0.6 0.98) (end 0.6 1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 0.6 1.31) (end 7.02 1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 7.02 1.31) (end 7.02 0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start -1.05 1.6) (end 8.7 1.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 8.7 1.6) (end 8.7 -1.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 8.7 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
- (pad 1 thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 24 "Net-(Q3-Pad1)"))
- (pad 2 thru_hole oval (at 7.62 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 20 "Net-(D401-Pad2)"))
- (model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
- (at (xyz 0 0 0))
- (scale (xyz 0.393701 0.393701 0.393701))
- (rotate (xyz 0 0 0))
- )
- )
- (module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 5B5741F2)
- (at 137.16 43.18 270)
- (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
- (tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
- (path /59AEEFC6/5B574108)
- (fp_text reference R402 (at 3.81 -2.31 270) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value R10 (at 3.81 2.31 270) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
- (fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
- (fp_line (start 0.6 -0.98) (end 0.6 -1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 0.6 -1.31) (end 7.02 -1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 7.02 -1.31) (end 7.02 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 0.6 0.98) (end 0.6 1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 0.6 1.31) (end 7.02 1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 7.02 1.31) (end 7.02 0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start -1.05 1.6) (end 8.7 1.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 8.7 1.6) (end 8.7 -1.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 8.7 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
- (pad 1 thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 24 "Net-(Q3-Pad1)"))
- (pad 2 thru_hole oval (at 7.62 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 12 DRV_GATE_3))
- (model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
- (at (xyz 0 0 0))
- (scale (xyz 0.393701 0.393701 0.393701))
- (rotate (xyz 0 0 0))
- )
- )
- (module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 5B574208)
- (at 191.77 144.78 90)
- (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
- (tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
- (path /59AEEFCD/5B5740BD)
- (fp_text reference R501 (at 3.81 -2.31 90) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value R20 (at 3.81 2.31 90) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
- (fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
- (fp_line (start 0.6 -0.98) (end 0.6 -1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 0.6 -1.31) (end 7.02 -1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 7.02 -1.31) (end 7.02 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 0.6 0.98) (end 0.6 1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 0.6 1.31) (end 7.02 1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 7.02 1.31) (end 7.02 0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start -1.05 1.6) (end 8.7 1.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 8.7 1.6) (end 8.7 -1.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 8.7 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
- (pad 1 thru_hole circle (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 25 "Net-(Q4-Pad1)"))
- (pad 2 thru_hole oval (at 7.62 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 21 "Net-(D501-Pad2)"))
- (model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
- (at (xyz 0 0 0))
- (scale (xyz 0.393701 0.393701 0.393701))
- (rotate (xyz 0 0 0))
- )
- )
- (module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 5B57421E)
- (at 184.15 144.78 90)
- (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
- (tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
- (path /59AEEFCD/5B574108)
- (fp_text reference R502 (at 3.81 -2.31 90) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value R10 (at 3.81 2.31 90) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
- (fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
- (fp_line (start 0.6 -0.98) (end 0.6 -1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 0.6 -1.31) (end 7.02 -1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 7.02 -1.31) (end 7.02 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 0.6 0.98) (end 0.6 1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 0.6 1.31) (end 7.02 1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 7.02 1.31) (end 7.02 0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start -1.05 1.6) (end 8.7 1.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 8.7 1.6) (end 8.7 -1.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 8.7 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
- (pad 1 thru_hole circle (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 25 "Net-(Q4-Pad1)"))
- (pad 2 thru_hole oval (at 7.62 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 13 DRV_GATE_4))
- (model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
- (at (xyz 0 0 0))
- (scale (xyz 0.393701 0.393701 0.393701))
- (rotate (xyz 0 0 0))
- )
- )
- (module OAE_Parts:PowerConnectorRound (layer F.Cu) (tedit 59AECA0D) (tstamp 5B588E58)
- (at 76.2 27.94)
- (path /59AEDD49/59AEE02F)
- (fp_text reference J2 (at 0.254 -2.794) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value PWR_IN (at 0 6.35) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (pad 1 thru_hole circle (at 0 0) (size 10 10) (drill 4.3) (layers *.Cu *.Mask)
- (net 2 "Net-(C1-Pad2)"))
- )
- (module OAE_Parts:PowerConnectorRound (layer F.Cu) (tedit 59AECA0D) (tstamp 5B588E5C)
- (at 106.68 153.67)
- (path /59AEEDCB/59AEE02F)
- (fp_text reference J3 (at 0.254 -2.794) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value PWR_IN (at 0 6.35) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (pad 1 thru_hole circle (at 0 0) (size 10 10) (drill 4.3) (layers *.Cu *.Mask)
- (net 4 "Net-(C2-Pad2)"))
- )
- (module OAE_Parts:PowerConnectorRound (layer F.Cu) (tedit 59AECA0D) (tstamp 5B588E60)
- (at 142.24 27.94)
- (path /59AEEFC6/59AEE02F)
- (fp_text reference J4 (at 0.254 -2.794) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value PWR_IN (at 0 6.35) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (pad 1 thru_hole circle (at 0 0) (size 10 10) (drill 4.3) (layers *.Cu *.Mask)
- (net 6 "Net-(C3-Pad2)"))
- )
- (module OAE_Parts:PowerConnectorRound (layer F.Cu) (tedit 59AECA0D) (tstamp 5B588E64)
- (at 172.72 153.67)
- (path /59AEEFCD/59AEE02F)
- (fp_text reference J5 (at 0.254 -2.794) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value PWR_IN (at 0 6.35) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (pad 1 thru_hole circle (at 0 0) (size 10 10) (drill 4.3) (layers *.Cu *.Mask)
- (net 8 "Net-(C4-Pad2)"))
- )
- (module OAE_Parts:PowerConnectorRound (layer F.Cu) (tedit 59AECA0D) (tstamp 5B588E68)
- (at 213.36 90.17)
- (path /59AEFF90)
- (fp_text reference J6 (at 0.254 -2.794) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value PWR_OUT (at 0 6.35) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (pad 1 thru_hole circle (at 0 0) (size 10 10) (drill 4.3) (layers *.Cu *.Mask)
- (net 9 "/SinglePowerSwitch 1/PWR_OUT"))
- )
- (module OAE_Parts:PowerConnectorRound (layer F.Cu) (tedit 59AECA0D) (tstamp 5B588E6C)
- (at 35.56 90.17)
- (path /59AFA697)
- (fp_text reference J7 (at 0.254 -2.794) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value PWR_OUT (at 0 6.35) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (pad 1 thru_hole circle (at 0 0) (size 10 10) (drill 4.3) (layers *.Cu *.Mask)
- (net 9 "/SinglePowerSwitch 1/PWR_OUT"))
- )
- (module OAE_Parts:TerminalBlock_2_P5.00mm (layer F.Cu) (tedit 5B575216) (tstamp 5B588EA9)
- (at 162.56 129.54 180)
- (descr "Altech AK300 terminal block, pitch 5.0mm, 45 degree angled, see http://www.mouser.com/ds/2/16/PCBMETRC-24178.pdf")
- (tags "Altech AK300 terminal block pitch 5.0mm")
- (path /59AEEFCD/5AC4D364)
- (fp_text reference J501 (at -5.24 0 270) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value Conn_01x02 (at 3 7.5 180) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_line (start -3 -5) (end -3 6) (layer F.SilkS) (width 0.12))
- (fp_line (start -3 6) (end 8 6) (layer F.SilkS) (width 0.12))
- (fp_line (start 8 6) (end 8 5) (layer F.SilkS) (width 0.12))
- (fp_line (start 8 5) (end 8.5 5.5) (layer F.SilkS) (width 0.12))
- (fp_line (start 8.5 5.5) (end 8.5 3.5) (layer F.SilkS) (width 0.12))
- (fp_line (start 8.5 3.5) (end 8 4) (layer F.SilkS) (width 0.12))
- (fp_line (start 8 4) (end 8 -1.5) (layer F.SilkS) (width 0.12))
- (fp_line (start 8 -1.5) (end 8.5 -1) (layer F.SilkS) (width 0.12))
- (fp_line (start 8.5 -1) (end 8.5 -5) (layer F.SilkS) (width 0.12))
- (fp_line (start 8.5 -5) (end -3 -5) (layer F.SilkS) (width 0.12))
- (fp_line (start -3.5 -5.5) (end 9 -5.5) (layer F.CrtYd) (width 0.05))
- (fp_line (start -3.5 -5.5) (end -3.5 6.5) (layer F.CrtYd) (width 0.05))
- (fp_line (start 9 6.5) (end 9 -5.5) (layer F.CrtYd) (width 0.05))
- (fp_line (start 9 6.5) (end -3.5 6.5) (layer F.CrtYd) (width 0.05))
- (pad 1 thru_hole rect (at 0 0 180) (size 1.98 3.96) (drill 1.32) (layers *.Cu *.Mask)
- (net 13 DRV_GATE_4) (zone_connect 2))
- (pad 2 thru_hole oval (at 5 0 180) (size 1.98 3.96) (drill 1.32) (layers *.Cu *.Mask)
- (net 7 GND_ISO_4))
- (model C:/Development/mlihardware/3D/13986.wrl
- (at (xyz 0 0 0))
- (scale (xyz 1 1 1))
- (rotate (xyz 0 0 0))
- )
- )
- (module OAE_Parts:TerminalBlock_2_P5.00mm (layer F.Cu) (tedit 5B575216) (tstamp 5B588E96)
- (at 152.4 54.61)
- (descr "Altech AK300 terminal block, pitch 5.0mm, 45 degree angled, see http://www.mouser.com/ds/2/16/PCBMETRC-24178.pdf")
- (tags "Altech AK300 terminal block pitch 5.0mm")
- (path /59AEEFC6/5AC4D364)
- (fp_text reference J401 (at -5.24 0 90) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value Conn_01x02 (at 3 7.5) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_line (start -3 -5) (end -3 6) (layer F.SilkS) (width 0.12))
- (fp_line (start -3 6) (end 8 6) (layer F.SilkS) (width 0.12))
- (fp_line (start 8 6) (end 8 5) (layer F.SilkS) (width 0.12))
- (fp_line (start 8 5) (end 8.5 5.5) (layer F.SilkS) (width 0.12))
- (fp_line (start 8.5 5.5) (end 8.5 3.5) (layer F.SilkS) (width 0.12))
- (fp_line (start 8.5 3.5) (end 8 4) (layer F.SilkS) (width 0.12))
- (fp_line (start 8 4) (end 8 -1.5) (layer F.SilkS) (width 0.12))
- (fp_line (start 8 -1.5) (end 8.5 -1) (layer F.SilkS) (width 0.12))
- (fp_line (start 8.5 -1) (end 8.5 -5) (layer F.SilkS) (width 0.12))
- (fp_line (start 8.5 -5) (end -3 -5) (layer F.SilkS) (width 0.12))
- (fp_line (start -3.5 -5.5) (end 9 -5.5) (layer F.CrtYd) (width 0.05))
- (fp_line (start -3.5 -5.5) (end -3.5 6.5) (layer F.CrtYd) (width 0.05))
- (fp_line (start 9 6.5) (end 9 -5.5) (layer F.CrtYd) (width 0.05))
- (fp_line (start 9 6.5) (end -3.5 6.5) (layer F.CrtYd) (width 0.05))
- (pad 1 thru_hole rect (at 0 0) (size 1.98 3.96) (drill 1.32) (layers *.Cu *.Mask)
- (net 12 DRV_GATE_3) (zone_connect 2))
- (pad 2 thru_hole oval (at 5 0) (size 1.98 3.96) (drill 1.32) (layers *.Cu *.Mask)
- (net 5 GND_ISO_3))
- (model C:/Development/mlihardware/3D/13986.wrl
- (at (xyz 0 0 0))
- (scale (xyz 1 1 1))
- (rotate (xyz 0 0 0))
- )
- )
- (module OAE_Parts:TerminalBlock_2_P5.00mm (layer F.Cu) (tedit 5B575216) (tstamp 5B588E83)
- (at 96.52 129.54 180)
- (descr "Altech AK300 terminal block, pitch 5.0mm, 45 degree angled, see http://www.mouser.com/ds/2/16/PCBMETRC-24178.pdf")
- (tags "Altech AK300 terminal block pitch 5.0mm")
- (path /59AEEDCB/5AC4D364)
- (fp_text reference J301 (at -5.24 0 270) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value Conn_01x02 (at 3 7.5 180) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_line (start -3 -5) (end -3 6) (layer F.SilkS) (width 0.12))
- (fp_line (start -3 6) (end 8 6) (layer F.SilkS) (width 0.12))
- (fp_line (start 8 6) (end 8 5) (layer F.SilkS) (width 0.12))
- (fp_line (start 8 5) (end 8.5 5.5) (layer F.SilkS) (width 0.12))
- (fp_line (start 8.5 5.5) (end 8.5 3.5) (layer F.SilkS) (width 0.12))
- (fp_line (start 8.5 3.5) (end 8 4) (layer F.SilkS) (width 0.12))
- (fp_line (start 8 4) (end 8 -1.5) (layer F.SilkS) (width 0.12))
- (fp_line (start 8 -1.5) (end 8.5 -1) (layer F.SilkS) (width 0.12))
- (fp_line (start 8.5 -1) (end 8.5 -5) (layer F.SilkS) (width 0.12))
- (fp_line (start 8.5 -5) (end -3 -5) (layer F.SilkS) (width 0.12))
- (fp_line (start -3.5 -5.5) (end 9 -5.5) (layer F.CrtYd) (width 0.05))
- (fp_line (start -3.5 -5.5) (end -3.5 6.5) (layer F.CrtYd) (width 0.05))
- (fp_line (start 9 6.5) (end 9 -5.5) (layer F.CrtYd) (width 0.05))
- (fp_line (start 9 6.5) (end -3.5 6.5) (layer F.CrtYd) (width 0.05))
- (pad 1 thru_hole rect (at 0 0 180) (size 1.98 3.96) (drill 1.32) (layers *.Cu *.Mask)
- (net 11 DRV_GATE_2) (zone_connect 2))
- (pad 2 thru_hole oval (at 5 0 180) (size 1.98 3.96) (drill 1.32) (layers *.Cu *.Mask)
- (net 3 GND_ISO_2))
- (model C:/Development/mlihardware/3D/13986.wrl
- (at (xyz 0 0 0))
- (scale (xyz 1 1 1))
- (rotate (xyz 0 0 0))
- )
- )
- (module OAE_Parts:TerminalBlock_2_P5.00mm (layer F.Cu) (tedit 5B575216) (tstamp 5B588E70)
- (at 86.36 53.34)
- (descr "Altech AK300 terminal block, pitch 5.0mm, 45 degree angled, see http://www.mouser.com/ds/2/16/PCBMETRC-24178.pdf")
- (tags "Altech AK300 terminal block pitch 5.0mm")
- (path /59AEDD49/5AC4D364)
- (fp_text reference J201 (at -5.24 0 90) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value Conn_01x02 (at 3 7.5) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_line (start -3 -5) (end -3 6) (layer F.SilkS) (width 0.12))
- (fp_line (start -3 6) (end 8 6) (layer F.SilkS) (width 0.12))
- (fp_line (start 8 6) (end 8 5) (layer F.SilkS) (width 0.12))
- (fp_line (start 8 5) (end 8.5 5.5) (layer F.SilkS) (width 0.12))
- (fp_line (start 8.5 5.5) (end 8.5 3.5) (layer F.SilkS) (width 0.12))
- (fp_line (start 8.5 3.5) (end 8 4) (layer F.SilkS) (width 0.12))
- (fp_line (start 8 4) (end 8 -1.5) (layer F.SilkS) (width 0.12))
- (fp_line (start 8 -1.5) (end 8.5 -1) (layer F.SilkS) (width 0.12))
- (fp_line (start 8.5 -1) (end 8.5 -5) (layer F.SilkS) (width 0.12))
- (fp_line (start 8.5 -5) (end -3 -5) (layer F.SilkS) (width 0.12))
- (fp_line (start -3.5 -5.5) (end 9 -5.5) (layer F.CrtYd) (width 0.05))
- (fp_line (start -3.5 -5.5) (end -3.5 6.5) (layer F.CrtYd) (width 0.05))
- (fp_line (start 9 6.5) (end 9 -5.5) (layer F.CrtYd) (width 0.05))
- (fp_line (start 9 6.5) (end -3.5 6.5) (layer F.CrtYd) (width 0.05))
- (pad 1 thru_hole rect (at 0 0) (size 1.98 3.96) (drill 1.32) (layers *.Cu *.Mask)
- (net 10 DRV_GATE_1) (zone_connect 2))
- (pad 2 thru_hole oval (at 5 0) (size 1.98 3.96) (drill 1.32) (layers *.Cu *.Mask)
- (net 1 GND_ISO_1))
- (model C:/Development/mlihardware/3D/13986.wrl
- (at (xyz 0 0 0))
- (scale (xyz 1 1 1))
- (rotate (xyz 0 0 0))
- )
- )
- (module Capacitors_THT:CP_Radial_D8.0mm_P5.00mm (layer F.Cu) (tedit 597BC7C2) (tstamp 5B61FD33)
- (at 81.28 45.72 180)
- (descr "CP, Radial series, Radial, pin pitch=5.00mm, , diameter=8mm, Electrolytic Capacitor")
- (tags "CP Radial series Radial pin pitch 5.00mm diameter 8mm Electrolytic Capacitor")
- (path /59AEDD49/59AEE01D)
- (fp_text reference C1 (at 2.5 -5.31 180) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value C (at 2.5 5.31 180) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_arc (start 2.5 0) (end -1.416082 -1.18) (angle 146.5) (layer F.SilkS) (width 0.12))
- (fp_arc (start 2.5 0) (end -1.416082 1.18) (angle -146.5) (layer F.SilkS) (width 0.12))
- (fp_arc (start 2.5 0) (end 6.416082 -1.18) (angle 33.5) (layer F.SilkS) (width 0.12))
- (fp_circle (center 2.5 0) (end 6.5 0) (layer F.Fab) (width 0.1))
- (fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
- (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
- (fp_line (start 2.5 -4.05) (end 2.5 4.05) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.54 -4.05) (end 2.54 4.05) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.58 -4.05) (end 2.58 4.05) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.62 -4.049) (end 2.62 4.049) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.66 -4.047) (end 2.66 4.047) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.7 -4.046) (end 2.7 4.046) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.74 -4.043) (end 2.74 4.043) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.78 -4.041) (end 2.78 4.041) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.82 -4.038) (end 2.82 4.038) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.86 -4.035) (end 2.86 4.035) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.9 -4.031) (end 2.9 4.031) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.94 -4.027) (end 2.94 4.027) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.98 -4.022) (end 2.98 4.022) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.02 -4.017) (end 3.02 4.017) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.06 -4.012) (end 3.06 4.012) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.1 -4.006) (end 3.1 4.006) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.14 -4) (end 3.14 4) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.18 -3.994) (end 3.18 3.994) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.221 -3.987) (end 3.221 3.987) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.261 -3.979) (end 3.261 3.979) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.301 -3.971) (end 3.301 3.971) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.341 -3.963) (end 3.341 3.963) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.381 -3.955) (end 3.381 3.955) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.421 -3.946) (end 3.421 3.946) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.461 -3.936) (end 3.461 3.936) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.501 -3.926) (end 3.501 3.926) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.541 -3.916) (end 3.541 3.916) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.581 -3.905) (end 3.581 3.905) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.621 -3.894) (end 3.621 3.894) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.661 -3.883) (end 3.661 3.883) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.701 -3.87) (end 3.701 3.87) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.741 -3.858) (end 3.741 3.858) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.781 -3.845) (end 3.781 3.845) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.821 -3.832) (end 3.821 3.832) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.861 -3.818) (end 3.861 3.818) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.901 -3.803) (end 3.901 3.803) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.941 -3.789) (end 3.941 3.789) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.981 -3.773) (end 3.981 3.773) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.021 -3.758) (end 4.021 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.021 0.98) (end 4.021 3.758) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.061 -3.741) (end 4.061 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.061 0.98) (end 4.061 3.741) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.101 -3.725) (end 4.101 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.101 0.98) (end 4.101 3.725) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.141 -3.707) (end 4.141 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.141 0.98) (end 4.141 3.707) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.181 -3.69) (end 4.181 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.181 0.98) (end 4.181 3.69) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.221 -3.671) (end 4.221 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.221 0.98) (end 4.221 3.671) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.261 -3.652) (end 4.261 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.261 0.98) (end 4.261 3.652) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.301 -3.633) (end 4.301 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.301 0.98) (end 4.301 3.633) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.341 -3.613) (end 4.341 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.341 0.98) (end 4.341 3.613) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.381 -3.593) (end 4.381 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.381 0.98) (end 4.381 3.593) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.421 -3.572) (end 4.421 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.421 0.98) (end 4.421 3.572) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.461 -3.55) (end 4.461 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.461 0.98) (end 4.461 3.55) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.501 -3.528) (end 4.501 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.501 0.98) (end 4.501 3.528) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.541 -3.505) (end 4.541 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.541 0.98) (end 4.541 3.505) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.581 -3.482) (end 4.581 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.581 0.98) (end 4.581 3.482) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.621 -3.458) (end 4.621 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.621 0.98) (end 4.621 3.458) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.661 -3.434) (end 4.661 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.661 0.98) (end 4.661 3.434) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.701 -3.408) (end 4.701 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.701 0.98) (end 4.701 3.408) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.741 -3.383) (end 4.741 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.741 0.98) (end 4.741 3.383) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.781 -3.356) (end 4.781 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.781 0.98) (end 4.781 3.356) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.821 -3.329) (end 4.821 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.821 0.98) (end 4.821 3.329) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.861 -3.301) (end 4.861 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.861 0.98) (end 4.861 3.301) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.901 -3.272) (end 4.901 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.901 0.98) (end 4.901 3.272) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.941 -3.243) (end 4.941 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.941 0.98) (end 4.941 3.243) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.981 -3.213) (end 4.981 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.981 0.98) (end 4.981 3.213) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.021 -3.182) (end 5.021 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.021 0.98) (end 5.021 3.182) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.061 -3.15) (end 5.061 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.061 0.98) (end 5.061 3.15) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.101 -3.118) (end 5.101 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.101 0.98) (end 5.101 3.118) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.141 -3.084) (end 5.141 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.141 0.98) (end 5.141 3.084) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.181 -3.05) (end 5.181 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.181 0.98) (end 5.181 3.05) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.221 -3.015) (end 5.221 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.221 0.98) (end 5.221 3.015) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.261 -2.979) (end 5.261 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.261 0.98) (end 5.261 2.979) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.301 -2.942) (end 5.301 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.301 0.98) (end 5.301 2.942) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.341 -2.904) (end 5.341 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.341 0.98) (end 5.341 2.904) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.381 -2.865) (end 5.381 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.381 0.98) (end 5.381 2.865) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.421 -2.824) (end 5.421 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.421 0.98) (end 5.421 2.824) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.461 -2.783) (end 5.461 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.461 0.98) (end 5.461 2.783) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.501 -2.74) (end 5.501 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.501 0.98) (end 5.501 2.74) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.541 -2.697) (end 5.541 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.541 0.98) (end 5.541 2.697) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.581 -2.652) (end 5.581 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.581 0.98) (end 5.581 2.652) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.621 -2.605) (end 5.621 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.621 0.98) (end 5.621 2.605) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.661 -2.557) (end 5.661 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.661 0.98) (end 5.661 2.557) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.701 -2.508) (end 5.701 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.701 0.98) (end 5.701 2.508) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.741 -2.457) (end 5.741 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.741 0.98) (end 5.741 2.457) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.781 -2.404) (end 5.781 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.781 0.98) (end 5.781 2.404) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.821 -2.349) (end 5.821 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.821 0.98) (end 5.821 2.349) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.861 -2.293) (end 5.861 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.861 0.98) (end 5.861 2.293) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.901 -2.234) (end 5.901 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.901 0.98) (end 5.901 2.234) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.941 -2.173) (end 5.941 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.941 0.98) (end 5.941 2.173) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.981 -2.109) (end 5.981 2.109) (layer F.SilkS) (width 0.12))
- (fp_line (start 6.021 -2.043) (end 6.021 2.043) (layer F.SilkS) (width 0.12))
- (fp_line (start 6.061 -1.974) (end 6.061 1.974) (layer F.SilkS) (width 0.12))
- (fp_line (start 6.101 -1.902) (end 6.101 1.902) (layer F.SilkS) (width 0.12))
- (fp_line (start 6.141 -1.826) (end 6.141 1.826) (layer F.SilkS) (width 0.12))
- (fp_line (start 6.181 -1.745) (end 6.181 1.745) (layer F.SilkS) (width 0.12))
- (fp_line (start 6.221 -1.66) (end 6.221 1.66) (layer F.SilkS) (width 0.12))
- (fp_line (start 6.261 -1.57) (end 6.261 1.57) (layer F.SilkS) (width 0.12))
- (fp_line (start 6.301 -1.473) (end 6.301 1.473) (layer F.SilkS) (width 0.12))
- (fp_line (start 6.341 -1.369) (end 6.341 1.369) (layer F.SilkS) (width 0.12))
- (fp_line (start 6.381 -1.254) (end 6.381 1.254) (layer F.SilkS) (width 0.12))
- (fp_line (start 6.421 -1.127) (end 6.421 1.127) (layer F.SilkS) (width 0.12))
- (fp_line (start 6.461 -0.983) (end 6.461 0.983) (layer F.SilkS) (width 0.12))
- (fp_line (start 6.501 -0.814) (end 6.501 0.814) (layer F.SilkS) (width 0.12))
- (fp_line (start 6.541 -0.598) (end 6.541 0.598) (layer F.SilkS) (width 0.12))
- (fp_line (start 6.581 -0.246) (end 6.581 0.246) (layer F.SilkS) (width 0.12))
- (fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.85 -4.35) (end -1.85 4.35) (layer F.CrtYd) (width 0.05))
- (fp_line (start -1.85 4.35) (end 6.85 4.35) (layer F.CrtYd) (width 0.05))
- (fp_line (start 6.85 4.35) (end 6.85 -4.35) (layer F.CrtYd) (width 0.05))
- (fp_line (start 6.85 -4.35) (end -1.85 -4.35) (layer F.CrtYd) (width 0.05))
- (fp_text user %R (at 2.5 0 180) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (pad 1 thru_hole rect (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 1 GND_ISO_1))
- (pad 2 thru_hole circle (at 5 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 2 "Net-(C1-Pad2)"))
- (model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_D8.0mm_P5.00mm.wrl
- (at (xyz 0 0 0))
- (scale (xyz 1 1 1))
- (rotate (xyz 0 0 0))
- )
- )
- (module Capacitors_THT:CP_Radial_D8.0mm_P5.00mm (layer F.Cu) (tedit 597BC7C2) (tstamp 5B61FDDD)
- (at 102.87 135.89)
- (descr "CP, Radial series, Radial, pin pitch=5.00mm, , diameter=8mm, Electrolytic Capacitor")
- (tags "CP Radial series Radial pin pitch 5.00mm diameter 8mm Electrolytic Capacitor")
- (path /59AEEDCB/59AEE01D)
- (fp_text reference C2 (at 2.5 -5.31) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value C (at 2.5 5.31) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text user %R (at 2.5 0) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_line (start 6.85 -4.35) (end -1.85 -4.35) (layer F.CrtYd) (width 0.05))
- (fp_line (start 6.85 4.35) (end 6.85 -4.35) (layer F.CrtYd) (width 0.05))
- (fp_line (start -1.85 4.35) (end 6.85 4.35) (layer F.CrtYd) (width 0.05))
- (fp_line (start -1.85 -4.35) (end -1.85 4.35) (layer F.CrtYd) (width 0.05))
- (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
- (fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
- (fp_line (start 6.581 -0.246) (end 6.581 0.246) (layer F.SilkS) (width 0.12))
- (fp_line (start 6.541 -0.598) (end 6.541 0.598) (layer F.SilkS) (width 0.12))
- (fp_line (start 6.501 -0.814) (end 6.501 0.814) (layer F.SilkS) (width 0.12))
- (fp_line (start 6.461 -0.983) (end 6.461 0.983) (layer F.SilkS) (width 0.12))
- (fp_line (start 6.421 -1.127) (end 6.421 1.127) (layer F.SilkS) (width 0.12))
- (fp_line (start 6.381 -1.254) (end 6.381 1.254) (layer F.SilkS) (width 0.12))
- (fp_line (start 6.341 -1.369) (end 6.341 1.369) (layer F.SilkS) (width 0.12))
- (fp_line (start 6.301 -1.473) (end 6.301 1.473) (layer F.SilkS) (width 0.12))
- (fp_line (start 6.261 -1.57) (end 6.261 1.57) (layer F.SilkS) (width 0.12))
- (fp_line (start 6.221 -1.66) (end 6.221 1.66) (layer F.SilkS) (width 0.12))
- (fp_line (start 6.181 -1.745) (end 6.181 1.745) (layer F.SilkS) (width 0.12))
- (fp_line (start 6.141 -1.826) (end 6.141 1.826) (layer F.SilkS) (width 0.12))
- (fp_line (start 6.101 -1.902) (end 6.101 1.902) (layer F.SilkS) (width 0.12))
- (fp_line (start 6.061 -1.974) (end 6.061 1.974) (layer F.SilkS) (width 0.12))
- (fp_line (start 6.021 -2.043) (end 6.021 2.043) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.981 -2.109) (end 5.981 2.109) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.941 0.98) (end 5.941 2.173) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.941 -2.173) (end 5.941 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.901 0.98) (end 5.901 2.234) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.901 -2.234) (end 5.901 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.861 0.98) (end 5.861 2.293) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.861 -2.293) (end 5.861 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.821 0.98) (end 5.821 2.349) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.821 -2.349) (end 5.821 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.781 0.98) (end 5.781 2.404) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.781 -2.404) (end 5.781 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.741 0.98) (end 5.741 2.457) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.741 -2.457) (end 5.741 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.701 0.98) (end 5.701 2.508) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.701 -2.508) (end 5.701 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.661 0.98) (end 5.661 2.557) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.661 -2.557) (end 5.661 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.621 0.98) (end 5.621 2.605) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.621 -2.605) (end 5.621 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.581 0.98) (end 5.581 2.652) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.581 -2.652) (end 5.581 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.541 0.98) (end 5.541 2.697) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.541 -2.697) (end 5.541 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.501 0.98) (end 5.501 2.74) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.501 -2.74) (end 5.501 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.461 0.98) (end 5.461 2.783) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.461 -2.783) (end 5.461 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.421 0.98) (end 5.421 2.824) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.421 -2.824) (end 5.421 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.381 0.98) (end 5.381 2.865) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.381 -2.865) (end 5.381 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.341 0.98) (end 5.341 2.904) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.341 -2.904) (end 5.341 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.301 0.98) (end 5.301 2.942) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.301 -2.942) (end 5.301 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.261 0.98) (end 5.261 2.979) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.261 -2.979) (end 5.261 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.221 0.98) (end 5.221 3.015) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.221 -3.015) (end 5.221 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.181 0.98) (end 5.181 3.05) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.181 -3.05) (end 5.181 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.141 0.98) (end 5.141 3.084) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.141 -3.084) (end 5.141 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.101 0.98) (end 5.101 3.118) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.101 -3.118) (end 5.101 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.061 0.98) (end 5.061 3.15) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.061 -3.15) (end 5.061 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.021 0.98) (end 5.021 3.182) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.021 -3.182) (end 5.021 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.981 0.98) (end 4.981 3.213) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.981 -3.213) (end 4.981 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.941 0.98) (end 4.941 3.243) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.941 -3.243) (end 4.941 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.901 0.98) (end 4.901 3.272) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.901 -3.272) (end 4.901 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.861 0.98) (end 4.861 3.301) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.861 -3.301) (end 4.861 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.821 0.98) (end 4.821 3.329) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.821 -3.329) (end 4.821 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.781 0.98) (end 4.781 3.356) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.781 -3.356) (end 4.781 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.741 0.98) (end 4.741 3.383) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.741 -3.383) (end 4.741 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.701 0.98) (end 4.701 3.408) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.701 -3.408) (end 4.701 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.661 0.98) (end 4.661 3.434) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.661 -3.434) (end 4.661 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.621 0.98) (end 4.621 3.458) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.621 -3.458) (end 4.621 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.581 0.98) (end 4.581 3.482) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.581 -3.482) (end 4.581 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.541 0.98) (end 4.541 3.505) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.541 -3.505) (end 4.541 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.501 0.98) (end 4.501 3.528) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.501 -3.528) (end 4.501 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.461 0.98) (end 4.461 3.55) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.461 -3.55) (end 4.461 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.421 0.98) (end 4.421 3.572) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.421 -3.572) (end 4.421 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.381 0.98) (end 4.381 3.593) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.381 -3.593) (end 4.381 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.341 0.98) (end 4.341 3.613) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.341 -3.613) (end 4.341 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.301 0.98) (end 4.301 3.633) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.301 -3.633) (end 4.301 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.261 0.98) (end 4.261 3.652) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.261 -3.652) (end 4.261 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.221 0.98) (end 4.221 3.671) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.221 -3.671) (end 4.221 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.181 0.98) (end 4.181 3.69) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.181 -3.69) (end 4.181 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.141 0.98) (end 4.141 3.707) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.141 -3.707) (end 4.141 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.101 0.98) (end 4.101 3.725) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.101 -3.725) (end 4.101 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.061 0.98) (end 4.061 3.741) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.061 -3.741) (end 4.061 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.021 0.98) (end 4.021 3.758) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.021 -3.758) (end 4.021 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.981 -3.773) (end 3.981 3.773) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.941 -3.789) (end 3.941 3.789) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.901 -3.803) (end 3.901 3.803) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.861 -3.818) (end 3.861 3.818) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.821 -3.832) (end 3.821 3.832) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.781 -3.845) (end 3.781 3.845) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.741 -3.858) (end 3.741 3.858) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.701 -3.87) (end 3.701 3.87) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.661 -3.883) (end 3.661 3.883) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.621 -3.894) (end 3.621 3.894) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.581 -3.905) (end 3.581 3.905) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.541 -3.916) (end 3.541 3.916) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.501 -3.926) (end 3.501 3.926) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.461 -3.936) (end 3.461 3.936) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.421 -3.946) (end 3.421 3.946) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.381 -3.955) (end 3.381 3.955) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.341 -3.963) (end 3.341 3.963) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.301 -3.971) (end 3.301 3.971) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.261 -3.979) (end 3.261 3.979) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.221 -3.987) (end 3.221 3.987) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.18 -3.994) (end 3.18 3.994) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.14 -4) (end 3.14 4) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.1 -4.006) (end 3.1 4.006) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.06 -4.012) (end 3.06 4.012) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.02 -4.017) (end 3.02 4.017) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.98 -4.022) (end 2.98 4.022) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.94 -4.027) (end 2.94 4.027) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.9 -4.031) (end 2.9 4.031) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.86 -4.035) (end 2.86 4.035) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.82 -4.038) (end 2.82 4.038) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.78 -4.041) (end 2.78 4.041) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.74 -4.043) (end 2.74 4.043) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.7 -4.046) (end 2.7 4.046) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.66 -4.047) (end 2.66 4.047) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.62 -4.049) (end 2.62 4.049) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.58 -4.05) (end 2.58 4.05) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.54 -4.05) (end 2.54 4.05) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.5 -4.05) (end 2.5 4.05) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
- (fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
- (fp_circle (center 2.5 0) (end 6.5 0) (layer F.Fab) (width 0.1))
- (fp_arc (start 2.5 0) (end 6.416082 -1.18) (angle 33.5) (layer F.SilkS) (width 0.12))
- (fp_arc (start 2.5 0) (end -1.416082 1.18) (angle -146.5) (layer F.SilkS) (width 0.12))
- (fp_arc (start 2.5 0) (end -1.416082 -1.18) (angle 146.5) (layer F.SilkS) (width 0.12))
- (pad 2 thru_hole circle (at 5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 4 "Net-(C2-Pad2)"))
- (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 3 GND_ISO_2))
- (model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_D8.0mm_P5.00mm.wrl
- (at (xyz 0 0 0))
- (scale (xyz 1 1 1))
- (rotate (xyz 0 0 0))
- )
- )
- (module Capacitors_THT:CP_Radial_D8.0mm_P5.00mm (layer F.Cu) (tedit 597BC7C2) (tstamp 5B61FE87)
- (at 146.05 45.72 180)
- (descr "CP, Radial series, Radial, pin pitch=5.00mm, , diameter=8mm, Electrolytic Capacitor")
- (tags "CP Radial series Radial pin pitch 5.00mm diameter 8mm Electrolytic Capacitor")
- (path /59AEEFC6/59AEE01D)
- (fp_text reference C3 (at 2.5 -5.31 180) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value C (at 2.5 5.31 180) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_arc (start 2.5 0) (end -1.416082 -1.18) (angle 146.5) (layer F.SilkS) (width 0.12))
- (fp_arc (start 2.5 0) (end -1.416082 1.18) (angle -146.5) (layer F.SilkS) (width 0.12))
- (fp_arc (start 2.5 0) (end 6.416082 -1.18) (angle 33.5) (layer F.SilkS) (width 0.12))
- (fp_circle (center 2.5 0) (end 6.5 0) (layer F.Fab) (width 0.1))
- (fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
- (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
- (fp_line (start 2.5 -4.05) (end 2.5 4.05) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.54 -4.05) (end 2.54 4.05) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.58 -4.05) (end 2.58 4.05) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.62 -4.049) (end 2.62 4.049) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.66 -4.047) (end 2.66 4.047) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.7 -4.046) (end 2.7 4.046) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.74 -4.043) (end 2.74 4.043) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.78 -4.041) (end 2.78 4.041) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.82 -4.038) (end 2.82 4.038) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.86 -4.035) (end 2.86 4.035) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.9 -4.031) (end 2.9 4.031) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.94 -4.027) (end 2.94 4.027) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.98 -4.022) (end 2.98 4.022) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.02 -4.017) (end 3.02 4.017) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.06 -4.012) (end 3.06 4.012) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.1 -4.006) (end 3.1 4.006) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.14 -4) (end 3.14 4) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.18 -3.994) (end 3.18 3.994) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.221 -3.987) (end 3.221 3.987) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.261 -3.979) (end 3.261 3.979) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.301 -3.971) (end 3.301 3.971) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.341 -3.963) (end 3.341 3.963) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.381 -3.955) (end 3.381 3.955) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.421 -3.946) (end 3.421 3.946) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.461 -3.936) (end 3.461 3.936) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.501 -3.926) (end 3.501 3.926) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.541 -3.916) (end 3.541 3.916) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.581 -3.905) (end 3.581 3.905) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.621 -3.894) (end 3.621 3.894) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.661 -3.883) (end 3.661 3.883) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.701 -3.87) (end 3.701 3.87) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.741 -3.858) (end 3.741 3.858) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.781 -3.845) (end 3.781 3.845) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.821 -3.832) (end 3.821 3.832) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.861 -3.818) (end 3.861 3.818) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.901 -3.803) (end 3.901 3.803) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.941 -3.789) (end 3.941 3.789) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.981 -3.773) (end 3.981 3.773) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.021 -3.758) (end 4.021 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.021 0.98) (end 4.021 3.758) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.061 -3.741) (end 4.061 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.061 0.98) (end 4.061 3.741) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.101 -3.725) (end 4.101 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.101 0.98) (end 4.101 3.725) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.141 -3.707) (end 4.141 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.141 0.98) (end 4.141 3.707) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.181 -3.69) (end 4.181 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.181 0.98) (end 4.181 3.69) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.221 -3.671) (end 4.221 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.221 0.98) (end 4.221 3.671) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.261 -3.652) (end 4.261 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.261 0.98) (end 4.261 3.652) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.301 -3.633) (end 4.301 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.301 0.98) (end 4.301 3.633) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.341 -3.613) (end 4.341 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.341 0.98) (end 4.341 3.613) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.381 -3.593) (end 4.381 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.381 0.98) (end 4.381 3.593) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.421 -3.572) (end 4.421 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.421 0.98) (end 4.421 3.572) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.461 -3.55) (end 4.461 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.461 0.98) (end 4.461 3.55) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.501 -3.528) (end 4.501 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.501 0.98) (end 4.501 3.528) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.541 -3.505) (end 4.541 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.541 0.98) (end 4.541 3.505) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.581 -3.482) (end 4.581 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.581 0.98) (end 4.581 3.482) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.621 -3.458) (end 4.621 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.621 0.98) (end 4.621 3.458) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.661 -3.434) (end 4.661 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.661 0.98) (end 4.661 3.434) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.701 -3.408) (end 4.701 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.701 0.98) (end 4.701 3.408) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.741 -3.383) (end 4.741 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.741 0.98) (end 4.741 3.383) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.781 -3.356) (end 4.781 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.781 0.98) (end 4.781 3.356) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.821 -3.329) (end 4.821 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.821 0.98) (end 4.821 3.329) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.861 -3.301) (end 4.861 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.861 0.98) (end 4.861 3.301) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.901 -3.272) (end 4.901 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.901 0.98) (end 4.901 3.272) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.941 -3.243) (end 4.941 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.941 0.98) (end 4.941 3.243) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.981 -3.213) (end 4.981 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.981 0.98) (end 4.981 3.213) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.021 -3.182) (end 5.021 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.021 0.98) (end 5.021 3.182) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.061 -3.15) (end 5.061 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.061 0.98) (end 5.061 3.15) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.101 -3.118) (end 5.101 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.101 0.98) (end 5.101 3.118) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.141 -3.084) (end 5.141 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.141 0.98) (end 5.141 3.084) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.181 -3.05) (end 5.181 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.181 0.98) (end 5.181 3.05) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.221 -3.015) (end 5.221 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.221 0.98) (end 5.221 3.015) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.261 -2.979) (end 5.261 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.261 0.98) (end 5.261 2.979) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.301 -2.942) (end 5.301 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.301 0.98) (end 5.301 2.942) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.341 -2.904) (end 5.341 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.341 0.98) (end 5.341 2.904) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.381 -2.865) (end 5.381 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.381 0.98) (end 5.381 2.865) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.421 -2.824) (end 5.421 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.421 0.98) (end 5.421 2.824) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.461 -2.783) (end 5.461 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.461 0.98) (end 5.461 2.783) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.501 -2.74) (end 5.501 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.501 0.98) (end 5.501 2.74) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.541 -2.697) (end 5.541 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.541 0.98) (end 5.541 2.697) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.581 -2.652) (end 5.581 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.581 0.98) (end 5.581 2.652) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.621 -2.605) (end 5.621 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.621 0.98) (end 5.621 2.605) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.661 -2.557) (end 5.661 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.661 0.98) (end 5.661 2.557) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.701 -2.508) (end 5.701 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.701 0.98) (end 5.701 2.508) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.741 -2.457) (end 5.741 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.741 0.98) (end 5.741 2.457) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.781 -2.404) (end 5.781 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.781 0.98) (end 5.781 2.404) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.821 -2.349) (end 5.821 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.821 0.98) (end 5.821 2.349) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.861 -2.293) (end 5.861 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.861 0.98) (end 5.861 2.293) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.901 -2.234) (end 5.901 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.901 0.98) (end 5.901 2.234) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.941 -2.173) (end 5.941 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.941 0.98) (end 5.941 2.173) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.981 -2.109) (end 5.981 2.109) (layer F.SilkS) (width 0.12))
- (fp_line (start 6.021 -2.043) (end 6.021 2.043) (layer F.SilkS) (width 0.12))
- (fp_line (start 6.061 -1.974) (end 6.061 1.974) (layer F.SilkS) (width 0.12))
- (fp_line (start 6.101 -1.902) (end 6.101 1.902) (layer F.SilkS) (width 0.12))
- (fp_line (start 6.141 -1.826) (end 6.141 1.826) (layer F.SilkS) (width 0.12))
- (fp_line (start 6.181 -1.745) (end 6.181 1.745) (layer F.SilkS) (width 0.12))
- (fp_line (start 6.221 -1.66) (end 6.221 1.66) (layer F.SilkS) (width 0.12))
- (fp_line (start 6.261 -1.57) (end 6.261 1.57) (layer F.SilkS) (width 0.12))
- (fp_line (start 6.301 -1.473) (end 6.301 1.473) (layer F.SilkS) (width 0.12))
- (fp_line (start 6.341 -1.369) (end 6.341 1.369) (layer F.SilkS) (width 0.12))
- (fp_line (start 6.381 -1.254) (end 6.381 1.254) (layer F.SilkS) (width 0.12))
- (fp_line (start 6.421 -1.127) (end 6.421 1.127) (layer F.SilkS) (width 0.12))
- (fp_line (start 6.461 -0.983) (end 6.461 0.983) (layer F.SilkS) (width 0.12))
- (fp_line (start 6.501 -0.814) (end 6.501 0.814) (layer F.SilkS) (width 0.12))
- (fp_line (start 6.541 -0.598) (end 6.541 0.598) (layer F.SilkS) (width 0.12))
- (fp_line (start 6.581 -0.246) (end 6.581 0.246) (layer F.SilkS) (width 0.12))
- (fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.85 -4.35) (end -1.85 4.35) (layer F.CrtYd) (width 0.05))
- (fp_line (start -1.85 4.35) (end 6.85 4.35) (layer F.CrtYd) (width 0.05))
- (fp_line (start 6.85 4.35) (end 6.85 -4.35) (layer F.CrtYd) (width 0.05))
- (fp_line (start 6.85 -4.35) (end -1.85 -4.35) (layer F.CrtYd) (width 0.05))
- (fp_text user %R (at 2.5 0 180) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (pad 1 thru_hole rect (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 5 GND_ISO_3))
- (pad 2 thru_hole circle (at 5 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 6 "Net-(C3-Pad2)"))
- (model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_D8.0mm_P5.00mm.wrl
- (at (xyz 0 0 0))
- (scale (xyz 1 1 1))
- (rotate (xyz 0 0 0))
- )
- )
- (module Capacitors_THT:CP_Radial_D8.0mm_P5.00mm (layer F.Cu) (tedit 597BC7C2) (tstamp 5B61FF31)
- (at 168.91 135.89)
- (descr "CP, Radial series, Radial, pin pitch=5.00mm, , diameter=8mm, Electrolytic Capacitor")
- (tags "CP Radial series Radial pin pitch 5.00mm diameter 8mm Electrolytic Capacitor")
- (path /59AEEFCD/59AEE01D)
- (fp_text reference C4 (at 2.5 -5.31) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value C (at 2.5 5.31) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text user %R (at 2.5 0) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_line (start 6.85 -4.35) (end -1.85 -4.35) (layer F.CrtYd) (width 0.05))
- (fp_line (start 6.85 4.35) (end 6.85 -4.35) (layer F.CrtYd) (width 0.05))
- (fp_line (start -1.85 4.35) (end 6.85 4.35) (layer F.CrtYd) (width 0.05))
- (fp_line (start -1.85 -4.35) (end -1.85 4.35) (layer F.CrtYd) (width 0.05))
- (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
- (fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
- (fp_line (start 6.581 -0.246) (end 6.581 0.246) (layer F.SilkS) (width 0.12))
- (fp_line (start 6.541 -0.598) (end 6.541 0.598) (layer F.SilkS) (width 0.12))
- (fp_line (start 6.501 -0.814) (end 6.501 0.814) (layer F.SilkS) (width 0.12))
- (fp_line (start 6.461 -0.983) (end 6.461 0.983) (layer F.SilkS) (width 0.12))
- (fp_line (start 6.421 -1.127) (end 6.421 1.127) (layer F.SilkS) (width 0.12))
- (fp_line (start 6.381 -1.254) (end 6.381 1.254) (layer F.SilkS) (width 0.12))
- (fp_line (start 6.341 -1.369) (end 6.341 1.369) (layer F.SilkS) (width 0.12))
- (fp_line (start 6.301 -1.473) (end 6.301 1.473) (layer F.SilkS) (width 0.12))
- (fp_line (start 6.261 -1.57) (end 6.261 1.57) (layer F.SilkS) (width 0.12))
- (fp_line (start 6.221 -1.66) (end 6.221 1.66) (layer F.SilkS) (width 0.12))
- (fp_line (start 6.181 -1.745) (end 6.181 1.745) (layer F.SilkS) (width 0.12))
- (fp_line (start 6.141 -1.826) (end 6.141 1.826) (layer F.SilkS) (width 0.12))
- (fp_line (start 6.101 -1.902) (end 6.101 1.902) (layer F.SilkS) (width 0.12))
- (fp_line (start 6.061 -1.974) (end 6.061 1.974) (layer F.SilkS) (width 0.12))
- (fp_line (start 6.021 -2.043) (end 6.021 2.043) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.981 -2.109) (end 5.981 2.109) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.941 0.98) (end 5.941 2.173) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.941 -2.173) (end 5.941 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.901 0.98) (end 5.901 2.234) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.901 -2.234) (end 5.901 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.861 0.98) (end 5.861 2.293) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.861 -2.293) (end 5.861 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.821 0.98) (end 5.821 2.349) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.821 -2.349) (end 5.821 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.781 0.98) (end 5.781 2.404) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.781 -2.404) (end 5.781 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.741 0.98) (end 5.741 2.457) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.741 -2.457) (end 5.741 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.701 0.98) (end 5.701 2.508) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.701 -2.508) (end 5.701 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.661 0.98) (end 5.661 2.557) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.661 -2.557) (end 5.661 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.621 0.98) (end 5.621 2.605) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.621 -2.605) (end 5.621 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.581 0.98) (end 5.581 2.652) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.581 -2.652) (end 5.581 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.541 0.98) (end 5.541 2.697) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.541 -2.697) (end 5.541 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.501 0.98) (end 5.501 2.74) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.501 -2.74) (end 5.501 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.461 0.98) (end 5.461 2.783) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.461 -2.783) (end 5.461 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.421 0.98) (end 5.421 2.824) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.421 -2.824) (end 5.421 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.381 0.98) (end 5.381 2.865) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.381 -2.865) (end 5.381 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.341 0.98) (end 5.341 2.904) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.341 -2.904) (end 5.341 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.301 0.98) (end 5.301 2.942) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.301 -2.942) (end 5.301 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.261 0.98) (end 5.261 2.979) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.261 -2.979) (end 5.261 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.221 0.98) (end 5.221 3.015) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.221 -3.015) (end 5.221 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.181 0.98) (end 5.181 3.05) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.181 -3.05) (end 5.181 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.141 0.98) (end 5.141 3.084) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.141 -3.084) (end 5.141 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.101 0.98) (end 5.101 3.118) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.101 -3.118) (end 5.101 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.061 0.98) (end 5.061 3.15) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.061 -3.15) (end 5.061 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.021 0.98) (end 5.021 3.182) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.021 -3.182) (end 5.021 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.981 0.98) (end 4.981 3.213) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.981 -3.213) (end 4.981 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.941 0.98) (end 4.941 3.243) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.941 -3.243) (end 4.941 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.901 0.98) (end 4.901 3.272) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.901 -3.272) (end 4.901 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.861 0.98) (end 4.861 3.301) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.861 -3.301) (end 4.861 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.821 0.98) (end 4.821 3.329) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.821 -3.329) (end 4.821 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.781 0.98) (end 4.781 3.356) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.781 -3.356) (end 4.781 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.741 0.98) (end 4.741 3.383) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.741 -3.383) (end 4.741 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.701 0.98) (end 4.701 3.408) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.701 -3.408) (end 4.701 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.661 0.98) (end 4.661 3.434) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.661 -3.434) (end 4.661 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.621 0.98) (end 4.621 3.458) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.621 -3.458) (end 4.621 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.581 0.98) (end 4.581 3.482) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.581 -3.482) (end 4.581 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.541 0.98) (end 4.541 3.505) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.541 -3.505) (end 4.541 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.501 0.98) (end 4.501 3.528) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.501 -3.528) (end 4.501 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.461 0.98) (end 4.461 3.55) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.461 -3.55) (end 4.461 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.421 0.98) (end 4.421 3.572) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.421 -3.572) (end 4.421 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.381 0.98) (end 4.381 3.593) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.381 -3.593) (end 4.381 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.341 0.98) (end 4.341 3.613) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.341 -3.613) (end 4.341 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.301 0.98) (end 4.301 3.633) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.301 -3.633) (end 4.301 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.261 0.98) (end 4.261 3.652) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.261 -3.652) (end 4.261 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.221 0.98) (end 4.221 3.671) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.221 -3.671) (end 4.221 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.181 0.98) (end 4.181 3.69) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.181 -3.69) (end 4.181 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.141 0.98) (end 4.141 3.707) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.141 -3.707) (end 4.141 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.101 0.98) (end 4.101 3.725) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.101 -3.725) (end 4.101 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.061 0.98) (end 4.061 3.741) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.061 -3.741) (end 4.061 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.021 0.98) (end 4.021 3.758) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.021 -3.758) (end 4.021 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.981 -3.773) (end 3.981 3.773) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.941 -3.789) (end 3.941 3.789) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.901 -3.803) (end 3.901 3.803) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.861 -3.818) (end 3.861 3.818) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.821 -3.832) (end 3.821 3.832) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.781 -3.845) (end 3.781 3.845) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.741 -3.858) (end 3.741 3.858) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.701 -3.87) (end 3.701 3.87) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.661 -3.883) (end 3.661 3.883) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.621 -3.894) (end 3.621 3.894) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.581 -3.905) (end 3.581 3.905) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.541 -3.916) (end 3.541 3.916) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.501 -3.926) (end 3.501 3.926) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.461 -3.936) (end 3.461 3.936) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.421 -3.946) (end 3.421 3.946) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.381 -3.955) (end 3.381 3.955) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.341 -3.963) (end 3.341 3.963) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.301 -3.971) (end 3.301 3.971) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.261 -3.979) (end 3.261 3.979) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.221 -3.987) (end 3.221 3.987) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.18 -3.994) (end 3.18 3.994) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.14 -4) (end 3.14 4) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.1 -4.006) (end 3.1 4.006) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.06 -4.012) (end 3.06 4.012) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.02 -4.017) (end 3.02 4.017) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.98 -4.022) (end 2.98 4.022) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.94 -4.027) (end 2.94 4.027) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.9 -4.031) (end 2.9 4.031) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.86 -4.035) (end 2.86 4.035) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.82 -4.038) (end 2.82 4.038) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.78 -4.041) (end 2.78 4.041) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.74 -4.043) (end 2.74 4.043) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.7 -4.046) (end 2.7 4.046) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.66 -4.047) (end 2.66 4.047) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.62 -4.049) (end 2.62 4.049) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.58 -4.05) (end 2.58 4.05) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.54 -4.05) (end 2.54 4.05) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.5 -4.05) (end 2.5 4.05) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
- (fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
- (fp_circle (center 2.5 0) (end 6.5 0) (layer F.Fab) (width 0.1))
- (fp_arc (start 2.5 0) (end 6.416082 -1.18) (angle 33.5) (layer F.SilkS) (width 0.12))
- (fp_arc (start 2.5 0) (end -1.416082 1.18) (angle -146.5) (layer F.SilkS) (width 0.12))
- (fp_arc (start 2.5 0) (end -1.416082 -1.18) (angle 146.5) (layer F.SilkS) (width 0.12))
- (pad 2 thru_hole circle (at 5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 8 "Net-(C4-Pad2)"))
- (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 7 GND_ISO_4))
- (model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_D8.0mm_P5.00mm.wrl
- (at (xyz 0 0 0))
- (scale (xyz 1 1 1))
- (rotate (xyz 0 0 0))
- )
- )
- (gr_line (start 76.2 143.51) (end 76.2 136.26) (layer F.Mask) (width 4))
- (gr_line (start 142.24 143.51) (end 142.24 136.26) (layer F.Mask) (width 4))
- (gr_line (start 213.36 90.17) (end 172.72 90.17) (layer F.Mask) (width 10))
- (gr_line (start 35.56 90.17) (end 76.2 90.17) (layer F.Mask) (width 10))
- (gr_line (start 172.72 90.17) (end 172.72 45.72) (layer F.Mask) (width 10))
- (gr_line (start 172.72 38.1) (end 172.72 45.72) (layer F.Mask) (width 4))
- (gr_line (start 76.2 90.17) (end 76.2 134.99) (layer F.Mask) (width 10))
- (gr_line (start 142.24 90.17) (end 142.24 134.99) (layer F.Mask) (width 10))
- (gr_line (start 106.68 38.1) (end 106.68 45.72) (layer F.Mask) (width 4))
- (gr_line (start 76.2 90.17) (end 93.98 90.17) (layer F.Mask) (width 10))
- (gr_line (start 106.68 45.72) (end 106.68 90.17) (layer F.Mask) (width 10))
- (gr_line (start 93.98 90.17) (end 106.68 90.17) (layer F.Mask) (width 10))
- (gr_line (start 106.68 90.17) (end 142.24 90.17) (layer F.Mask) (width 10))
- (gr_line (start 142.24 90.17) (end 172.72 90.17) (layer F.Mask) (width 10))
- (gr_line (start 172.72 153.67) (end 172.72 151.160001) (layer F.Mask) (width 10))
- (gr_line (start 172.72 143.51) (end 172.72 151.160001) (layer F.Mask) (width 4))
- (gr_line (start 151.13 143.51) (end 163.83 143.51) (layer F.Mask) (width 10))
- (gr_line (start 151.13 143.51) (end 167.27 143.51) (layer F.Mask) (width 4))
- (gr_line (start 142.24 27.94) (end 142.24 30.449999) (layer F.Mask) (width 10))
- (gr_line (start 142.24 38.1) (end 142.24 30.449999) (layer F.Mask) (width 4))
- (gr_line (start 151.13 38.1) (end 163.83 38.1) (layer F.Mask) (width 10))
- (gr_line (start 151.13 38.1) (end 167.27 38.1) (layer F.Mask) (width 4))
- (gr_line (start 106.68 153.67) (end 106.68 151.160001) (layer F.Mask) (width 10))
- (gr_line (start 106.68 143.51) (end 106.68 151.160001) (layer F.Mask) (width 4))
- (gr_line (start 85.09 143.51) (end 97.79 143.51) (layer F.Mask) (width 10))
- (gr_line (start 85.09 143.51) (end 101.23 143.51) (layer F.Mask) (width 4))
- (gr_line (start 76.2 27.94) (end 76.2 29.349999) (layer F.Mask) (width 10))
- (gr_line (start 76.2 29.349999) (end 76.2 38.1) (layer F.Mask) (width 4))
- (gr_line (start 85.09 38.1) (end 97.79 38.1) (layer F.Mask) (width 10))
- (gr_line (start 85.09 38.1) (end 101.23 38.1) (layer F.Mask) (width 4))
- (gr_text "Release 0.3" (at 35.56 157.48) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.2)))
- )
- (dimension 152.5 (width 0.3) (layer Dwgs.User)
- (gr_text "152.500 mm" (at 124.25 148.35) (layer Dwgs.User)
- (effects (font (size 1.5 1.5) (thickness 0.3)))
- )
- (feature1 (pts (xy 200.5 141) (xy 200.5 149.7)))
- (feature2 (pts (xy 48 141) (xy 48 149.7)))
- (crossbar (pts (xy 48 147) (xy 200.5 147)))
- (arrow1a (pts (xy 200.5 147) (xy 199.373496 147.586421)))
- (arrow1b (pts (xy 200.5 147) (xy 199.373496 146.413579)))
- (arrow2a (pts (xy 48 147) (xy 49.126504 147.586421)))
- (arrow2b (pts (xy 48 147) (xy 49.126504 146.413579)))
- )
- (dimension 101.5 (width 0.3) (layer Dwgs.User)
- (gr_text "101.500 mm" (at 38.65 90.25 270) (layer Dwgs.User)
- (effects (font (size 1.5 1.5) (thickness 0.3)))
- )
- (feature1 (pts (xy 48 141) (xy 37.3 141)))
- (feature2 (pts (xy 48 39.5) (xy 37.3 39.5)))
- (crossbar (pts (xy 40 39.5) (xy 40 141)))
- (arrow1a (pts (xy 40 141) (xy 39.413579 139.873496)))
- (arrow1b (pts (xy 40 141) (xy 40.586421 139.873496)))
- (arrow2a (pts (xy 40 39.5) (xy 39.413579 40.626504)))
- (arrow2b (pts (xy 40 39.5) (xy 40.586421 40.626504)))
- )
- (dimension 68.58 (width 0.3) (layer Dwgs.User) (tstamp 5A172D78)
- (gr_text "68.580 mm" (at 76.28 93.98 270) (layer Dwgs.User) (tstamp 5A172D78)
- (effects (font (size 1.5 1.5) (thickness 0.3)))
- )
- (feature1 (pts (xy 67.31 128.27) (xy 77.63 128.27)))
- (feature2 (pts (xy 67.31 59.69) (xy 77.63 59.69)))
- (crossbar (pts (xy 74.93 59.69) (xy 74.93 128.27)))
- (arrow1a (pts (xy 74.93 128.27) (xy 74.343579 127.143496)))
- (arrow1b (pts (xy 74.93 128.27) (xy 75.516421 127.143496)))
- (arrow2a (pts (xy 74.93 59.69) (xy 74.343579 60.816504)))
- (arrow2b (pts (xy 74.93 59.69) (xy 75.516421 60.816504)))
- )
- (dimension 115.57 (width 0.3) (layer Dwgs.User)
- (gr_text "115.570 mm" (at 125.095 48.18) (layer Dwgs.User)
- (effects (font (size 1.5 1.5) (thickness 0.3)))
- )
- (feature1 (pts (xy 182.88 58.42) (xy 182.88 46.83)))
- (feature2 (pts (xy 67.31 58.42) (xy 67.31 46.83)))
- (crossbar (pts (xy 67.31 49.53) (xy 182.88 49.53)))
- (arrow1a (pts (xy 182.88 49.53) (xy 181.753496 50.116421)))
- (arrow1b (pts (xy 182.88 49.53) (xy 181.753496 48.943579)))
- (arrow2a (pts (xy 67.31 49.53) (xy 68.436504 50.116421)))
- (arrow2b (pts (xy 67.31 49.53) (xy 68.436504 48.943579)))
- )
- (dimension 68.58 (width 0.3) (layer Dwgs.User)
- (gr_text "68.580 mm" (at 196.928703 92.71 270) (layer Dwgs.User)
- (effects (font (size 1.5 1.5) (thickness 0.3)))
- )
- (feature1 (pts (xy 182.88 127) (xy 198.278703 127)))
- (feature2 (pts (xy 182.88 58.42) (xy 198.278703 58.42)))
- (crossbar (pts (xy 195.578703 58.42) (xy 195.578703 127)))
- (arrow1a (pts (xy 195.578703 127) (xy 194.992282 125.873496)))
- (arrow1b (pts (xy 195.578703 127) (xy 196.165124 125.873496)))
- (arrow2a (pts (xy 195.578703 58.42) (xy 194.992282 59.546504)))
- (arrow2b (pts (xy 195.578703 58.42) (xy 196.165124 59.546504)))
- )
- (gr_line (start 215.9 160.655) (end 220.98 160.655) (layer Edge.Cuts) (width 0.1))
- (gr_line (start 215.9 20.955) (end 220.98 20.955) (layer Edge.Cuts) (width 0.1))
- (dimension 139.7 (width 0.3) (layer Dwgs.User)
- (gr_text "139.700 mm" (at 16.43 90.17 270) (layer Dwgs.User)
- (effects (font (size 1.5 1.5) (thickness 0.3)))
- )
- (feature1 (pts (xy 27.94 160.02) (xy 15.08 160.02)))
- (feature2 (pts (xy 27.94 20.32) (xy 15.08 20.32)))
- (crossbar (pts (xy 17.78 20.32) (xy 17.78 160.02)))
- (arrow1a (pts (xy 17.78 160.02) (xy 17.193579 158.893496)))
- (arrow1b (pts (xy 17.78 160.02) (xy 18.366421 158.893496)))
- (arrow2a (pts (xy 17.78 20.32) (xy 17.193579 21.446504)))
- (arrow2b (pts (xy 17.78 20.32) (xy 18.366421 21.446504)))
- )
- (dimension 193.04 (width 0.3) (layer Dwgs.User)
- (gr_text "193.040 mm" (at 124.46 15.16) (layer Dwgs.User)
- (effects (font (size 1.5 1.5) (thickness 0.3)))
- )
- (feature1 (pts (xy 220.98 20.32) (xy 220.98 13.81)))
- (feature2 (pts (xy 27.94 20.32) (xy 27.94 13.81)))
- (crossbar (pts (xy 27.94 16.51) (xy 220.98 16.51)))
- (arrow1a (pts (xy 220.98 16.51) (xy 219.853496 17.096421)))
- (arrow1b (pts (xy 220.98 16.51) (xy 219.853496 15.923579)))
- (arrow2a (pts (xy 27.94 16.51) (xy 29.066504 17.096421)))
- (arrow2b (pts (xy 27.94 16.51) (xy 29.066504 15.923579)))
- )
- (dimension 104.14 (width 0.3) (layer Dwgs.User)
- (gr_text "104.140 mm" (at 191.85 90.17 270) (layer Dwgs.User)
- (effects (font (size 1.5 1.5) (thickness 0.3)))
- )
- (feature1 (pts (xy 177.8 142.24) (xy 193.2 142.24)))
- (feature2 (pts (xy 177.8 38.1) (xy 193.2 38.1)))
- (crossbar (pts (xy 190.5 38.1) (xy 190.5 142.24)))
- (arrow1a (pts (xy 190.5 142.24) (xy 189.913579 141.113496)))
- (arrow1b (pts (xy 190.5 142.24) (xy 191.086421 141.113496)))
- (arrow2a (pts (xy 190.5 38.1) (xy 189.913579 39.226504)))
- (arrow2b (pts (xy 190.5 38.1) (xy 191.086421 39.226504)))
- )
- (dimension 52.07 (width 0.3) (layer Dwgs.User)
- (gr_text "52.070 mm" (at 229.95 116.205 270) (layer Dwgs.User)
- (effects (font (size 1.5 1.5) (thickness 0.3)))
- )
- (feature1 (pts (xy 203.2 142.24) (xy 231.3 142.24)))
- (feature2 (pts (xy 203.2 90.17) (xy 231.3 90.17)))
- (crossbar (pts (xy 228.6 90.17) (xy 228.6 142.24)))
- (arrow1a (pts (xy 228.6 142.24) (xy 228.013579 141.113496)))
- (arrow1b (pts (xy 228.6 142.24) (xy 229.186421 141.113496)))
- (arrow2a (pts (xy 228.6 90.17) (xy 228.013579 91.296504)))
- (arrow2b (pts (xy 228.6 90.17) (xy 229.186421 91.296504)))
- )
- (dimension 52.07 (width 0.3) (layer Dwgs.User)
- (gr_text "52.070 mm" (at 229.95 64.135 90) (layer Dwgs.User)
- (effects (font (size 1.5 1.5) (thickness 0.3)))
- )
- (feature1 (pts (xy 203.2 38.1) (xy 231.3 38.1)))
- (feature2 (pts (xy 203.2 90.17) (xy 231.3 90.17)))
- (crossbar (pts (xy 228.6 90.17) (xy 228.6 38.1)))
- (arrow1a (pts (xy 228.6 38.1) (xy 229.186421 39.226504)))
- (arrow1b (pts (xy 228.6 38.1) (xy 228.013579 39.226504)))
- (arrow2a (pts (xy 228.6 90.17) (xy 229.186421 89.043496)))
- (arrow2b (pts (xy 228.6 90.17) (xy 228.013579 89.043496)))
- )
- (gr_line (start 220.98 158.115) (end 220.98 160.655) (layer Edge.Cuts) (width 0.1))
- (gr_line (start 27.94 158.115) (end 27.94 160.655) (layer Edge.Cuts) (width 0.1))
- (dimension 20.32 (width 0.3) (layer Dwgs.User) (tstamp 59AFCF6F)
- (gr_text "20.320 mm" (at 58.42 24.21) (layer Dwgs.User) (tstamp 59AFCF6F)
- (effects (font (size 1.5 1.5) (thickness 0.3)))
- )
- (feature1 (pts (xy 68.58 20.32) (xy 68.58 25.56)))
- (feature2 (pts (xy 48.26 20.32) (xy 48.26 25.56)))
- (crossbar (pts (xy 48.26 22.86) (xy 68.58 22.86)))
- (arrow1a (pts (xy 68.58 22.86) (xy 67.453496 23.446421)))
- (arrow1b (pts (xy 68.58 22.86) (xy 67.453496 22.273579)))
- (arrow2a (pts (xy 48.26 22.86) (xy 49.386504 23.446421)))
- (arrow2b (pts (xy 48.26 22.86) (xy 49.386504 22.273579)))
- )
- (dimension 20.32 (width 0.3) (layer Dwgs.User) (tstamp 59AFCF6D)
- (gr_text "20.320 mm" (at 190.59398 23.86964) (layer Dwgs.User) (tstamp 59AFCF6D)
- (effects (font (size 1.5 1.5) (thickness 0.3)))
- )
- (feature1 (pts (xy 200.75398 19.97964) (xy 200.75398 25.21964)))
- (feature2 (pts (xy 180.43398 19.97964) (xy 180.43398 25.21964)))
- (crossbar (pts (xy 180.43398 22.51964) (xy 200.75398 22.51964)))
- (arrow1a (pts (xy 200.75398 22.51964) (xy 199.627476 23.106061)))
- (arrow1b (pts (xy 200.75398 22.51964) (xy 199.627476 21.933219)))
- (arrow2a (pts (xy 180.43398 22.51964) (xy 181.560484 23.106061)))
- (arrow2b (pts (xy 180.43398 22.51964) (xy 181.560484 21.933219)))
- )
- (dimension 45.72 (width 0.3) (layer Dwgs.User) (tstamp 59AFCF63)
- (gr_text "45.720 mm" (at 124.46 158.83) (layer Dwgs.User) (tstamp 59AFCF63)
- (effects (font (size 1.5 1.5) (thickness 0.3)))
- )
- (feature1 (pts (xy 147.32 154.94) (xy 147.32 160.18)))
- (feature2 (pts (xy 101.6 154.94) (xy 101.6 160.18)))
- (crossbar (pts (xy 101.6 157.48) (xy 147.32 157.48)))
- (arrow1a (pts (xy 147.32 157.48) (xy 146.193496 158.066421)))
- (arrow1b (pts (xy 147.32 157.48) (xy 146.193496 156.893579)))
- (arrow2a (pts (xy 101.6 157.48) (xy 102.726504 158.066421)))
- (arrow2b (pts (xy 101.6 157.48) (xy 102.726504 156.893579)))
- )
- (dimension 20.32 (width 0.3) (layer Dwgs.User) (tstamp 59AFCB96)
- (gr_text "20.320 mm" (at 190.59398 155.94964) (layer Dwgs.User) (tstamp 59AFCB96)
- (effects (font (size 1.5 1.5) (thickness 0.3)))
- )
- (feature1 (pts (xy 200.75398 152.05964) (xy 200.75398 157.29964)))
- (feature2 (pts (xy 180.43398 152.05964) (xy 180.43398 157.29964)))
- (crossbar (pts (xy 180.43398 154.59964) (xy 200.75398 154.59964)))
- (arrow1a (pts (xy 200.75398 154.59964) (xy 199.627476 155.186061)))
- (arrow1b (pts (xy 200.75398 154.59964) (xy 199.627476 154.013219)))
- (arrow2a (pts (xy 180.43398 154.59964) (xy 181.560484 155.186061)))
- (arrow2b (pts (xy 180.43398 154.59964) (xy 181.560484 154.013219)))
- )
- (dimension 20.32 (width 0.3) (layer Dwgs.User)
- (gr_text "20.320 mm" (at 58.42 158.83) (layer Dwgs.User)
- (effects (font (size 1.5 1.5) (thickness 0.3)))
- )
- (feature1 (pts (xy 68.58 154.94) (xy 68.58 160.18)))
- (feature2 (pts (xy 48.26 154.94) (xy 48.26 160.18)))
- (crossbar (pts (xy 48.26 157.48) (xy 68.58 157.48)))
- (arrow1a (pts (xy 68.58 157.48) (xy 67.453496 158.066421)))
- (arrow1b (pts (xy 68.58 157.48) (xy 67.453496 156.893579)))
- (arrow2a (pts (xy 48.26 157.48) (xy 49.386504 158.066421)))
- (arrow2b (pts (xy 48.26 157.48) (xy 49.386504 156.893579)))
- )
- (gr_line (start 48.26 39.37) (end 48.26 142.24) (layer B.SilkS) (width 0.2))
- (gr_line (start 200.66 39.37) (end 48.26 39.37) (layer B.SilkS) (width 0.2))
- (gr_line (start 200.66 142.24) (end 200.66 39.37) (layer B.SilkS) (width 0.2))
- (gr_line (start 48.26 142.24) (end 200.66 142.24) (layer B.SilkS) (width 0.2))
- (gr_line (start 27.94 158.115) (end 27.94 20.955) (layer Edge.Cuts) (width 0.1))
- (gr_line (start 215.9 160.655) (end 27.94 160.655) (layer Edge.Cuts) (width 0.1))
- (gr_line (start 220.98 20.955) (end 220.98 158.115) (layer Edge.Cuts) (width 0.1))
- (gr_line (start 27.94 20.955) (end 215.9 20.955) (layer Edge.Cuts) (width 0.1))
- (gr_text "© Enertechnos Ltd. 2017" (at 121.92 119.38) (layer B.Cu) (tstamp 5A2E98E7)
- (effects (font (size 1 1) (thickness 0.25)) (justify mirror))
- )
- (gr_text "© Enertechnos Ltd. 2017" (at 121.92 118.11) (layer F.Cu) (tstamp 5A2E98DD)
- (effects (font (size 1 1) (thickness 0.25)))
- )
- (segment (start 85.09 38.1) (end 101.23 38.1) (width 4) (layer F.Cu) (net 1))
- (segment (start 81.65 38.1) (end 85.09 38.1) (width 4) (layer F.Cu) (net 1))
- (segment (start 81.698156 38.148156) (end 81.65 38.1) (width 2) (layer B.Cu) (net 1))
- (segment (start 85.09 38.1) (end 97.79 38.1) (width 10) (layer F.Cu) (net 1))
- (segment (start 81.65 45.35) (end 81.28 45.72) (width 2) (layer B.Cu) (net 1))
- (segment (start 81.65 38.1) (end 81.65 45.35) (width 2) (layer B.Cu) (net 1))
- (segment (start 91.36 51.99) (end 91.36 53.34) (width 2) (layer B.Cu) (net 1))
- (segment (start 81.28 45.72) (end 85.09 45.72) (width 2) (layer B.Cu) (net 1))
- (segment (start 85.09 45.72) (end 91.36 51.99) (width 2) (layer B.Cu) (net 1))
- (segment (start 76.2 29.349999) (end 76.2 38.1) (width 4) (layer F.Cu) (net 2))
- (segment (start 76.2 27.94) (end 76.2 29.349999) (width 10) (layer F.Cu) (net 2))
- (segment (start 76.2 45.64) (end 76.28 45.72) (width 2) (layer B.Cu) (net 2))
- (segment (start 76.2 38.1) (end 76.2 45.64) (width 2) (layer B.Cu) (net 2))
- (segment (start 85.09 143.51) (end 101.23 143.51) (width 4) (layer F.Cu) (net 3))
- (segment (start 81.65 143.51) (end 85.09 143.51) (width 4) (layer F.Cu) (net 3))
- (segment (start 85.09 143.51) (end 97.79 143.51) (width 10) (layer F.Cu) (net 3))
- (segment (start 91.52 129.54) (end 97.87 135.89) (width 2) (layer B.Cu) (net 3))
- (segment (start 102.87 141.87) (end 101.23 143.51) (width 2) (layer B.Cu) (net 3))
- (segment (start 102.87 135.89) (end 102.87 141.87) (width 2) (layer B.Cu) (net 3))
- (segment (start 102.87 135.89) (end 97.87 135.89) (width 2) (layer B.Cu) (net 3))
- (segment (start 106.68 143.51) (end 106.68 151.160001) (width 4) (layer F.Cu) (net 4))
- (segment (start 106.68 153.67) (end 106.68 151.160001) (width 10) (layer F.Cu) (net 4))
- (segment (start 106.68 137.08) (end 107.87 135.89) (width 2) (layer B.Cu) (net 4))
- (segment (start 106.68 143.51) (end 106.68 137.08) (width 2) (layer B.Cu) (net 4))
- (segment (start 151.13 38.1) (end 167.27 38.1) (width 4) (layer F.Cu) (net 5))
- (segment (start 147.69 38.1) (end 151.13 38.1) (width 4) (layer F.Cu) (net 5))
- (segment (start 151.13 38.1) (end 163.83 38.1) (width 10) (layer F.Cu) (net 5))
- (segment (start 147.69 44.08) (end 146.05 45.72) (width 2) (layer B.Cu) (net 5))
- (segment (start 147.69 38.1) (end 147.69 44.08) (width 2) (layer B.Cu) (net 5))
- (segment (start 157.4 53.26) (end 157.4 54.61) (width 2) (layer B.Cu) (net 5))
- (segment (start 146.05 45.72) (end 149.86 45.72) (width 2) (layer B.Cu) (net 5))
- (segment (start 149.86 45.72) (end 157.4 53.26) (width 2) (layer B.Cu) (net 5))
- (segment (start 142.24 38.1) (end 142.24 30.449999) (width 4) (layer F.Cu) (net 6))
- (segment (start 142.24 27.94) (end 142.24 30.449999) (width 10) (layer F.Cu) (net 6))
- (segment (start 142.24 44.53) (end 141.05 45.72) (width 2) (layer B.Cu) (net 6))
- (segment (start 142.24 38.1) (end 142.24 44.53) (width 2) (layer B.Cu) (net 6))
- (segment (start 151.13 143.51) (end 167.27 143.51) (width 4) (layer F.Cu) (net 7))
- (segment (start 147.69 143.51) (end 151.13 143.51) (width 4) (layer F.Cu) (net 7))
- (segment (start 151.13 143.51) (end 163.83 143.51) (width 10) (layer F.Cu) (net 7))
- (segment (start 167.68 143.1) (end 167.27 143.51) (width 2) (layer B.Cu) (net 7))
- (segment (start 163.91 135.89) (end 157.56 129.54) (width 2) (layer B.Cu) (net 7))
- (segment (start 168.91 135.89) (end 163.91 135.89) (width 2) (layer B.Cu) (net 7))
- (segment (start 168.91 141.87) (end 167.27 143.51) (width 2) (layer B.Cu) (net 7))
- (segment (start 168.91 135.89) (end 168.91 141.87) (width 2) (layer B.Cu) (net 7))
- (segment (start 172.72 143.51) (end 172.72 151.160001) (width 4) (layer F.Cu) (net 8))
- (segment (start 172.72 153.67) (end 172.72 151.160001) (width 10) (layer F.Cu) (net 8))
- (segment (start 173.91 142.32) (end 172.72 143.51) (width 2) (layer B.Cu) (net 8))
- (segment (start 173.91 135.89) (end 173.91 142.32) (width 2) (layer B.Cu) (net 8))
- (segment (start 142.24 90.17) (end 172.72 90.17) (width 10) (layer F.Cu) (net 9))
- (segment (start 106.68 90.17) (end 142.24 90.17) (width 10) (layer F.Cu) (net 9))
- (segment (start 93.98 90.17) (end 106.68 90.17) (width 10) (layer F.Cu) (net 9))
- (segment (start 106.68 45.72) (end 106.68 90.17) (width 10) (layer F.Cu) (net 9))
- (segment (start 76.2 90.17) (end 93.98 90.17) (width 10) (layer F.Cu) (net 9))
- (segment (start 106.68 38.1) (end 106.68 45.72) (width 4) (layer F.Cu) (net 9))
- (segment (start 142.24 90.17) (end 142.24 134.99) (width 10) (layer F.Cu) (net 9))
- (segment (start 76.2 90.17) (end 76.2 134.99) (width 10) (layer F.Cu) (net 9))
- (segment (start 172.72 38.1) (end 172.72 45.72) (width 4) (layer F.Cu) (net 9))
- (segment (start 172.72 90.17) (end 172.72 45.72) (width 10) (layer F.Cu) (net 9))
- (segment (start 35.56 90.17) (end 76.2 90.17) (width 10) (layer F.Cu) (net 9))
- (segment (start 213.36 90.17) (end 172.72 90.17) (width 10) (layer F.Cu) (net 9))
- (segment (start 142.24 143.51) (end 142.24 136.26) (width 4) (layer F.Cu) (net 9))
- (segment (start 76.2 143.51) (end 76.2 136.26) (width 4) (layer F.Cu) (net 9))
- (segment (start 65.670748 49.515536) (end 65.670748 45.705536) (width 2) (layer B.Cu) (net 10))
- (segment (start 82.55 53.34) (end 86.36 53.34) (width 2) (layer B.Cu) (net 10))
- (segment (start 78.74 49.53) (end 82.55 53.34) (width 2) (layer B.Cu) (net 10))
- (segment (start 65.670748 49.515536) (end 65.685212 49.53) (width 2) (layer B.Cu) (net 10))
- (segment (start 65.685212 49.53) (end 78.74 49.53) (width 2) (layer B.Cu) (net 10))
- (segment (start 111.76 125.73) (end 111.76 129.54) (width 2) (layer B.Cu) (net 11))
- (segment (start 111.76 129.54) (end 96.52 129.54) (width 2) (layer B.Cu) (net 11))
- (segment (start 137.16 50.8) (end 137.16 54.61) (width 2) (layer B.Cu) (net 12))
- (segment (start 152.4 54.61) (end 137.16 54.61) (width 2) (layer B.Cu) (net 12))
- (segment (start 184.15 133.35) (end 184.15 137.16) (width 2) (layer B.Cu) (net 13))
- (segment (start 181.25 133.35) (end 184.15 133.35) (width 2) (layer B.Cu) (net 13))
- (segment (start 176.53 133.35) (end 181.25 133.35) (width 2) (layer B.Cu) (net 13))
- (segment (start 162.56 129.54) (end 172.72 129.54) (width 2) (layer B.Cu) (net 13))
- (segment (start 172.72 129.54) (end 176.53 133.35) (width 2) (layer B.Cu) (net 13))
- (segment (start 58.050748 45.705536) (end 58.050748 49.515536) (width 2) (layer B.Cu) (net 18))
- (segment (start 119.38 125.73) (end 119.38 129.54) (width 2) (layer B.Cu) (net 19))
- (segment (start 129.54 50.8) (end 129.54 54.61) (width 2) (layer B.Cu) (net 20))
- (segment (start 191.77 137.16) (end 191.77 133.35) (width 2) (layer B.Cu) (net 21))
- (segment (start 65.670748 38.085536) (end 70.735536 38.085536) (width 2) (layer B.Cu) (net 22))
- (segment (start 70.735536 38.085536) (end 70.75 38.1) (width 2) (layer B.Cu) (net 22))
- (segment (start 65.670748 38.085536) (end 58.050748 38.085536) (width 2) (layer B.Cu) (net 22))
- (segment (start 70.75 38.1) (end 70.75 39.356284) (width 2) (layer B.Cu) (net 22))
- (segment (start 119.38 137.16) (end 111.76 137.16) (width 2) (layer B.Cu) (net 23))
- (segment (start 111.76 143.14) (end 112.13 143.51) (width 2) (layer B.Cu) (net 23))
- (segment (start 111.76 137.16) (end 111.76 143.14) (width 2) (layer B.Cu) (net 23))
- (segment (start 137.16 43.18) (end 129.54 43.18) (width 2) (layer B.Cu) (net 24))
- (segment (start 136.79 38.1) (end 136.79 38.47) (width 2) (layer B.Cu) (net 24))
- (segment (start 136.79 42.81) (end 137.16 43.18) (width 2) (layer B.Cu) (net 24))
- (segment (start 136.79 38.1) (end 136.79 42.81) (width 2) (layer B.Cu) (net 24))
- (segment (start 184.15 144.78) (end 191.77 144.78) (width 2) (layer B.Cu) (net 25))
- (segment (start 178.202389 143.477611) (end 178.17 143.51) (width 2) (layer B.Cu) (net 25))
- (segment (start 182.88 143.51) (end 184.15 144.78) (width 2) (layer B.Cu) (net 25))
- (segment (start 178.17 143.51) (end 182.88 143.51) (width 2) (layer B.Cu) (net 25))
- )
|