3

I got a screw terminal with the following pin configuration:

X1
+-------------+
| (X) (X) (X) |       1 = 24V    2 = SIGNAL    3 = 0V
|  |   |   |  |
+--|---|---|--+
   1   2   3

My "requirements":

  • Convert 24V SIGNAL to 12V logic
  • Add bypass capacitor for supply

At the moment my schematic looks like this:

Example schematic

I need the design as compact as possible but I don't want to confuse myself in future.

What do you think: is the above schematic easy understandable or is it already too complex? And what is commonly more important in a schematic: simplicity or sheet "space"?

Marco
  • 947
  • 1
  • 8
  • 21
  • 2
    Looks perfectly fine to me. – Dzarda Jun 09 '15 at 15:42
  • You can add a layer for notes to the schematic. Just use it to write some comments to yourself in the future. We do it with code, there is no reason not to do it with schematics too. – Samuel Jun 09 '15 at 16:31

2 Answers2

6

As drawn, there's no doubt about how things connect.
If you'd like to make it more obvious what is going on then I'd draw one of these two ways:

schematic

simulate this circuit – Schematic created using CircuitLab

Electrically, it is the same. From looking, though, it is obvious that you have a voltage divider on the Signal line and that your capacitor does nothing but bypass the 24Volts.

The second is a little more compact, but the divider is still obvious.

In the end, it usually comes down to how much room you have to fiddle with when drawing your diagram. Sometimes you have to squeeze something in, then you place the parts where they'll fit. But, in general try to follow conventions when placing parts in the diagram as it makes it that much easier to read for the next guy (who may be you in a couple of years.)

Clarity is the deciding factor. The clearer, the better. Sometimes this even means using less space on the diagram by logically grouping things instead of having connections run every which way.

JRE
  • 67,678
  • 8
  • 104
  • 179
4

The schematic you show is just fine.

In general, more sheets is only a minor concern, and certainly way down the priority list relative to clarity. In fact, breaking schematics into multiple sheets can help in the same way we break down a long narrative into paragraphs. You can then label each sheet with the particular section of the circuit it shows, like the power supply, main controller, RS-232 interface, motor driver H bridge, etc.

I go into more detail on good schematic practices at https://electronics.stackexchange.com/a/28255/4512.

Olin Lathrop
  • 310,974
  • 36
  • 428
  • 915
  • 1
    Just want to thank you for the link Olin. Good stuff! I just had to share it on a couple of electronics forums I'm a member of. Don't worry, I mentioned your name =) – DerStrom8 Jun 09 '15 at 17:59