How to calculate voltage on a multi-powered DC circuit where all ends go to ground

dcintegrated-circuitohms-lawresistancevoltage

enter image description here

I'm writing software that will calculate the correct voltage on each component, given the state that the DC system is currently in (ex. what power sources are on, what relays are open, fuses popped, etc.).

As I begin to learn about the differences in calculating voltage between series circuits, and parallel circuits, I've yet to find an example where the output of a power source doesn't lead back into the same source. In my case, they all go to ground. If this is a compound circuit (both series and parallel), I would have to use Kirchhoff's circuit laws to solve it.

I am having difficulties understanding the voltage flow, because I have no numbers to go by. Everything will have a resistance, and I'll know the voltages of the batteries/generators, but I have nothing to confirm my assumptions about how voltage will split and degrade, and what will happen when multiple power sources are on.

So, What kind of circuit is this?
Series? Parallel? Compound?

There is a split at the Battery Bus, but due to the diodes,
there will never be a complete loop back to where they split.
I suppose I may need to run the following equation on the three fuses after the battery bus?

When resistors are in parallel:
Rtotal = 1/(1/R1 + 1/R2 + 1/R3 ... + 1/Rn)

and run the series calculation for the rest of them to understand the voltage split at the battery bus?

When resistors are in series:
Rtotal = R1 + R2 + R3 ... + Rn

Same idea with the fuses on the Main buses in the distribution boxes?

How is voltage affected when multiple power sources are on?
I'm not really sure how to handle the calculations when say, both generators are on, and the battery is on:

enter image description here
Does the voltage combine? Does this highest voltage win?

Could someone explain the flow of voltage through this system and how one would be able to calculate it based on the resistance?

Currently I am running a depth first algorithm from each active power source and collecting all paths that go to ground. I then calculate the total resistance of each one of these paths, and then use Ohms law to give each one of them a voltage. I am under the impression that this would only give correct results if the paths were all in series, and I'm not sure that is the case, as there are multiple splits everywhere a fuse appears.

Best Answer

A side-note: voltage does not flow. Voltage is the difference in potentials. Current is what flows.

According to Kichhoff's voltage law, all circuits connected in parallel must have the same voltage across them. That means, if you connect two voltage sources, their voltages WILL get to be the same. If originally they have different voltages, then enough current will start flowing so that the voltage drop across the wire & internal resistances of the power sources will make up for this difference, and that may easily destroy one or both of the power sources. Having a diode in series would let you solve this issue without the destruction of the power sources...

Related Topic