Generic Resistor
Controls
Properties
Availability & Pricing
Distributor | Qty 1 |
---|
Assets
id=SMD_2010_5025Metric
id=3DV_AXIAL-P2.54_D3.2
id=3DV_AXIAL-P5.08_D3.2
id=3DV_AXIAL-P5.08_D4.5
id=H_AXIAL-P20.32_D3.2
id=H_AXIAL-P25.4_D_3.2
id=3DH_AXIAL-P15.24_D3.2
id=3DSMD_MELF_MMB-0207
id=SMD_1218_3246Metric
id=SMD_MELF_MMB-0207
id=SMD_1210_3225Metric
id=3DSMD_0805_2012Metric
id=3DSMD_MiniMELF_MMA-0204
id=3DH_AXIAL-P25.4_D_3.2
id=3DV_AXIAL-P7.62_D3.6
id=SMD_0612_1632Metric
id=3DV_AXIAL-P5.08_D3.6
id=3DH_AXIAL-P7.62_D2.5
id=SMD_4020_10251Metric
id=V_AXIAL-P5.08_D3.2
id=V_AXIAL-P2.54_D2.5
id=V_AXIAL-P5.08_D2.5
id=SMD_01005_0402Metric
id=3DSMD_1218_3246Metric
id=3DH_AXIAL-P20.32_D3.2
id=SMD_0201_0603Metric
id=3DSMD_2010_5025Metric
id=H_AXIAL-P7.62_D2.5
id=fixed-resistor-us
id=3DSMD_1210_3225Metric
id=3DSMD_1812_4532Metric
id=V_AXIAL-P5.08_D4.5
id=SMD_2512_6332Metric
id=3DSMD_01005_0402Metric
id=3DV_AXIAL-P2.54_D2.5
id=3DH_AXIAL-P12.7_D3.2
id=SMD_MicroMELF_MMU-0102
id=SMD_0402_1005Metric
id=SMD_1812_4532Metric
id=SMD_0805_2012Metric
id=3DSMD_0201_0603Metric
id=3DSMD_1206_3216Metric
id=SMD_1020_2550Metric
id=3DV_AXIAL-P5.08_D2.5
id=3DSMD_2512_6332Metric
id=H_AXIAL-P12.7_D3.6
id=V_AXIAL-P7.62_D3.6
id=H_AXIAL-P10.16_D2.5
id=SMD_2816_7142Metric
id=H_AXIAL-P15.24_D3.2
id=3DSMD_0612_1632Metric
id=SMD_1206_3216Metric
id=3DH_AXIAL-P12.7_D3.6
id=3DSMD_4020_10251Metric
id=H_AXIAL-P12.7_D3.2
id=3DSMD_1020_2550Metric
id=3DSMD_0815_2038Metric
id=3DH_AXIAL-P10.16_D2.5
id=3DSMD_2816_7142Metric
id=3DSMD_MicroMELF_MMU-0102
id=V_AXIAL-P5.08_D3.6
id=3DSMD_0402_1005Metric
id=SMD_MiniMELF_MMA-0204
id=3DSMD_0603_1608Metric
id=SMD_0603_1608Metric
id=SMD_0815_2038Metric
id=generic-resistor-thumb
id=V_AXIAL-P2.54_D3.2
Simulation
Image
Conexiones en Flux: Conjunto para $L$Plaintext
A B C | | | ¯ ¯ ¯ | | | NOT NOT NOT NOT : Compuerta lógica NOT (inversor) A ¯ B ¯ C ¯ | | | --------|-------|-------------- | | AND 1 AND 1 AND 1 AND 1 : Compuerta lógica AND | | A ¯B | _ A C | _ B C ¯ | | | | | | |------------------------------------ | | OR OR : Compuerta lógica OR | | L | ------------------------------------------- | | | | | | A ¯ B | AND 2 | | _ | | _ : Compuertas | |_ | | | | |--------------------------------------------------- OR M Diagrama en limpio para tener una representación clara y ordenada de las compuertas lógicas:
Python
import matplotlib.pyplot as plt import networkx as nx def add_logic_gate(G, pos, gate_type, loc, gate_id): if gate_type == "AND": G.add_node(gate_id, label="&", shape="box", style='filled', fillcolor='lightgreen') elif gate_type == "OR": G.add_node(gate_id, label="≥1", shape="box", style='filled', fillcolor='lightblue') elif gate_type == "NOT": G.add_node(gate_id, label="1", shape="triangle", style='filled', fillcolor='lightyellow') pos[gate_id] = loc return gate_id G = nx.DiGraph() pos = {} # Inputs inputs = ['A', 'A_', 'B', 'B_', 'C', 'C_'] input_locs = [(0, 3), (0, 2.5), (0, 2), (0, 1.5), (0, 1), (0, 0.5)] for i, loc in zip(inputs, input_locs): G.add_node(i, label=i, shape="circle", style='filled', fillcolor='white') pos[i] = loc # AND gates for L and1 = add_logic_gate(G, pos, "AND", (2, 3), "AND1_L") and2 = add_logic_gate(G, pos, "AND", (2, 2), "AND2_L") and3 = add_logic_gate(G, pos, "AND", (2, 1), "AND3_L") # OR gate for L or1 = add_logic_gate(G, pos, "OR", (4, 2), "OR1_L") # Connections for L connections_L = [('A', and1), ('B_', and1), ('A_', and2), ('C', and2), ('B', and3), ('C_', and3), (and1, or1), (and2, or1), (and3, or1)] # AND gates for M and4 = add_logic_gate(G, pos, "AND", (2, -1), "AND1_M") and5 = add_logic_gate(G, pos, "AND", (2, -2), "AND2_M") and6 = add_logic_gate(G, pos, "AND", (2, -3), "AND3_M") # OR gate for M or2 = add_logic_gate(G, pos, "OR", (4, -2), "OR1_M") # Connections for M connections_M = [('A_', and4), ('B', and4), ('A', and5), ('C_', and5), ('B', and6), ('C_', and6), (and4, or2), (and5, or2), (and6, or2)] # Add edges/connections to the graph G.add_edges_from(connections_L + connections_M) # Nodes and edges attributes node_labels = nx.get_node_attributes(G, 'label') node_colors = [nx.get_node_attributes(G, 'fillcolor')[node] for node in G.nodes()] node_shapes = [nx.get_node_attributes(G, 'shape')[node] for node in G.nodes()] plt.figure(figsize=(10, 8)) nx.draw(G, pos, labels=node_labels, node_shape="o", node_color=node_colors, with_labels=True, node_size=3000, font_size=10, font_color="black") plt.title("Diagrama de Compuertas Lógicas para L y M") plt.show()
Image
R
(used to label resistors on schematics).SMD_0603_1608Metric
, which refers to the size of the Surface-Mount Device package for the resistor (a common small size used in surface-mount technology).P
for pin.Table
Parameter | Designator | Current MPN | Value | Package Code | Proposed MPN | Key Specifications | Notes |
---|---|---|---|---|---|---|---|
Resistor value | R1 | Generic | $1.0 \Omega$ | SMD_0603_1608Metric | Generic-E12 | $1.0 \Omega$, ±1% tolerance, ±100ppm/°C | Consolidated R1 |
Resistor value | R2 | Generic | $1.1 \Omega$ | SMD_0603_1608Metric | Generic-E12 | $1.1 \Omega$, ±1% tolerance, ±100ppm/°C | Consolidated R2 |
Resistor value | R3 | Generic | $1.2 \Omega$ | SMD_0603_1608Metric | Generic-E12 | $1.2 \Omega$, ±1% tolerance, ±100ppm/°C | Consolidated R3 |
Resistor value | R4 | Generic | $1.3 \Omega$ | SMD_0603_1608Metric | Generic-E12 | $1.3 \Omega$, ±1% tolerance, ±100ppm/°C | Consolidated R4 |
Resistor value | R5 | Generic | $1.5 \Omega$ | SMD_0603_1608Metric | Generic-E12 | $1.5 \Omega$, ±1% tolerance, ±100ppm/°C | Consolidated R5 |
Table
Parameter | Designator | Current MPN | Value | Package Code | Proposed MPN | Key Specifications | Notes |
---|---|---|---|---|---|---|---|
Resistor value | R6 | Generic | $10 \Omega$ | SMD_0603_1608Metric | Generic-E12 | $10 \Omega$, ±1% tolerance, ±100ppm/°C | Consolidated R6 |
Resistor value | R7 | Generic | $11 \Omega$ | SMD_0603_1608Metric | Generic-E12 | $11 \Omega$, ±1% tolerance, ±100ppm/°C | Consolidated R7 |
Resistor value | R8 | Generic | $12 \Omega$ | SMD_0603_1608Metric | Generic-E12 | $12 \Omega$, ±1% tolerance, ±100ppm/°C | Consolidated R8 |
Resistor value | R9 | Generic | $13 \Omega$ | SMD_0603_1608Metric | Generic-E12 | $13 \Omega$, ±1% tolerance, ±100ppm/°C | Consolidated R9 |
Resistor value | R10 | Generic | $15 \Omega$ | SMD_0603_1608Metric | Generic-E12 | $15 \Omega$, ±1% tolerance, ±100ppm/°C | Consolidated R10 |
Table
Parameter | Designator | Current MPN | Value | Package Code | Proposed MPN | Key Specifications | Notes |
---|---|---|---|---|---|---|---|
Resistor value | R11 | Generic | $100 \Omega$ | SMD_0603_1608Metric | Generic-E12 | $100 \Omega$, ±1% tolerance, ±100ppm/°C | Consolidated R11 |
Resistor value | R12 | Generic | $110 \Omega$ | SMD_0603_1608Metric | Generic-E12 | $110 \Omega$, ±1% tolerance, ±100ppm/°C | Consolidated R12 |
Resistor value | R13 | Generic | $120 \Omega$ | SMD_0603_1608Metric | Generic-E12 | $120 \Omega$, ±1% tolerance, ±100ppm/°C | Consolidated R13 |
Resistor value | R14 | Generic | $130 \Omega$ | SMD_0603_1608Metric | Generic-E12 | $130 \Omega$, ±1% tolerance, ±100ppm/°C | Consolidated R14 |
Resistor value | R15 | Generic | $150 \Omega$ | SMD_0603_1608Metric | Generic-E12 | $150 \Omega$, ±1% tolerance, ±100ppm/°C | Consolidated R15 |
Table
Designator | Value | Package Code | Current MPN | Proposed MPN | Key Specifications | Notes |
---|---|---|---|---|---|---|
R1 | $1.0 \Omega$ | SMD_0603_1608Metric | Generic | Generic-E12 | $1.0 \Omega$, ±1% tolerance, ±100ppm/°C | Consolidated R1 |
R2 | $1.1 \Omega$ | SMD_0603_1608Metric | Generic | Generic-E12 | $1.1 \Omega$, ±1% tolerance, ±100ppm/°C | Consolidated R2 |
R3 | $1.2 \Omega$ | SMD_0603_1608Metric | Generic | Generic-E12 | $1.2 \Omega$, ±1% tolerance, ±100ppm/°C | Consolidated R3 |
R4 | $1.3 \Omega$ | SMD_0603_1608Metric | Generic | Generic-E12 | $1.3 \Omega$, ±1% tolerance, ±100ppm/°C | Consolidated R4 |
R5 | $1.5 \Omega$ | SMD_0603_1608Metric | Generic | Generic-E12 | $1.5 \Omega$, ±1% tolerance, ±100ppm/°C | Consolidated R5 |
R6 | $10 \Omega$ | SMD_0603_1608Metric | Generic | Generic-E12 | $10 \Omega$, ±1% tolerance, ±100ppm/°C | Consolidated R6 |
R7 | $11 \Omega$ | SMD_0603_1608Metric | Generic | Generic-E12 | $11 \Omega$, ±1% tolerance, ±100ppm/°C | Consolidated R7 |
R8 | $12 \Omega$ | SMD_0603_1608Metric | Generic | Generic-E12 | $12 \Omega$, ±1% tolerance, ±100ppm/°C | Consolidated R8 |
R9 | $13 \Omega$ | SMD_0603_1608Metric | Generic | Generic-E12 | $13 \Omega$, ±1% tolerance, ±100ppm/°C | Consolidated R9 |
R10 | $15 \Omega$ | SMD_0603_1608Metric | Generic | Generic-E12 | $15 \Omega$, ±1% tolerance, ±100ppm/°C | Consolidated R10 |
R11 | $100 \Omega$ | SMD_0603_1608Metric | Generic | Generic-E12 | $100 \Omega$, ±1% tolerance, ±100ppm/°C | Consolidated R11 |
R12 | $110 \Omega$ | SMD_0603_1608Metric | Generic | Generic-E12 | $110 \Omega$, ±1% tolerance, ±100ppm/°C | Consolidated R12 |
R13 | $120 \Omega$ | SMD_0603_1608Metric | Generic | Generic-E12 | $120 \Omega$, ±1% tolerance, ±100ppm/°C | Consolidated R13 |
R14 | $130 \Omega$ | SMD_0603_1608Metric | Generic | Generic-E12 | $130 \Omega$, ±1% tolerance, ±100ppm/°C | Consolidated R14 |
R15 | $150 \Omega$ | SMD_0603_1608Metric | Generic | Generic-E12 | $150 \Omega$, ±1% tolerance, ±100ppm/°C | Consolidated R15 |
1
Image