Python Forum
Power phase question.
Thread Rating:
  • 1 Vote(s) - 1 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Power phase question.
#5
Our 3~ AC Powersupply looks like this:

def plot_sine(Ueff):
    max_voltage = Ueff * math.sqrt(2)
    x = np.linspace(0, np.pi * 2, 3600)
    x_time = np.linspace(0, 1/50, 3600)
    plt.xlabel('Time in ms')
    plt.ylabel('Voltage in V')
    plt.title('Time vs Voltage at 50Hz 3~AC')
    for n in range(3):
        roll = -(3600 // 3)
        y = np.sin(np.roll(x, -n*roll))
        y *= max_voltage
        plt.plot(x_time, y)
    plt.legend([f'Phase {p+1}' for p in range(3)])
    plt.show()
Result:    


The DC (direct current) Power supply don't have a phase.
If you draw them in a plot, you'll have straight lines.

If you measure the power against +12V and +5V, you've a difference of 7V.
Usually the devices are connected to one power lane and ground.
Each lane has the reference potential to 0V (ground).

If you compare this to our 400V 3~ net, the earth and neutral conductor is the reference ground.
The difference is, that it's alternate current and the 3 phases are shifted by 120°.

400V is Ueff, the effective voltage. The maximum peak is Ueff * math.sqrt(2).
To calculate Ueff to neutral conductor: Ueff / math.sqrt(3)

If you go further and add capacitive/inductive load, voltage and current have also a difference in phase.
At the end you'll see in a plot negative and positive power. It's used for example to feed power back to the net.
In industry you don't want to have blind power. They compensate the inductive part with big capacitors.
Almost dead, but too lazy to die: https://sourceserver.info
All humans together. We don't need politicians!
Reply


Messages In This Thread
Power phase question. - by Sleeper - Sep-02-2018, 08:29 PM
RE: Power phase question. - by buran - Sep-02-2018, 09:23 PM
RE: Power phase question. - by Larz60+ - Sep-02-2018, 09:29 PM
RE: Power phase question. - by Sleeper - Sep-03-2018, 02:33 AM
RE: Power phase question. - by DeaD_EyE - Sep-03-2018, 10:00 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  EVGA Power Suppiles on Sale Larz60+ 0 1,984 Oct-30-2018, 02:19 PM
Last Post: Larz60+
  Snow storm over - power back on Larz60+ 4 3,223 Mar-12-2018, 12:15 AM
Last Post: Skaperen
  power of 2 Skaperen 8 20,837 Mar-14-2017, 01:56 PM
Last Post: Ofnuts

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020