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
6
votes
2 answers

Difference between D Latch Schematic and D Flip Flop Schematic

I heard that the main difference between latch and flip flops is that latches are asynchronous while flip flops are edge triggered which makes sense. But when I check out their shematic they seem pretty much same. Here is the design of a dlatch from…
Crazy_Boy53
  • 241
  • 2
  • 4
  • 10
4
votes
1 answer

Implementation of Nor Flip Flop Logic Gates in Go

I'm trying to implement the following nor flip flop circuit logic in Go and having some difficulty with variable declarations: My goal is to simulate the logic gates and circuitry as it would physically work. I've implemented a function for the nor…
RogueKnight
  • 113
  • 7
3
votes
1 answer

Circuitmaker - define board size manually

Been testing out Circuitmaker for a few days now. Since I am a forme EAGLE user, I have quite a hard time figuring certain basic functions out. The most important one to me is the board size definition. Is it possible to define the board size just…
3
votes
3 answers

How to read multiple Analog sensor

I am using Arduino UNO board. I have 24 analog channel which gives me 0~5v analog out put. Now my problem is I have only 5 analog channel. I wanted to read value from each channel for every 2 min and then switch to other channel. Can anyone suggest…
AMPS
  • 319
  • 3
  • 11
3
votes
3 answers

How to convert (abc) to a NAND gate?

Using DeMorgans I get: ~~(abc) // ~ is the not. My problem is when I try to build the circuit the NAND gate takes only 2 inputs. So how would I split it for 3? If it was an AND gate I would just use two and the equation would be: (a AND b) AND…
2
votes
1 answer

How to find number of inputs for logic truth tables?

I'm a beginner to logic circuits and I'm trying to construct a truth table for a LED dice circuit. I've got 7 outputs in my table, 1 for each LED, but I can't figure out how many inputs I need. I've been told that the formula below gives the number…
MendelumS
  • 91
  • 1
  • 8
2
votes
1 answer

Logic-based light system

I need to develop a system that turns on the red light when all three switches are off, and turns on the orange light when any two out of three switches are off. The red light part is already sorted with a simple NOR gate. I'm having trouble with…
4u53r
  • 717
  • 1
  • 7
  • 17
2
votes
1 answer

Disconnect USB using software controlled relays?

For debugging and testing an android device that connects to a custom USB peripheral, we'd like a software controlled way to unplug and replug the USB. It looks like USB cables have 4 wires so I'm thinking if the specific device I need doesn't exist…
eagspoo
  • 2,095
  • 3
  • 22
  • 31
2
votes
1 answer

How to left-align a node in Graphviz?

I am trying to display digital circuit netlist with graphviz. I am resorting to : record shapes to represent input/output ports. rankdir=LR to suggest a left to right alignment The following code works fine. However, during layout, some inputs…
JCLL
  • 5,379
  • 5
  • 44
  • 64
2
votes
2 answers

How to convert a 3 input AND gate into a NOR gate?

I know that I can say convert a 2-input AND gate into a NOR gate by simply inverting the two inputs because of DeMorgan's Theorem. But how would you do the equivalent on a 3-input AND gate? Say... ____ A___| \ B___| )___ C___|____…
aSilveira
  • 79
  • 2
  • 10
2
votes
1 answer

Race conditions

I'm currently stuck trying to understand two things related to race conditions. Issue 1: I have been presented with the following question: We consider the digital circuit and the value of its inputs a, and b as given below. For all logic gates, we…
methuselah
  • 12,766
  • 47
  • 165
  • 315
1
vote
1 answer

How can I compute the corner point for connecting two circuit components?

I have a source component and a target component and I want to calculate the corner point where they will be connected. I am implementing a method that takes the source and target points and their orientations (either horizontal or vertical) as…
Abdo21
  • 498
  • 4
  • 14
1
vote
1 answer

Smooth connection of resistor to surrounding lines with circuitikz

I am using circuitikz to draw a small circuit as shown here, but the resistor R1 is not smoothly connected to the surounding lines. The code used to generate this plot is \documentclass[border=1mm]{standalone} \usepackage{amsmath, amssymb,…
aheuchamps
  • 77
  • 2
  • 9
1
vote
3 answers

Graph databases for modeling specific domain

With a normal 'graph database' the data is broken up into nodes and edges, and there isn't much of a restriction/schema between the connections. With this, it seems great for modeling straightforward graphs where the relationships are relatively…
David542
  • 104,438
  • 178
  • 489
  • 842
1
vote
2 answers

Error in the parallel connection of voltage generators (cells)

I am having the following errors during the simulation of the model in the picture (the blocks cell, cell1, and cell2 contains the electrochemical model of a battery cell, by the way also trying to change these blocks with the built-in…
1
2 3 4 5