// // NopSCADlib Copyright Chris Palmer 2020 // nop.head@gmail.com // hydraraptor.blogspot.com // // This file is part of NopSCADlib. // // NopSCADlib is free software: you can redistribute it and/or modify it under the terms of the // GNU General Public License as published by the Free Software Foundation, either version 3 of // the License, or (at your option) any later version. // // NopSCADlib is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; // without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. // See the GNU General Public License for more details. // // You should have received a copy of the GNU General Public License along with NopSCADlib. // If not, see . // // //! SMD components // LED0603 = ["LED0603", [1.6, 0.8, 0.18], [1.0, 0.8, 0.42]]; LED0805 = ["LED0805", [2.0, 1.25, 0.46], [1.4, 1.25, 0.54]]; LED1206 = ["LED1206", [3.2, 1.6, 0.5], [2.0, 1.6, .6]]; smd_leds = [LED0603, LED0805, LED1206]; RES0603 = ["RES0603", [1.6, 0.8, 0.45], 0.3, 1/10]; RES0805 = ["RES0805", [2.0, 1.2, 0.45], 0.4, 1/8]; RES1206 = ["RES1206", [3.1, 1.6, 0.6], 0.5, 1/4]; smd_resistors = [RES0603, RES0805, RES1206]; CAP0603 = ["CAP0603", [1.6, 0.8], 0.3]; CAP0805 = ["CAP0805", [2.0, 1.2], 0.4]; CAP1206 = ["CAP1206", [3.1, 1.6], 0.5]; smd_capacitors = [CAP0603, CAP0805, CAP1206]; SOT23 = ["SOT23", [3, 1.4, 1.0], 0.05, 0.66, 1.9, 2.6, [0.4, 0.45, 0.15], 0.4]; SOT223 = ["SOT223", [6.5, 3.5, 1.6], 0.05, 0.89, 2.3, 7.0, [0.7, 0.95, 0.25], 3]; smd_sots = [SOT23, SOT223]; SOIC8 = ["SOIC8", [4.90, 3.90, 1.25], 0.10, 0.66, 1.27, 6.00, [0.31, .50, 0.20]]; SOIC16 = ["SOIC16", [9.90, 3.90, 1.25], 0.10, 0.66, 1.27, 6.00, [0.31, .50, 0.20]]; SOIC18 = ["SOIC18", [11.40, 7.50, 2.00], 0.10, 1.20, 1.27, 10.30, [0.31, .50, 0.20]]; smd_soics = [SOIC8, SOIC16, SOIC18]; use