Questions tagged [circuit-diagram]

A circuit diagram (also known as an electrical diagram, elementary diagram, or electronic schematic) is a simplified conventional graphical representation of an electrical circuit.

Circuit diagrams are pictures with symbols that have differed from country to country and have changed over time, but are now to a large extent internationally standardized. Simple components often had symbols intended to represent some feature of the physical construction of the device.

Common schematic diagram symbols (US symbols)

enter image description here

Sample Diagram:

**enter image description here**

63 questions
0
votes
0 answers

Circuit tracing in Access

Im trying to build a database of equipment in Access, and I need to trace circuit nodes downstream. The first table shows what is downstream from what. Column C is downstream from Column B, which is downstream from Column A, etc. I need a Column D…
0
votes
1 answer

LMFIT - Creating models for working with electrical circuit models

I have an analytical model of an electrical circuit, the output of which is a transfer function in the s-domain, I am using LMFIT to fit the values of the components of the circuit to get the resulting TF to best fit a measured data-set. I want to…
Vinzent
  • 1,070
  • 1
  • 9
  • 14
0
votes
1 answer

How to draw a schematic using SchemDraw without using Jupyter Notebook?

The code example below runs without error, but nothing is displayed to the screen. Here's the code example that I'm trying to use... import SchemDraw import SchemDraw.elements as elm d = SchemDraw.Drawing() R1 =…
Francis Cugler
  • 7,788
  • 2
  • 28
  • 59
0
votes
3 answers

Writing an expression using only NAND, OR, XNOR

I have a 2-1 mux and I'm trying to write z = s'd0 + sd1 using only NAND, XNOR, and OR gates (not necessarily all of them). I tried simplifying it and what I ended up with is z = NAND(NAND(s', d0), NAND(s, d1)), but I can't use NOT ('), so is there a…
Mary Tim
  • 23
  • 6
0
votes
2 answers

What does this quantum circult represent? Please describe what is happening in this circuit

Circuit Diagram Result I am new to Quantum computing and having a really tough time understanding the working of Quantum Logic Gates. So, can anybody please help me with what these gates in the diagram actually do and what this circuit is doing and…
0
votes
1 answer

How can I detect the press of three switches by an interrupt service routine connected to just one interrupt pin

Lately, I tried to use my Arduino Uno (AtMega328) board to detect the press of a series of three switches by an interrupt service routine. If have three switches for called R, G and B. Whenever,at least one of these switches is pressed once a…
Aleph0
  • 5,816
  • 4
  • 29
  • 80
0
votes
1 answer

How to draw an electrical circuit with node numbers in python?

I have a program that's need a method for ploting an electrical circuit with node numbers(netlist). It's example of netlist: number 1 net list: number 1 net list: R1 1 2 4 R2 2 0 4 R3 2 0 4 I1 1 0 2 number 2 net list: V1 1 0 10 R1 2 1 2 R2 2 0…
N.Sh
  • 37
  • 9
0
votes
2 answers

curve fitting equations python

I am trying to fit data with an admittance equation for an rlc circuit having 6 components. I am following an example given he[fit]1re and inserted my equation. The equation is the real part of admittance for the 6 component circuit simplified using…
Susu
  • 9
  • 3
0
votes
1 answer

How to connect a relay in such a way that both wall switch and relay are functional?

I am trying my hands on home-automation using Arduino and a relay module. I'm trying to connect a light to the relay. The light is connected to the wall switch in the following manner: Now I want to control the same light using my relay. To do so I…
0
votes
0 answers

First set of neopixels not working on Arduino Sketch

I need to build an neopixel display on my Arduino for a project, utilizing multiple neopixel strips. My first step is to get these neopixel strips working on circuits.io. In circuits.io, they only have single ones that you can string together. I…
jmsheldon
  • 13
  • 3
0
votes
2 answers

How can I design a 2-1 multiplexer with enable using only NAND gates?

So, I manage to design something but I need confirmation and my real question is the following: How can I design 4-1 multiplexer using 2 multiplexers designed as in the title of the question (using only NANDs) plus as many NOR gates as I need? To…
hack-is-art
  • 325
  • 5
  • 20
0
votes
1 answer

Combinational Circuit to detect the largest of three inputs

Using combinational circuits, such as AND and OR, including MUX's and Decoders, how do you design a circuit that has 3 8bit inputs with the output as the largest of the 3 inputs? ||...|| ||...|| ||...|| <-…
jimbob
  • 461
  • 2
  • 8
  • 17
0
votes
1 answer

BitSet Circuit in Verilog

A specific type of bit-level manipulation consists in setting or clearing one single bit in a multi-bit value, given its index and its new value. This operation can be implemented in hardware by a BitSet circuit with the following interface: Input…
dms94
  • 32
  • 1
  • 1
  • 6
0
votes
1 answer

Designing a System Timer(Porgrammable Logic Timer)

System timer Computers contain a timer containing programmable channels. Programmable channels mean timers of different durations. How to design such a circuit with four programmable channels, each disabled initially. An enable input, two channel…
Nauman Shakir
  • 135
  • 1
  • 3
  • 15
0
votes
1 answer

How to simulate digital logic circuits with feedback loops?

I learning how to simulate digital logic circuits . I am presenting the source code of my first attempt here. It is small program for simulating circuits consisting of AND,OR and NOT gates. This code works well for circuits without loops. When…
manoj mj
  • 47
  • 6