mirror of
https://github.com/uw-midsun/hardware.git
synced 2025-01-10 07:14:46 +00:00
1c21ff5b89
* ELEC-293 - Created project, schematic files - Added DCDC schematic and supplier link - Added draft of DC-DC footprint * MSXII DC-DC Converter Rev 1.0 - Created basic schematic for Vicor DCDC - Added necessary parts to the library with 3D models Schematic Library + DCDC Vicor 150V-12V 250W + RES 75R 1/10W 1% 0603 + XFMR PR BUS + CAP 4700PF 400VAC Y5V RADIAL + FUSE 5A 125VAC/400VDC RADIAL - Changed LED RED 0603 symbol to be red - Changed LED GREEN 0603 symbol to be green PCB Library + DCDC Vicor 150V-12V 250W + XFMR PR BUS + CAP 4700PF 400VAC Y5V RADIAL + FUSE 5A 125VAC/400VDC RADIAL * ELEC-293 DC-DC Schematic - Added NTC THERMISTOR 10K 1% BEAD to schematic and PCB library - Added thermistor to schematic TODO: - Layout * ELEC-293 DC-DC Schematic & PCB Layout - Created preliminary layout - TODO: add text and fix silkscreen Library: - Modified DCDC 150V-12V to have correct body pins * ELEC-293 DC-DC Rev 1.1 - Added silkscreen for connectors - Tented all vias - updated sheet numbering * ELEC-293 DC-DC Rev 1.2 - Added 0.1uF decoupling on 3V LDO from power distribution - Added graphics - Checked for DRCs - Removed pad on DCDC VICOR 150W 12V... * - Generated fab files and added Outjob file * updated outjob * Merged libraries with master
19 lines
943 B
Python
19 lines
943 B
Python
designFile = "C:/Users/Taiping/Documents/MidnightSun/hardware/MSXII_DC-DC_Converter/PDNAnalyzer_Output/MSXII_DC-DC_Converter.tgz"
|
|
powerNets = ["NetC2_2"]
|
|
groundNets = ["GND"]
|
|
excitation = [["NetC2_2", "U1", "9", "GND", "12", ""],
|
|
["NetC2_2", "P1", "2", "GND", "", "10.5"],
|
|
["NetC2_2", "P1", "3", "GND", "", "10.5"]]
|
|
# Resistors / Inductors
|
|
passives = {}
|
|
# Material Properties:
|
|
tech = [
|
|
{'name': 'TOP_SOLDER', 'DielectricConstant': 3.5, 'Thickness': 1.016E-05},
|
|
{'name': 'TOP_LAYER', 'Conductivity': 47000000, 'Thickness': 3.556E-05},
|
|
{'name': 'SUBSTRATE-_1', 'DielectricConstant': 4.8, 'Thickness': 0.00032004},
|
|
{'name': 'BOTTOM_LAYER', 'Conductivity': 47000000, 'Thickness': 3.556E-05},
|
|
{'name': 'BOTTOM_SOLDER', 'DielectricConstant': 3.5, 'Thickness': 1.016E-05}
|
|
]
|
|
special_settings = {'removecutoutsize' : 7.8 }
|
|
plating_thickness = 0.7
|
|
finished_hole_diameters = True |