Pengantar Teknik Elektro

84 downloads 2129 Views 455KB Size Report
Pengantar Teknik. Elektro. Kuliah 2 : Basic Electrical. Quantities. Page 2. Why Are There Three. Conductors in Power. Transmissions Lines? ○ Most AC power  ...
Pengantar Teknik Elektro Kuliah 2 : Basic Electrical Quantities

From the last week ...

Why Are There Three Conductors in Power Transmissions Lines? z

z

Most AC power transmission systems have three conductors. The voltage on each phase (referenced with respect to earth ground) is a sinusoid with a phase difference of 120° from the voltages in the other two phases.

From the last week ...

Three Phase z

z

z

A three conductor transmission system is called a three-phase system. The power delivered by a three phase system (assuming a balanced load) is constant, even though the voltages in each phase vary sinusoidally. Three phase systems are more efficient than single systems due to reduced power losses.

Topics z

Introduction (1 session)

z

Basic Electrical Quantities (1 session)

z

Circuit Analysis (2 sessions) Introduction to Electromagnetism (1 session) Introduction to Electronics (1 session) Introduction to Digital Logic Circuits (1 session) Introduction to Digital Information (1 session) Introduction to Computer (1 session) Introduction to Telecommunication (1 session) Introduction to Control (1 session) Introduction to Power Systems (1 session) Introduction to Photonics (1 session) Review (1 session)

z z z z z z z z z z

Basic Concepts

System of Units

System of Units

More Units

Charge and Current

Basic Quantities z

z

z

Basic quantities are voltage, current, and power. The sign convention is important in computing power supplied by or dissipated by a circuit element. Circuit elements can be active or passive; active elements are called sources.

Current

Types of Current

AC versus DC z

z

z

AC is alternating current AC quantities always vary sinusoidally in time Usually, we will know the frequency and solve for the amplitude and phase.

z z

z

DC is direct current DC quantities are always constant in time. DC can not be directly transformed to lower or higher voltages.

Current Range

Voltage

Voltage Range

Representation

Example

Sign Convention

Power

Passive Sign Convention

Positive Power

Negative Power

Example

Energy

Example 10A Power plant

z z z

+ 220V -

Which circuit element is supplying power? Which is dissipating power? How much is supplied/dissipated?

What is inaccurate about this example?

Example 14.14 cos(50 2πt) A

Power plant

z

+ 311.13 cos(50 2πt) V

-

How much power is supplied/dissipated?

Let’s Use MATLAB! Start MATLAB t=0:0.0005:0.1; v=311.13*cos(2*pi*50*t); plot(t,v) i=14.14*cos(2*pi*50*t); plot(t,i) p=v.*i; plot(t,p) sum(p)/201