SlideShare una empresa de Scribd logo
1 de 10
Descargar para leer sin conexión
International Journal of ElectronicsJOURNAL OF ELECTRONICS AND
INTERNATIONAL and Communication Engineering & Technology (IJECET),
ISSN 0976 – 6464(Print), ISSN 0976 – 6472(Online), Volume 5, Issue 1, January (2014), © IAEME

COMMUNICATION ENGINEERING & TECHNOLOGY (IJECET)

ISSN 0976 – 6464(Print)
ISSN 0976 – 6472(Online)
Volume 5, Issue 1, January (2014), pp. 01-10
© IAEME: www.iaeme.com/ijecet.asp
Journal Impact Factor (2013): 5.8896 (Calculated by GISI)
www.jifactor.com

IJECET
©IAEME

CONTROL SIGNAL GENERATION OF SWITCHING COMPONENTS FOR
FREQUENCY REGULATION TO THE OUTPUT SIGNAL AC
Sabrije OSMANAJ,

Myzafere LIMANI,

Erdet NASUFI

Faculty of Electrical and Computer Engineering, University of Prishtina, Prishtina, Kosova

ABSTRACT
In this paper was developed single-phase controller circuit for inverter using microcontroller.
Inverter with PWM is easier to implement in microcontroller, and to generate control signals to the
exit. However, this type of modulation is characterized by high distortion factor.
For this reason, for generating control signals for switching components we used wavelets.
As shown in this paper, wavelet expressions enable us to control the frequency of the pulses, width
and number within a half period. It formed the corresponding model, also shows the results of
simulations. An ATMEL AVR Atmega328p microcontroller is used to generate gating signals. By
implementing such wavelets expressions on microcontroller, development of a configurable
switching signal generator is possible. Such generators can be applied on invertors and AC motor
speed controllers.
Key-Words: Wavelets, Microcontroller, Single-phase DC/AC converter, Interrupt vectors.
1.

INTRODUCTION

Single phase and three phase AC motors have a huge application in industry. On mostly of
these applications, remote or local motor speed regulation and control is necessary. Because of AC
motors design, controlling of speed is achieved by changing the frequency of motor driving voltage.
To control this voltage source, AC motor needs to be supplied from a DC/AC converter. This
converter also provides controlling the amplitude of driving voltage [1]. Pulse Width Modulation
(PWM) topology and Space Vector Modulation (SPM) topology are mostly know to be implemented
on design of DC/AC converters.
In this paper, controlling frequency of output driving voltage by measuring the frequency of
input voltage source approach has described. This circuit consists of three main blocks: frequency
measuring block, processing block and DC/AC converting block. Processing block calculates the
frequency of input voltage source and controls the frequency of output driving voltage. Therefore,
1
International Journal of Electronics and Communication Engineering & Technology (IJECET),
ISSN 0976 – 6464(Print), ISSN 0976 – 6472(Online), Volume 5, Issue 1, January (2014), © IAEME

this paper is divided in two main parts: where technique of measuring the frequency is described and
generating of output driving voltage with controllable frequency approach is described.
2.

MEASUREMENT OF AC INPUT VOLTAGE FREQUENCY

A transformer with Np/Ns ration of 0.1 has been used for galvanic isolation between voltage
input source and measuring circuit. Measurement of the frequency is achieved by measuring the time
(half-period) between last two zero-cross of the voltage input source. Diode bridge is connected in
cascade with the secondary winding to rectify the voltage signal from transformer. To start with, 220
[ ] resistive load is wired with output terminals of the diode bridge. An operation amplifier is used
to detect zero-cross of voltage by comparing the rectified voltage signal and grounding point.
XSC1
Ext T rig
+
_
B

A
+

D1

_

+

_

D3

V1

V3
7V

R2
220 Vpk
50 Hz
0°

0

T1 2

1

3

220
D2

11

D4

U2A

2

v_out
1

3
4

R4
1k

LM324D
V2
7V

C1
0.1µF

D5

Figure 1: Cross-zero detecting circuit
As shown in figure 1, positive pin of the operational amplifier (integrated circuit LM234D) is
connected to referent grounding rail, and the negative pin of operational amplifier is connected to the
positive output pin of the diode bridge. On the other hand, a 1 [k ] dummy load is connected to the
output of the operational amplifier. Also, cathode of a diode (D5) is connected to the output of
operational amplifier and serves as a negative voltage clipping. Waveform of the rectified voltage at
output of the diode bridge (red) and the waveform of signal at output node of operation amplifier
(green) which represents the cross-zero detecting signals are shown in figure 2.
Software of implemented microcontroller consists of two main sessions: configuration
session and routine session. Configuration data, declarations and initialization are located at the
configuration session. And on the other hand, generating the modulated gating signals in function of
the frequency is executed in main routine – main loop.

2
International Journal of Electronics and Communication Engineering & Technology (IJECET),
ISSN 0976 – 6464(Print), ISSN 0976 – 6472(Online), Volume 5, Issue 1, January (2014), © IAEME

Figure 2: Waveform of rectified voltage (red) and the cross-zero detecting signal waveform
(green)
Every instruction block located in memory is decoded and executed from central processing
unit. Whereas, interrupts are signal that triggers the processing unit to change the execution routine.
Processing unit is switched to execute certain instructions at predefined locations which depends
from interrupting signal and goes back to execute the main routine. These predefined locations are
known as interrupt vector addresses or interrupt vectors. ATmega328p microcontroller provides
several interrupting sources, including internal interrupts as well as external interrupts. External
interrupts can be triggered by two groups of pins: external interrupting pins (PINn) and pin exchange
external interrupt pins (PCINTn). In general, for each interrupting source there is an interrupting
vector which controls switches the processing unit at certain instruction block [4].
In this paper, an ATmea328p microcontroller is implemented. Interrupting source INT0 is
used to detect any voltage level change at the output of comparing amplifier connected at PORTD2
pin of microcontroller. INT0 interruption can be triggered by falling edge sensing or rising edge
sensing. As shown in figure 2, the pulse rises when the input signal falls at zero. Therefore, to detect
this fall, rising edge detection is the right interrupting option. At EICRA register (EICRA, external
interrupt control register A) of ATmgea328p microcontroller, corresponding ISC00 and ISC01 (ISC,
interrupt sense control) bits defines the interrupt sensing type. All possible combination of ISC00
and ISC01 bits, respectively are listen on table 2. Referring to this table, to detect the rising edge,
ISC00 and ISC01 bits needs to assign at high bit state, as shown in code below.
Table 2: Combination of two interrupt sense control bits for ATmega328 microcontroller. [1]
ISC01 ISC00 Description
0
0
Low-level at INT0 triggers an interrupt request.
0
1
Any logical state change at INT0 triggers an interrupt request.
1
0
Falling edge at INT0 triggers an interrupt request.
1
1
Rising edge at INT0 triggers an interrupt request.
Code 1: Assigning the ISC00 and ISC01 bits at EICRA register
EICRA|=(1<<ISC00);
EICRA|=(1<<ISC01);

3
International Journal of Electronics and Communication Engineering & Technology (IJECET),
ISSN 0976 – 6464(Print), ISSN 0976 – 6472(Online), Volume 5, Issue 1, January (2014), © IAEME

A voltage follow realized with an operational amplifier is used as an intermediate circuit to
connect the output of zero-detecting circuit and the input of microcontroller, as shown in figure 3.
The voltage follower circuit is realized by using the LM324D integrated circuit. Because of high
input impedance of operation amplifier, there is no current leakage from zero-detecting circuit and
microcontroller – only voltage following is achieved.
Following circuit – ATmega328p microcontroller based on AVR architecture – is shown in
figure 4. As seen, the 5 [V] dc source is supplying the microcontroller and clocked by 16 [MHz]
external oscillators. Zero-cross detecting signal is followed be signal follower at pin PD2 of
microcontroller and shunted by a 220 [ ] pull-down resistor to avoid high-impedance state.
V3
7V
11

U2A

2

PD2
1

v_out
3
4

LM324D
V2
7V

Figure 3: Voltage follower designed by using LM324D IC operation amplifier

G1

G2

G1

VCC

PD2

VCC
5V

R4
220

5V
IC1
1_PC6
2_PD0
3_PD1
4_PD2
5_PD3
6_PD4
7_VCC
8_GND
9_PB6
10_PB7
11_PD5
12_PD6
13_PD7
14_PB0

C1
22pF

G2

X1
16MHz

C2

28_PC5
27_PC4
26_PC3
25_PC2
24_PC1
23_PC0
22_GND
21_AREF
20_AVCC
19_PB5
18_PB4
17_PB3
16_PB2
15_PB1

ATmega328p
22pF

Figure 4: Microcontroller circuit

4
International Journal of Electronics and Communication Engineering & Technology (IJECET),
ISSN 0976 – 6464(Print), ISSN 0976 – 6472(Online), Volume 5, Issue 1, January (2014), © IAEME

3.

GENERATING THE SWITCHING DEVICES CONTROLLING SIGNALS

There are several pulse width modulation strategies to generate the gating signals, such as:
single pulse width modulation, multiple pulse width modulation, sinusoidal pulse width modulation,
modified sinusoidal modulation, step modulation, delta modulation, etc. Two signals needs to be
compared in order to use on of strategies listed above: reference signal and carrier signal [5].
Therefore, to design any system based on one of strategies listed above, two independent signal
sources needs to be included.
In this paper, Haar wavelets are used to solve the generating of gating signals. With this
solution, there is no need for carrier signal; therefore this solution can be called carrierless pulse
width modulation. Wavelets are defined by the wavelet function ߰ሺ‫ݐ‬ሻ (also called the mother
wavelet) and a Haar scaling function ߶ሺ‫ݐ‬ሻ:
߰ሺ‫ݐ‬ሻ ൌ

‫ۓ‬
ۖ

1 0൑‫ݐ‬൏

1
2

1
‫ ۔‬െ1 2 ൑ ‫ ݐ‬൏ 1
ۖ
‫ ݁ݏ݅ݓݎ݄݁ݐ݋ 0ە‬ሾ0,1ሻ

1 0൑‫ݐ‬൏1
߶ሺ‫ݐ‬ሻ ൌ ൜0 ‫ ݁ݏ݅ݓݎ݄݁ݐ݋‬ሾ0,1ሻ

(1)

(2)

Dilation and translation of ߮ሺ‫ݐ‬ሻ generates a family of Haar scaling function:
߮௝,௞ ሺ‫ݐ‬ሻ ൌ ߶ு ൫2௝ାଵ ‫ ݐ‬െ ݇൯

where j is the scale parameter and k is the translation parameter.
The output PWM signal is controlled by changing the value of width and position of pulses,
respectively. To generate variable width pulses, two Haar scaling functions are combined to
construct a new scaling function given as:
߮௝ ሺ‫ݐ‬ሻ ൌ ߶ு ൫2ఓ௝ାଵ ‫ݐ‬൯ ൅ ߶ு ൫2ఓ௝ାଵ ሺ‫ ݐ‬െ 1 ൅ 2ିሺఓ௝ାଵሻ ሻ൯
߮௝ ሺ‫ݐ‬ሻ ൌ ߶ு ൫2ఓ௝ାଵ ‫ݐ‬൯ ൅ ߶ு ൫2ఓ௝ାଵ ‫ ݐ‬െ 1 ൅ 2ఓ௝ାଵ ൯

(3)

where j is the scale parameter and ߤ ൑ 1 is a constant.

Function ߮௝ , is subtracted from the original Haar scaling function to obtain a synthesis function:
෪
߶ఫ ሺ‫ݐ‬ሻ ൌ ߶ு ሺ‫ݐ‬ሻ െ ߶௝ ሺ‫ݐ‬ሻ

(4)

which represents the pulse function at high level state from ‫ݐ‬ௗଵ and ‫ݐ‬ௗଶ, where ‫ݐ‬ௗଵ and ‫ݐ‬ௗଶ are given
as:
‫ݐ‬ௗଵ ൌ 2ିሺఓ௝ାଵሻ
‫ݐ‬ௗଶ ൌ 1 െ 2ିሺఓ௝ାଵሻ

5

(5.a)
(5.b)
International Journal of Electronics and Communication Engineering & Technology (IJECET),
ISSN 0976 – 6464(Print), ISSN 0976 – 6472(Online), Volume 5, Issue 1, January (2014), © IAEME

For D pulses within half-periodܶ௠ , times ‫ݐ‬ௗଵ and ‫ݐ‬ௗଶ of pulse d, are given by
ܶ௠
‫ݐ‬ௗଵ ൌ
ൣ݀ ൅ 2ିሺఓ௝ାଵሻ ൧
‫ܦ‬
ܶ௠
‫ݐ‬ௗଶ ൌ
ൣ݀ ൅ 1 െ 2ିሺఓ௝ାଵሻ ൧
‫ܦ‬

(6.a)
(6.b)

for d = 0, 1, 2, … , D-1, and width of pulses depends from µ and j, but since µ is a constant
parameter, width of all D pulses depends from j parameter.
At following part of this paper, simulation according to expressions (6.a) and (6.b) for D = 4,
6, 8 and 16, are listed using Matlab. Also, attached to results, corresponding half-period waveforms
are shown.
4.

SIMULATIONS

Results 1: Pulses for D = 4, µ=0.4.
Tm = 0.50
D =4
µ = 0.40
j=[1221]
=============================================
d(0), j(1) td1=0.0474[s] -> td2=0.0776[s] dt=0.0303[s]
d(1), j(2) td1=0.1609[s] -> td2=0.2141[s] dt=0.0532[s]
d(2), j(2) td1=0.2859[s] -> td2=0.3391[s] dt=0.0532[s]
d(3), j(1) td1=0.4224[s] -> td2=0.4526[s] dt=0.0303[s]
=============================================
Tm = 0.50 | D = 4 | µ = 0.40
1.4
d=0

d=1

d=2

d=3

j=1

j=2

j=2

j=1

1.2

1

0.8

0.6

0.4

0.2

0

-0.2
-0.1

0

0.1

0.2

0.3

0.4

0.5

Koha (s)

Figure 6: Waveform of results 1 (for half-period)

6

0.6
International Journal of Electronics and Communication Engineering & Technology (IJECET),
ISSN 0976 – 6464(Print), ISSN 0976 – 6472(Online), Volume 5, Issue 1, January (2014), © IAEME

Results 2: For D = 6, µ=0.4.
Tm = 0.50
D =6
µ = 0.40
j=[123321]
=============================================
d(0), j(1) td1=0.0316[s] -> td2=0.0518[s] dt=0.0202[s]
d(1), j(2) td1=0.1073[s] -> td2=0.1427[s] dt=0.0355[s]
.....................................................
d(4), j(2) td1=0.3573[s] -> td2=0.3927[s] dt=0.0355[s]
d(5), j(1) td1=0.4482[s] -> td2=0.4684[s] dt=0.0202[s]
=============================================

Tm = 0.50 | D = 6 | µ = 0.40
1.4
d=0

d=1

d=2

d=3

d=4

d=5

j=1

j=2

j=3

j=3

j=2

j=1

1.2

1

0.8

0.6

0.4

0.2

0

-0.2
-0.1

0

0.1

0.2

0.3

0.4

0.5

Koha (s)

Figure 7: Waveform of results 2 (for half-period)
Results 3: For D=8.
Tm = 0.50
D =8
µ = 0.40
j=[12344321]
=============================================
d(0), j(1) td1=0.0237[s] -> td2=0.0388[s] dt=0.0151[s]
d(1), j(2) td1=0.0804[s] -> td2=0.1071[s] dt=0.0266[s]
.................................................
d(6), j(2) td1=0.3929[s] -> td2=0.4196[s] dt=0.0266[s]
d(7), j(1) td1=0.4612[s] -> td2=0.4763[s] dt=0.0151[s]
=============================================

7

0.6
International Journal of Electronics and Communication Engineering & Technology (IJECET),
ISSN 0976 – 6464(Print), ISSN 0976 – 6472(Online), Volume 5, Issue 1, January (2014), © IAEME
Tm = 0.50 | D = 8 | µ = 0.40
1.4

1.2

1

0.8

0.6

0.4

0.2

0

-0.2
-0.1

0

0.1

0.2

0.3

0.4

0.5

0.6

Koha (s)

Figure 8: Waveform of results 3 (for half-period)
Results 4: For D=16.
Tm = 0.50
D = 16
µ = 0.40
j=[1234567887654321]
=============================================
d(0), j(1) td1=0.0118[s] -> td2=0.0194[s] dt=0.0076[s]
d(1), j(2) td1=0.0402[s] -> td2=0.0535[s] dt=0.0133[s]
...................................................
d(14), j(2) td1=0.4465[s] -> td2=0.4598[s] dt=0.0133[s]
d(15), j(1) td1=0.4806[s] -> td2=0.4882[s] dt=0.0076[s]
=============================================
Tm = 0.50 | D = 16 | µ = 0.40
1.4

1.2

1

0.8

0.6

0.4

0.2

0

-0.2
-0.1

0

0.1

0.2

0.3

0.4

0.5

Koha (s)

Figure 9: Waveform of results 4 (for half-period)

8

0.6
International Journal of Electronics and Communication Engineering & Technology (IJECET),
ISSN 0976 – 6464(Print), ISSN 0976 – 6472(Online), Volume 5, Issue 1, January (2014), © IAEME
G1

C1

G2

S1

S2
V_load
+

0.000

V

V_batt
G2

C2

R_Load

S4

G1

S3

Figure 10: Diagram of single phase dc-ac converter

Sinjali i gaitit G1: Tm = 0.50 | D = 6 | µ = 0.40
1
0.8
0.6
0.4
0.2
0
-0.2

0

0.2

0.4

0.6

0.8

1

0.8

1

Koha (s)
Sinjali i gaitit G2: Tm = 0.50 | D = 6 | µ = 0.40
1
0.8
0.6
0.4
0.2
0
-0.2

0

0.2

0.4

0.6
Koha (s)

Figure 11: Gating signals G1 and G2

9
International Journal of Electronics and Communication Engineering & Technology (IJECET),
ISSN 0976 – 6464(Print), ISSN 0976 – 6472(Online), Volume 5, Issue 1, January (2014), © IAEME
V load

10

5

0

-5

-10

Figure 12: Voltage waveform at dummy load ܴ௅௢௔ௗ
0

5.

0.1

0.2

0.3

0.4

0.5
Koha (s)

0.6

0.7

0.8

0.9

1

SUMMARY

The strategy of controlling the gates is shown in Figure 10. Switches S1 and S3 will be
controlled by the signal G1, and switches G2 and G4 will control by the gate signal G2. G1 and G2
signals generated from the microcontroller. The microcontroller calculates time between two zerocrosses and generates gating signals using Haar scaling functions.
Microcontroller accounts time Tm and taking D and µ generates signals G1 and G2 in pine
PD3, PB3, PB1 and PB2. The voltage waveform at output inverter for load resistive will be as shown
in Figure 12. As a result, we can conclude that the use of wavelets and Haar scaling functions - is
easier to implement because it requires only two equations to generate switching signals. By this
approach, there is no need for carrier signal – carrierless PWM approach, too.
For future works, real-time experiments has to be done to get data of the accuracy of
frequency calculation, distortions factor and transient effects while changing the frequency of input
signal.
6. REFERENCE
[1]
[2]
[3]
[4]
[5]
[6]

[7]

Holmes, D. G. & Lipo, T. A (2003). PWM for Power Converters Principles and Practice, John
Wiley & Sons. Inc., Canada
Lipo, T. A. (1996). Introduction to AC Machine Machine Design, Vol. 1, University of
Wisconsin Power Electronics Research Center, Madison
F. Wang, Sine-Triangle versus Spae Vector Modulation for Three-Level PWM Voltage Source
Inverter, IEEE Trans. On Industry Applications, Vol. 38, No. 2, 2002
J. H. Seo, C. H. Choi, V. Hyun, A. New Simplified Space Vector PWM Method for Three Level
Inverters, IEEE Trans. On Power Electronics, Vol. 16, No. 4, 2001.
M. Rashid, “Power Electronics: Circuits, Devices and Applications”, Third edition, Prentice Hall,
2003.
L.Raguraman and P.Sabarish, “Integrated Bridgeless PWM Based Power Converters”,
International Journal of Advanced Research in Engineering & Technology (IJARET), Volume 4,
Issue 5, 2013, pp. 17 - 23, ISSN Print: 0976-6480, ISSN Online: 0976-6499.
B.Kiran Kumar, Y.V.Sivareddy and M.Vijayakumar, “Comparative Analysis of Sine Triangle
and Space Vector PWM for Cascaded Multilevel Inverters”, International Journal of Electrical
Engineering & Technology (IJEET), Volume 4, Issue 2, 2013, pp. 155 - 164, ISSN Print:
0976-6545, ISSN Online: 0976-6553.
10

Más contenido relacionado

La actualidad más candente

Remote Control Circuit.
Remote Control Circuit.Remote Control Circuit.
Remote Control Circuit.Maruf Priyo
 
102642452 infrared-remote-switch-project-report
102642452 infrared-remote-switch-project-report102642452 infrared-remote-switch-project-report
102642452 infrared-remote-switch-project-reportisnadh
 
A low cost short range wireless embedded system for multiple parameter control
A low cost short range wireless embedded system for multiple parameter controlA low cost short range wireless embedded system for multiple parameter control
A low cost short range wireless embedded system for multiple parameter controleSAT Publishing House
 
A low cost short range wireless embedded system for multiple parameter control
A low cost short range wireless embedded system for multiple parameter controlA low cost short range wireless embedded system for multiple parameter control
A low cost short range wireless embedded system for multiple parameter controleSAT Journals
 
Ec2308 mini project
Ec2308 mini projectEc2308 mini project
Ec2308 mini projectunnimaya_k
 
TV Remote control Home Appliances using Arduino(Infrared)
TV Remote control Home Appliances using Arduino(Infrared)TV Remote control Home Appliances using Arduino(Infrared)
TV Remote control Home Appliances using Arduino(Infrared)sushil roy thalakayala
 
BIDIRECTIONAL SPEED CONTROL OF DC MOTOR USING 8051 MICROCONTROLLER
BIDIRECTIONAL SPEED CONTROL OF DC MOTOR USING 8051 MICROCONTROLLERBIDIRECTIONAL SPEED CONTROL OF DC MOTOR USING 8051 MICROCONTROLLER
BIDIRECTIONAL SPEED CONTROL OF DC MOTOR USING 8051 MICROCONTROLLERShanmukha S. Potti
 
Reviews of Cascade Control of Dc Motor with Advance Controller
Reviews of Cascade Control of Dc Motor with Advance ControllerReviews of Cascade Control of Dc Motor with Advance Controller
Reviews of Cascade Control of Dc Motor with Advance Controllerijsrd.com
 
Arm cortex ( lpc 2148 ) based motor speed control
Arm cortex ( lpc 2148 ) based motor speed control Arm cortex ( lpc 2148 ) based motor speed control
Arm cortex ( lpc 2148 ) based motor speed control Uday Wankar
 
Infrared Remote Controlled Devices
Infrared Remote Controlled DevicesInfrared Remote Controlled Devices
Infrared Remote Controlled DevicesNarayan Jaiswal
 
Cockpit White Box
Cockpit White BoxCockpit White Box
Cockpit White Boxncct
 
IRJET- Testing the Induction Motor Voltage, Current, Torque, Speed, Power and...
IRJET- Testing the Induction Motor Voltage, Current, Torque, Speed, Power and...IRJET- Testing the Induction Motor Voltage, Current, Torque, Speed, Power and...
IRJET- Testing the Induction Motor Voltage, Current, Torque, Speed, Power and...IRJET Journal
 
EGmicro EG8010 Datasheet
EGmicro EG8010 DatasheetEGmicro EG8010 Datasheet
EGmicro EG8010 DatasheetChangyao Xu
 
Bi directional speed control of dc motor and stepper motor through mat lab us...
Bi directional speed control of dc motor and stepper motor through mat lab us...Bi directional speed control of dc motor and stepper motor through mat lab us...
Bi directional speed control of dc motor and stepper motor through mat lab us...eSAT Journals
 
Catalog biến tần Frenic Lift - Fuji Electric mới nhất 2019
Catalog biến tần Frenic Lift - Fuji Electric mới nhất 2019Catalog biến tần Frenic Lift - Fuji Electric mới nhất 2019
Catalog biến tần Frenic Lift - Fuji Electric mới nhất 2019CTY TNHH HẠO PHƯƠNG
 
Visiter counter doc
Visiter counter docVisiter counter doc
Visiter counter docPrem Kumar
 

La actualidad más candente (20)

Remote Control Circuit.
Remote Control Circuit.Remote Control Circuit.
Remote Control Circuit.
 
102642452 infrared-remote-switch-project-report
102642452 infrared-remote-switch-project-report102642452 infrared-remote-switch-project-report
102642452 infrared-remote-switch-project-report
 
A low cost short range wireless embedded system for multiple parameter control
A low cost short range wireless embedded system for multiple parameter controlA low cost short range wireless embedded system for multiple parameter control
A low cost short range wireless embedded system for multiple parameter control
 
A low cost short range wireless embedded system for multiple parameter control
A low cost short range wireless embedded system for multiple parameter controlA low cost short range wireless embedded system for multiple parameter control
A low cost short range wireless embedded system for multiple parameter control
 
JamesEndl
JamesEndlJamesEndl
JamesEndl
 
Ec2308 mini project
Ec2308 mini projectEc2308 mini project
Ec2308 mini project
 
TV Remote control Home Appliances using Arduino(Infrared)
TV Remote control Home Appliances using Arduino(Infrared)TV Remote control Home Appliances using Arduino(Infrared)
TV Remote control Home Appliances using Arduino(Infrared)
 
BIDIRECTIONAL SPEED CONTROL OF DC MOTOR USING 8051 MICROCONTROLLER
BIDIRECTIONAL SPEED CONTROL OF DC MOTOR USING 8051 MICROCONTROLLERBIDIRECTIONAL SPEED CONTROL OF DC MOTOR USING 8051 MICROCONTROLLER
BIDIRECTIONAL SPEED CONTROL OF DC MOTOR USING 8051 MICROCONTROLLER
 
Reviews of Cascade Control of Dc Motor with Advance Controller
Reviews of Cascade Control of Dc Motor with Advance ControllerReviews of Cascade Control of Dc Motor with Advance Controller
Reviews of Cascade Control of Dc Motor with Advance Controller
 
Arm cortex ( lpc 2148 ) based motor speed control
Arm cortex ( lpc 2148 ) based motor speed control Arm cortex ( lpc 2148 ) based motor speed control
Arm cortex ( lpc 2148 ) based motor speed control
 
Project
ProjectProject
Project
 
Infrared Remote Controlled Devices
Infrared Remote Controlled DevicesInfrared Remote Controlled Devices
Infrared Remote Controlled Devices
 
ABB Relay
ABB RelayABB Relay
ABB Relay
 
Cockpit White Box
Cockpit White BoxCockpit White Box
Cockpit White Box
 
Scada
ScadaScada
Scada
 
IRJET- Testing the Induction Motor Voltage, Current, Torque, Speed, Power and...
IRJET- Testing the Induction Motor Voltage, Current, Torque, Speed, Power and...IRJET- Testing the Induction Motor Voltage, Current, Torque, Speed, Power and...
IRJET- Testing the Induction Motor Voltage, Current, Torque, Speed, Power and...
 
EGmicro EG8010 Datasheet
EGmicro EG8010 DatasheetEGmicro EG8010 Datasheet
EGmicro EG8010 Datasheet
 
Bi directional speed control of dc motor and stepper motor through mat lab us...
Bi directional speed control of dc motor and stepper motor through mat lab us...Bi directional speed control of dc motor and stepper motor through mat lab us...
Bi directional speed control of dc motor and stepper motor through mat lab us...
 
Catalog biến tần Frenic Lift - Fuji Electric mới nhất 2019
Catalog biến tần Frenic Lift - Fuji Electric mới nhất 2019Catalog biến tần Frenic Lift - Fuji Electric mới nhất 2019
Catalog biến tần Frenic Lift - Fuji Electric mới nhất 2019
 
Visiter counter doc
Visiter counter docVisiter counter doc
Visiter counter doc
 

Destacado (19)

Issues problems
Issues problemsIssues problems
Issues problems
 
10420130401002
1042013040100210420130401002
10420130401002
 
50120140504011
5012014050401150120140504011
50120140504011
 
40120140504008
4012014050400840120140504008
40120140504008
 
40120140502011
4012014050201140120140502011
40120140502011
 
20320140501001
2032014050100120320140501001
20320140501001
 
10120140501003
1012014050100310120140501003
10120140501003
 
50120130406046
5012013040604650120130406046
50120130406046
 
10120140501004
1012014050100410120140501004
10120140501004
 
40220140501002
4022014050100240220140501002
40220140501002
 
20320130406022 2
20320130406022 220320130406022 2
20320130406022 2
 
50120130406039
5012013040603950120130406039
50120130406039
 
40220130405008
4022013040500840220130405008
40220130405008
 
10420140501001
1042014050100110420140501001
10420140501001
 
50120140501015 2
50120140501015 250120140501015 2
50120140501015 2
 
50120140503019
5012014050301950120140503019
50120140503019
 
50120140503018
5012014050301850120140503018
50120140503018
 
50120140504003
5012014050400350120140504003
50120140504003
 
20120140504009 2
20120140504009 220120140504009 2
20120140504009 2
 

Similar a 40120140501001

Design and Implementation of Schmitt Trigger using Operational Amplifier
Design and Implementation of Schmitt Trigger using Operational AmplifierDesign and Implementation of Schmitt Trigger using Operational Amplifier
Design and Implementation of Schmitt Trigger using Operational AmplifierIJERA Editor
 
DESIGN AND IMPLEMENTATION OF CURRENT MIRROR SYMMETRICAL OPERATIONAL TRANSCOND...
DESIGN AND IMPLEMENTATION OF CURRENT MIRROR SYMMETRICAL OPERATIONAL TRANSCOND...DESIGN AND IMPLEMENTATION OF CURRENT MIRROR SYMMETRICAL OPERATIONAL TRANSCOND...
DESIGN AND IMPLEMENTATION OF CURRENT MIRROR SYMMETRICAL OPERATIONAL TRANSCOND...IRJET Journal
 
IRJET-Static Voltage Stabilizer
IRJET-Static Voltage StabilizerIRJET-Static Voltage Stabilizer
IRJET-Static Voltage StabilizerIRJET Journal
 
DC MOTOR SPEED CONTROL USING ON-OFF CONTROLLER BY PIC16F877A MICROCONTROLLER
DC MOTOR SPEED CONTROL USING ON-OFF CONTROLLER BY  PIC16F877A MICROCONTROLLERDC MOTOR SPEED CONTROL USING ON-OFF CONTROLLER BY  PIC16F877A MICROCONTROLLER
DC MOTOR SPEED CONTROL USING ON-OFF CONTROLLER BY PIC16F877A MICROCONTROLLERTridib Bose
 
IRJET- Design of Voltage Controlled Oscillator in 180 nm CMOS Technology
IRJET- Design of  Voltage Controlled Oscillator in 180 nm CMOS TechnologyIRJET- Design of  Voltage Controlled Oscillator in 180 nm CMOS Technology
IRJET- Design of Voltage Controlled Oscillator in 180 nm CMOS TechnologyIRJET Journal
 
IMPLEMENTING A DIGITAL MULTIMETER
IMPLEMENTING A DIGITAL MULTIMETERIMPLEMENTING A DIGITAL MULTIMETER
IMPLEMENTING A DIGITAL MULTIMETERVijay Elavunkal
 
Lv side distributed power factor correction system
Lv side distributed power factor correction systemLv side distributed power factor correction system
Lv side distributed power factor correction systemeSAT Publishing House
 
Industrial Power Control by Integral Cycle Switching without Generating Harmo...
Industrial Power Control by Integral Cycle Switching without Generating Harmo...Industrial Power Control by Integral Cycle Switching without Generating Harmo...
Industrial Power Control by Integral Cycle Switching without Generating Harmo...IRJET Journal
 
Design and Implementation of speed control for 3 phase induction motor using ...
Design and Implementation of speed control for 3 phase induction motor using ...Design and Implementation of speed control for 3 phase induction motor using ...
Design and Implementation of speed control for 3 phase induction motor using ...IRJET Journal
 
Closed Loop Simulation and Implementation of Digital Integral Control of Sy...
Closed Loop Simulation and Implementation of  Digital Integral  Control of Sy...Closed Loop Simulation and Implementation of  Digital Integral  Control of Sy...
Closed Loop Simulation and Implementation of Digital Integral Control of Sy...IRJET Journal
 
Study and implementation of comparator in cmos 50 nm technology
Study and implementation of comparator in cmos 50 nm technologyStudy and implementation of comparator in cmos 50 nm technology
Study and implementation of comparator in cmos 50 nm technologyeSAT Journals
 
Study and implementation of comparator in cmos 50 nm
Study and implementation of comparator in cmos 50 nmStudy and implementation of comparator in cmos 50 nm
Study and implementation of comparator in cmos 50 nmeSAT Publishing House
 
Research Inventy : International Journal of Engineering and Science
Research Inventy : International Journal of Engineering and ScienceResearch Inventy : International Journal of Engineering and Science
Research Inventy : International Journal of Engineering and Scienceinventy
 
Research Inventy : International Journal of Engineering and Science
Research Inventy : International Journal of Engineering and ScienceResearch Inventy : International Journal of Engineering and Science
Research Inventy : International Journal of Engineering and Scienceresearchinventy
 
Temperature based fan speed control & monitoring using
Temperature based fan speed control & monitoring usingTemperature based fan speed control & monitoring using
Temperature based fan speed control & monitoring usingJagannath Dutta
 
Digital Testing Kit For Three Phase Distribution Transformer
Digital Testing Kit For Three Phase Distribution TransformerDigital Testing Kit For Three Phase Distribution Transformer
Digital Testing Kit For Three Phase Distribution TransformerIRJET Journal
 
Single Output 40W DC-DC Forward Converter for Space Application
Single Output 40W DC-DC Forward Converter for Space ApplicationSingle Output 40W DC-DC Forward Converter for Space Application
Single Output 40W DC-DC Forward Converter for Space ApplicationIRJET Journal
 

Similar a 40120140501001 (20)

Design and Implementation of Schmitt Trigger using Operational Amplifier
Design and Implementation of Schmitt Trigger using Operational AmplifierDesign and Implementation of Schmitt Trigger using Operational Amplifier
Design and Implementation of Schmitt Trigger using Operational Amplifier
 
DESIGN AND IMPLEMENTATION OF CURRENT MIRROR SYMMETRICAL OPERATIONAL TRANSCOND...
DESIGN AND IMPLEMENTATION OF CURRENT MIRROR SYMMETRICAL OPERATIONAL TRANSCOND...DESIGN AND IMPLEMENTATION OF CURRENT MIRROR SYMMETRICAL OPERATIONAL TRANSCOND...
DESIGN AND IMPLEMENTATION OF CURRENT MIRROR SYMMETRICAL OPERATIONAL TRANSCOND...
 
IRJET-Static Voltage Stabilizer
IRJET-Static Voltage StabilizerIRJET-Static Voltage Stabilizer
IRJET-Static Voltage Stabilizer
 
510 277-283
510 277-283510 277-283
510 277-283
 
DC MOTOR SPEED CONTROL USING ON-OFF CONTROLLER BY PIC16F877A MICROCONTROLLER
DC MOTOR SPEED CONTROL USING ON-OFF CONTROLLER BY  PIC16F877A MICROCONTROLLERDC MOTOR SPEED CONTROL USING ON-OFF CONTROLLER BY  PIC16F877A MICROCONTROLLER
DC MOTOR SPEED CONTROL USING ON-OFF CONTROLLER BY PIC16F877A MICROCONTROLLER
 
IRJET- Design of Voltage Controlled Oscillator in 180 nm CMOS Technology
IRJET- Design of  Voltage Controlled Oscillator in 180 nm CMOS TechnologyIRJET- Design of  Voltage Controlled Oscillator in 180 nm CMOS Technology
IRJET- Design of Voltage Controlled Oscillator in 180 nm CMOS Technology
 
IMPLEMENTING A DIGITAL MULTIMETER
IMPLEMENTING A DIGITAL MULTIMETERIMPLEMENTING A DIGITAL MULTIMETER
IMPLEMENTING A DIGITAL MULTIMETER
 
Lv side distributed power factor correction system
Lv side distributed power factor correction systemLv side distributed power factor correction system
Lv side distributed power factor correction system
 
Industrial Power Control by Integral Cycle Switching without Generating Harmo...
Industrial Power Control by Integral Cycle Switching without Generating Harmo...Industrial Power Control by Integral Cycle Switching without Generating Harmo...
Industrial Power Control by Integral Cycle Switching without Generating Harmo...
 
Design and Implementation of speed control for 3 phase induction motor using ...
Design and Implementation of speed control for 3 phase induction motor using ...Design and Implementation of speed control for 3 phase induction motor using ...
Design and Implementation of speed control for 3 phase induction motor using ...
 
Closed Loop Simulation and Implementation of Digital Integral Control of Sy...
Closed Loop Simulation and Implementation of  Digital Integral  Control of Sy...Closed Loop Simulation and Implementation of  Digital Integral  Control of Sy...
Closed Loop Simulation and Implementation of Digital Integral Control of Sy...
 
Study and implementation of comparator in cmos 50 nm technology
Study and implementation of comparator in cmos 50 nm technologyStudy and implementation of comparator in cmos 50 nm technology
Study and implementation of comparator in cmos 50 nm technology
 
Study and implementation of comparator in cmos 50 nm
Study and implementation of comparator in cmos 50 nmStudy and implementation of comparator in cmos 50 nm
Study and implementation of comparator in cmos 50 nm
 
Research Inventy : International Journal of Engineering and Science
Research Inventy : International Journal of Engineering and ScienceResearch Inventy : International Journal of Engineering and Science
Research Inventy : International Journal of Engineering and Science
 
40120140502006
4012014050200640120140502006
40120140502006
 
Research Inventy : International Journal of Engineering and Science
Research Inventy : International Journal of Engineering and ScienceResearch Inventy : International Journal of Engineering and Science
Research Inventy : International Journal of Engineering and Science
 
Temperature based fan speed control & monitoring using
Temperature based fan speed control & monitoring usingTemperature based fan speed control & monitoring using
Temperature based fan speed control & monitoring using
 
Digital Testing Kit For Three Phase Distribution Transformer
Digital Testing Kit For Three Phase Distribution TransformerDigital Testing Kit For Three Phase Distribution Transformer
Digital Testing Kit For Three Phase Distribution Transformer
 
Team7 report
Team7 reportTeam7 report
Team7 report
 
Single Output 40W DC-DC Forward Converter for Space Application
Single Output 40W DC-DC Forward Converter for Space ApplicationSingle Output 40W DC-DC Forward Converter for Space Application
Single Output 40W DC-DC Forward Converter for Space Application
 

Más de IAEME Publication

IAEME_Publication_Call_for_Paper_September_2022.pdf
IAEME_Publication_Call_for_Paper_September_2022.pdfIAEME_Publication_Call_for_Paper_September_2022.pdf
IAEME_Publication_Call_for_Paper_September_2022.pdfIAEME Publication
 
MODELING AND ANALYSIS OF SURFACE ROUGHNESS AND WHITE LATER THICKNESS IN WIRE-...
MODELING AND ANALYSIS OF SURFACE ROUGHNESS AND WHITE LATER THICKNESS IN WIRE-...MODELING AND ANALYSIS OF SURFACE ROUGHNESS AND WHITE LATER THICKNESS IN WIRE-...
MODELING AND ANALYSIS OF SURFACE ROUGHNESS AND WHITE LATER THICKNESS IN WIRE-...IAEME Publication
 
A STUDY ON THE REASONS FOR TRANSGENDER TO BECOME ENTREPRENEURS
A STUDY ON THE REASONS FOR TRANSGENDER TO BECOME ENTREPRENEURSA STUDY ON THE REASONS FOR TRANSGENDER TO BECOME ENTREPRENEURS
A STUDY ON THE REASONS FOR TRANSGENDER TO BECOME ENTREPRENEURSIAEME Publication
 
BROAD UNEXPOSED SKILLS OF TRANSGENDER ENTREPRENEURS
BROAD UNEXPOSED SKILLS OF TRANSGENDER ENTREPRENEURSBROAD UNEXPOSED SKILLS OF TRANSGENDER ENTREPRENEURS
BROAD UNEXPOSED SKILLS OF TRANSGENDER ENTREPRENEURSIAEME Publication
 
DETERMINANTS AFFECTING THE USER'S INTENTION TO USE MOBILE BANKING APPLICATIONS
DETERMINANTS AFFECTING THE USER'S INTENTION TO USE MOBILE BANKING APPLICATIONSDETERMINANTS AFFECTING THE USER'S INTENTION TO USE MOBILE BANKING APPLICATIONS
DETERMINANTS AFFECTING THE USER'S INTENTION TO USE MOBILE BANKING APPLICATIONSIAEME Publication
 
ANALYSE THE USER PREDILECTION ON GPAY AND PHONEPE FOR DIGITAL TRANSACTIONS
ANALYSE THE USER PREDILECTION ON GPAY AND PHONEPE FOR DIGITAL TRANSACTIONSANALYSE THE USER PREDILECTION ON GPAY AND PHONEPE FOR DIGITAL TRANSACTIONS
ANALYSE THE USER PREDILECTION ON GPAY AND PHONEPE FOR DIGITAL TRANSACTIONSIAEME Publication
 
VOICE BASED ATM FOR VISUALLY IMPAIRED USING ARDUINO
VOICE BASED ATM FOR VISUALLY IMPAIRED USING ARDUINOVOICE BASED ATM FOR VISUALLY IMPAIRED USING ARDUINO
VOICE BASED ATM FOR VISUALLY IMPAIRED USING ARDUINOIAEME Publication
 
IMPACT OF EMOTIONAL INTELLIGENCE ON HUMAN RESOURCE MANAGEMENT PRACTICES AMONG...
IMPACT OF EMOTIONAL INTELLIGENCE ON HUMAN RESOURCE MANAGEMENT PRACTICES AMONG...IMPACT OF EMOTIONAL INTELLIGENCE ON HUMAN RESOURCE MANAGEMENT PRACTICES AMONG...
IMPACT OF EMOTIONAL INTELLIGENCE ON HUMAN RESOURCE MANAGEMENT PRACTICES AMONG...IAEME Publication
 
VISUALISING AGING PARENTS & THEIR CLOSE CARERS LIFE JOURNEY IN AGING ECONOMY
VISUALISING AGING PARENTS & THEIR CLOSE CARERS LIFE JOURNEY IN AGING ECONOMYVISUALISING AGING PARENTS & THEIR CLOSE CARERS LIFE JOURNEY IN AGING ECONOMY
VISUALISING AGING PARENTS & THEIR CLOSE CARERS LIFE JOURNEY IN AGING ECONOMYIAEME Publication
 
A STUDY ON THE IMPACT OF ORGANIZATIONAL CULTURE ON THE EFFECTIVENESS OF PERFO...
A STUDY ON THE IMPACT OF ORGANIZATIONAL CULTURE ON THE EFFECTIVENESS OF PERFO...A STUDY ON THE IMPACT OF ORGANIZATIONAL CULTURE ON THE EFFECTIVENESS OF PERFO...
A STUDY ON THE IMPACT OF ORGANIZATIONAL CULTURE ON THE EFFECTIVENESS OF PERFO...IAEME Publication
 
GANDHI ON NON-VIOLENT POLICE
GANDHI ON NON-VIOLENT POLICEGANDHI ON NON-VIOLENT POLICE
GANDHI ON NON-VIOLENT POLICEIAEME Publication
 
A STUDY ON TALENT MANAGEMENT AND ITS IMPACT ON EMPLOYEE RETENTION IN SELECTED...
A STUDY ON TALENT MANAGEMENT AND ITS IMPACT ON EMPLOYEE RETENTION IN SELECTED...A STUDY ON TALENT MANAGEMENT AND ITS IMPACT ON EMPLOYEE RETENTION IN SELECTED...
A STUDY ON TALENT MANAGEMENT AND ITS IMPACT ON EMPLOYEE RETENTION IN SELECTED...IAEME Publication
 
ATTRITION IN THE IT INDUSTRY DURING COVID-19 PANDEMIC: LINKING EMOTIONAL INTE...
ATTRITION IN THE IT INDUSTRY DURING COVID-19 PANDEMIC: LINKING EMOTIONAL INTE...ATTRITION IN THE IT INDUSTRY DURING COVID-19 PANDEMIC: LINKING EMOTIONAL INTE...
ATTRITION IN THE IT INDUSTRY DURING COVID-19 PANDEMIC: LINKING EMOTIONAL INTE...IAEME Publication
 
INFLUENCE OF TALENT MANAGEMENT PRACTICES ON ORGANIZATIONAL PERFORMANCE A STUD...
INFLUENCE OF TALENT MANAGEMENT PRACTICES ON ORGANIZATIONAL PERFORMANCE A STUD...INFLUENCE OF TALENT MANAGEMENT PRACTICES ON ORGANIZATIONAL PERFORMANCE A STUD...
INFLUENCE OF TALENT MANAGEMENT PRACTICES ON ORGANIZATIONAL PERFORMANCE A STUD...IAEME Publication
 
A STUDY OF VARIOUS TYPES OF LOANS OF SELECTED PUBLIC AND PRIVATE SECTOR BANKS...
A STUDY OF VARIOUS TYPES OF LOANS OF SELECTED PUBLIC AND PRIVATE SECTOR BANKS...A STUDY OF VARIOUS TYPES OF LOANS OF SELECTED PUBLIC AND PRIVATE SECTOR BANKS...
A STUDY OF VARIOUS TYPES OF LOANS OF SELECTED PUBLIC AND PRIVATE SECTOR BANKS...IAEME Publication
 
EXPERIMENTAL STUDY OF MECHANICAL AND TRIBOLOGICAL RELATION OF NYLON/BaSO4 POL...
EXPERIMENTAL STUDY OF MECHANICAL AND TRIBOLOGICAL RELATION OF NYLON/BaSO4 POL...EXPERIMENTAL STUDY OF MECHANICAL AND TRIBOLOGICAL RELATION OF NYLON/BaSO4 POL...
EXPERIMENTAL STUDY OF MECHANICAL AND TRIBOLOGICAL RELATION OF NYLON/BaSO4 POL...IAEME Publication
 
ROLE OF SOCIAL ENTREPRENEURSHIP IN RURAL DEVELOPMENT OF INDIA - PROBLEMS AND ...
ROLE OF SOCIAL ENTREPRENEURSHIP IN RURAL DEVELOPMENT OF INDIA - PROBLEMS AND ...ROLE OF SOCIAL ENTREPRENEURSHIP IN RURAL DEVELOPMENT OF INDIA - PROBLEMS AND ...
ROLE OF SOCIAL ENTREPRENEURSHIP IN RURAL DEVELOPMENT OF INDIA - PROBLEMS AND ...IAEME Publication
 
OPTIMAL RECONFIGURATION OF POWER DISTRIBUTION RADIAL NETWORK USING HYBRID MET...
OPTIMAL RECONFIGURATION OF POWER DISTRIBUTION RADIAL NETWORK USING HYBRID MET...OPTIMAL RECONFIGURATION OF POWER DISTRIBUTION RADIAL NETWORK USING HYBRID MET...
OPTIMAL RECONFIGURATION OF POWER DISTRIBUTION RADIAL NETWORK USING HYBRID MET...IAEME Publication
 
APPLICATION OF FRUGAL APPROACH FOR PRODUCTIVITY IMPROVEMENT - A CASE STUDY OF...
APPLICATION OF FRUGAL APPROACH FOR PRODUCTIVITY IMPROVEMENT - A CASE STUDY OF...APPLICATION OF FRUGAL APPROACH FOR PRODUCTIVITY IMPROVEMENT - A CASE STUDY OF...
APPLICATION OF FRUGAL APPROACH FOR PRODUCTIVITY IMPROVEMENT - A CASE STUDY OF...IAEME Publication
 
A MULTIPLE – CHANNEL QUEUING MODELS ON FUZZY ENVIRONMENT
A MULTIPLE – CHANNEL QUEUING MODELS ON FUZZY ENVIRONMENTA MULTIPLE – CHANNEL QUEUING MODELS ON FUZZY ENVIRONMENT
A MULTIPLE – CHANNEL QUEUING MODELS ON FUZZY ENVIRONMENTIAEME Publication
 

Más de IAEME Publication (20)

IAEME_Publication_Call_for_Paper_September_2022.pdf
IAEME_Publication_Call_for_Paper_September_2022.pdfIAEME_Publication_Call_for_Paper_September_2022.pdf
IAEME_Publication_Call_for_Paper_September_2022.pdf
 
MODELING AND ANALYSIS OF SURFACE ROUGHNESS AND WHITE LATER THICKNESS IN WIRE-...
MODELING AND ANALYSIS OF SURFACE ROUGHNESS AND WHITE LATER THICKNESS IN WIRE-...MODELING AND ANALYSIS OF SURFACE ROUGHNESS AND WHITE LATER THICKNESS IN WIRE-...
MODELING AND ANALYSIS OF SURFACE ROUGHNESS AND WHITE LATER THICKNESS IN WIRE-...
 
A STUDY ON THE REASONS FOR TRANSGENDER TO BECOME ENTREPRENEURS
A STUDY ON THE REASONS FOR TRANSGENDER TO BECOME ENTREPRENEURSA STUDY ON THE REASONS FOR TRANSGENDER TO BECOME ENTREPRENEURS
A STUDY ON THE REASONS FOR TRANSGENDER TO BECOME ENTREPRENEURS
 
BROAD UNEXPOSED SKILLS OF TRANSGENDER ENTREPRENEURS
BROAD UNEXPOSED SKILLS OF TRANSGENDER ENTREPRENEURSBROAD UNEXPOSED SKILLS OF TRANSGENDER ENTREPRENEURS
BROAD UNEXPOSED SKILLS OF TRANSGENDER ENTREPRENEURS
 
DETERMINANTS AFFECTING THE USER'S INTENTION TO USE MOBILE BANKING APPLICATIONS
DETERMINANTS AFFECTING THE USER'S INTENTION TO USE MOBILE BANKING APPLICATIONSDETERMINANTS AFFECTING THE USER'S INTENTION TO USE MOBILE BANKING APPLICATIONS
DETERMINANTS AFFECTING THE USER'S INTENTION TO USE MOBILE BANKING APPLICATIONS
 
ANALYSE THE USER PREDILECTION ON GPAY AND PHONEPE FOR DIGITAL TRANSACTIONS
ANALYSE THE USER PREDILECTION ON GPAY AND PHONEPE FOR DIGITAL TRANSACTIONSANALYSE THE USER PREDILECTION ON GPAY AND PHONEPE FOR DIGITAL TRANSACTIONS
ANALYSE THE USER PREDILECTION ON GPAY AND PHONEPE FOR DIGITAL TRANSACTIONS
 
VOICE BASED ATM FOR VISUALLY IMPAIRED USING ARDUINO
VOICE BASED ATM FOR VISUALLY IMPAIRED USING ARDUINOVOICE BASED ATM FOR VISUALLY IMPAIRED USING ARDUINO
VOICE BASED ATM FOR VISUALLY IMPAIRED USING ARDUINO
 
IMPACT OF EMOTIONAL INTELLIGENCE ON HUMAN RESOURCE MANAGEMENT PRACTICES AMONG...
IMPACT OF EMOTIONAL INTELLIGENCE ON HUMAN RESOURCE MANAGEMENT PRACTICES AMONG...IMPACT OF EMOTIONAL INTELLIGENCE ON HUMAN RESOURCE MANAGEMENT PRACTICES AMONG...
IMPACT OF EMOTIONAL INTELLIGENCE ON HUMAN RESOURCE MANAGEMENT PRACTICES AMONG...
 
VISUALISING AGING PARENTS & THEIR CLOSE CARERS LIFE JOURNEY IN AGING ECONOMY
VISUALISING AGING PARENTS & THEIR CLOSE CARERS LIFE JOURNEY IN AGING ECONOMYVISUALISING AGING PARENTS & THEIR CLOSE CARERS LIFE JOURNEY IN AGING ECONOMY
VISUALISING AGING PARENTS & THEIR CLOSE CARERS LIFE JOURNEY IN AGING ECONOMY
 
A STUDY ON THE IMPACT OF ORGANIZATIONAL CULTURE ON THE EFFECTIVENESS OF PERFO...
A STUDY ON THE IMPACT OF ORGANIZATIONAL CULTURE ON THE EFFECTIVENESS OF PERFO...A STUDY ON THE IMPACT OF ORGANIZATIONAL CULTURE ON THE EFFECTIVENESS OF PERFO...
A STUDY ON THE IMPACT OF ORGANIZATIONAL CULTURE ON THE EFFECTIVENESS OF PERFO...
 
GANDHI ON NON-VIOLENT POLICE
GANDHI ON NON-VIOLENT POLICEGANDHI ON NON-VIOLENT POLICE
GANDHI ON NON-VIOLENT POLICE
 
A STUDY ON TALENT MANAGEMENT AND ITS IMPACT ON EMPLOYEE RETENTION IN SELECTED...
A STUDY ON TALENT MANAGEMENT AND ITS IMPACT ON EMPLOYEE RETENTION IN SELECTED...A STUDY ON TALENT MANAGEMENT AND ITS IMPACT ON EMPLOYEE RETENTION IN SELECTED...
A STUDY ON TALENT MANAGEMENT AND ITS IMPACT ON EMPLOYEE RETENTION IN SELECTED...
 
ATTRITION IN THE IT INDUSTRY DURING COVID-19 PANDEMIC: LINKING EMOTIONAL INTE...
ATTRITION IN THE IT INDUSTRY DURING COVID-19 PANDEMIC: LINKING EMOTIONAL INTE...ATTRITION IN THE IT INDUSTRY DURING COVID-19 PANDEMIC: LINKING EMOTIONAL INTE...
ATTRITION IN THE IT INDUSTRY DURING COVID-19 PANDEMIC: LINKING EMOTIONAL INTE...
 
INFLUENCE OF TALENT MANAGEMENT PRACTICES ON ORGANIZATIONAL PERFORMANCE A STUD...
INFLUENCE OF TALENT MANAGEMENT PRACTICES ON ORGANIZATIONAL PERFORMANCE A STUD...INFLUENCE OF TALENT MANAGEMENT PRACTICES ON ORGANIZATIONAL PERFORMANCE A STUD...
INFLUENCE OF TALENT MANAGEMENT PRACTICES ON ORGANIZATIONAL PERFORMANCE A STUD...
 
A STUDY OF VARIOUS TYPES OF LOANS OF SELECTED PUBLIC AND PRIVATE SECTOR BANKS...
A STUDY OF VARIOUS TYPES OF LOANS OF SELECTED PUBLIC AND PRIVATE SECTOR BANKS...A STUDY OF VARIOUS TYPES OF LOANS OF SELECTED PUBLIC AND PRIVATE SECTOR BANKS...
A STUDY OF VARIOUS TYPES OF LOANS OF SELECTED PUBLIC AND PRIVATE SECTOR BANKS...
 
EXPERIMENTAL STUDY OF MECHANICAL AND TRIBOLOGICAL RELATION OF NYLON/BaSO4 POL...
EXPERIMENTAL STUDY OF MECHANICAL AND TRIBOLOGICAL RELATION OF NYLON/BaSO4 POL...EXPERIMENTAL STUDY OF MECHANICAL AND TRIBOLOGICAL RELATION OF NYLON/BaSO4 POL...
EXPERIMENTAL STUDY OF MECHANICAL AND TRIBOLOGICAL RELATION OF NYLON/BaSO4 POL...
 
ROLE OF SOCIAL ENTREPRENEURSHIP IN RURAL DEVELOPMENT OF INDIA - PROBLEMS AND ...
ROLE OF SOCIAL ENTREPRENEURSHIP IN RURAL DEVELOPMENT OF INDIA - PROBLEMS AND ...ROLE OF SOCIAL ENTREPRENEURSHIP IN RURAL DEVELOPMENT OF INDIA - PROBLEMS AND ...
ROLE OF SOCIAL ENTREPRENEURSHIP IN RURAL DEVELOPMENT OF INDIA - PROBLEMS AND ...
 
OPTIMAL RECONFIGURATION OF POWER DISTRIBUTION RADIAL NETWORK USING HYBRID MET...
OPTIMAL RECONFIGURATION OF POWER DISTRIBUTION RADIAL NETWORK USING HYBRID MET...OPTIMAL RECONFIGURATION OF POWER DISTRIBUTION RADIAL NETWORK USING HYBRID MET...
OPTIMAL RECONFIGURATION OF POWER DISTRIBUTION RADIAL NETWORK USING HYBRID MET...
 
APPLICATION OF FRUGAL APPROACH FOR PRODUCTIVITY IMPROVEMENT - A CASE STUDY OF...
APPLICATION OF FRUGAL APPROACH FOR PRODUCTIVITY IMPROVEMENT - A CASE STUDY OF...APPLICATION OF FRUGAL APPROACH FOR PRODUCTIVITY IMPROVEMENT - A CASE STUDY OF...
APPLICATION OF FRUGAL APPROACH FOR PRODUCTIVITY IMPROVEMENT - A CASE STUDY OF...
 
A MULTIPLE – CHANNEL QUEUING MODELS ON FUZZY ENVIRONMENT
A MULTIPLE – CHANNEL QUEUING MODELS ON FUZZY ENVIRONMENTA MULTIPLE – CHANNEL QUEUING MODELS ON FUZZY ENVIRONMENT
A MULTIPLE – CHANNEL QUEUING MODELS ON FUZZY ENVIRONMENT
 

Último

Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Igalia
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024The Digital Insurer
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEarley Information Science
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoffsammart93
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherRemote DBA Services
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfEnterprise Knowledge
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processorsdebabhi2
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsJoaquim Jorge
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...Martijn de Jong
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityPrincipled Technologies
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsMaria Levchenko
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)wesley chun
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Servicegiselly40
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...apidays
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...Neo4j
 

Último (20)

Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 

40120140501001

  • 1. International Journal of ElectronicsJOURNAL OF ELECTRONICS AND INTERNATIONAL and Communication Engineering & Technology (IJECET), ISSN 0976 – 6464(Print), ISSN 0976 – 6472(Online), Volume 5, Issue 1, January (2014), © IAEME COMMUNICATION ENGINEERING & TECHNOLOGY (IJECET) ISSN 0976 – 6464(Print) ISSN 0976 – 6472(Online) Volume 5, Issue 1, January (2014), pp. 01-10 © IAEME: www.iaeme.com/ijecet.asp Journal Impact Factor (2013): 5.8896 (Calculated by GISI) www.jifactor.com IJECET ©IAEME CONTROL SIGNAL GENERATION OF SWITCHING COMPONENTS FOR FREQUENCY REGULATION TO THE OUTPUT SIGNAL AC Sabrije OSMANAJ, Myzafere LIMANI, Erdet NASUFI Faculty of Electrical and Computer Engineering, University of Prishtina, Prishtina, Kosova ABSTRACT In this paper was developed single-phase controller circuit for inverter using microcontroller. Inverter with PWM is easier to implement in microcontroller, and to generate control signals to the exit. However, this type of modulation is characterized by high distortion factor. For this reason, for generating control signals for switching components we used wavelets. As shown in this paper, wavelet expressions enable us to control the frequency of the pulses, width and number within a half period. It formed the corresponding model, also shows the results of simulations. An ATMEL AVR Atmega328p microcontroller is used to generate gating signals. By implementing such wavelets expressions on microcontroller, development of a configurable switching signal generator is possible. Such generators can be applied on invertors and AC motor speed controllers. Key-Words: Wavelets, Microcontroller, Single-phase DC/AC converter, Interrupt vectors. 1. INTRODUCTION Single phase and three phase AC motors have a huge application in industry. On mostly of these applications, remote or local motor speed regulation and control is necessary. Because of AC motors design, controlling of speed is achieved by changing the frequency of motor driving voltage. To control this voltage source, AC motor needs to be supplied from a DC/AC converter. This converter also provides controlling the amplitude of driving voltage [1]. Pulse Width Modulation (PWM) topology and Space Vector Modulation (SPM) topology are mostly know to be implemented on design of DC/AC converters. In this paper, controlling frequency of output driving voltage by measuring the frequency of input voltage source approach has described. This circuit consists of three main blocks: frequency measuring block, processing block and DC/AC converting block. Processing block calculates the frequency of input voltage source and controls the frequency of output driving voltage. Therefore, 1
  • 2. International Journal of Electronics and Communication Engineering & Technology (IJECET), ISSN 0976 – 6464(Print), ISSN 0976 – 6472(Online), Volume 5, Issue 1, January (2014), © IAEME this paper is divided in two main parts: where technique of measuring the frequency is described and generating of output driving voltage with controllable frequency approach is described. 2. MEASUREMENT OF AC INPUT VOLTAGE FREQUENCY A transformer with Np/Ns ration of 0.1 has been used for galvanic isolation between voltage input source and measuring circuit. Measurement of the frequency is achieved by measuring the time (half-period) between last two zero-cross of the voltage input source. Diode bridge is connected in cascade with the secondary winding to rectify the voltage signal from transformer. To start with, 220 [ ] resistive load is wired with output terminals of the diode bridge. An operation amplifier is used to detect zero-cross of voltage by comparing the rectified voltage signal and grounding point. XSC1 Ext T rig + _ B A + D1 _ + _ D3 V1 V3 7V R2 220 Vpk 50 Hz 0° 0 T1 2 1 3 220 D2 11 D4 U2A 2 v_out 1 3 4 R4 1k LM324D V2 7V C1 0.1µF D5 Figure 1: Cross-zero detecting circuit As shown in figure 1, positive pin of the operational amplifier (integrated circuit LM234D) is connected to referent grounding rail, and the negative pin of operational amplifier is connected to the positive output pin of the diode bridge. On the other hand, a 1 [k ] dummy load is connected to the output of the operational amplifier. Also, cathode of a diode (D5) is connected to the output of operational amplifier and serves as a negative voltage clipping. Waveform of the rectified voltage at output of the diode bridge (red) and the waveform of signal at output node of operation amplifier (green) which represents the cross-zero detecting signals are shown in figure 2. Software of implemented microcontroller consists of two main sessions: configuration session and routine session. Configuration data, declarations and initialization are located at the configuration session. And on the other hand, generating the modulated gating signals in function of the frequency is executed in main routine – main loop. 2
  • 3. International Journal of Electronics and Communication Engineering & Technology (IJECET), ISSN 0976 – 6464(Print), ISSN 0976 – 6472(Online), Volume 5, Issue 1, January (2014), © IAEME Figure 2: Waveform of rectified voltage (red) and the cross-zero detecting signal waveform (green) Every instruction block located in memory is decoded and executed from central processing unit. Whereas, interrupts are signal that triggers the processing unit to change the execution routine. Processing unit is switched to execute certain instructions at predefined locations which depends from interrupting signal and goes back to execute the main routine. These predefined locations are known as interrupt vector addresses or interrupt vectors. ATmega328p microcontroller provides several interrupting sources, including internal interrupts as well as external interrupts. External interrupts can be triggered by two groups of pins: external interrupting pins (PINn) and pin exchange external interrupt pins (PCINTn). In general, for each interrupting source there is an interrupting vector which controls switches the processing unit at certain instruction block [4]. In this paper, an ATmea328p microcontroller is implemented. Interrupting source INT0 is used to detect any voltage level change at the output of comparing amplifier connected at PORTD2 pin of microcontroller. INT0 interruption can be triggered by falling edge sensing or rising edge sensing. As shown in figure 2, the pulse rises when the input signal falls at zero. Therefore, to detect this fall, rising edge detection is the right interrupting option. At EICRA register (EICRA, external interrupt control register A) of ATmgea328p microcontroller, corresponding ISC00 and ISC01 (ISC, interrupt sense control) bits defines the interrupt sensing type. All possible combination of ISC00 and ISC01 bits, respectively are listen on table 2. Referring to this table, to detect the rising edge, ISC00 and ISC01 bits needs to assign at high bit state, as shown in code below. Table 2: Combination of two interrupt sense control bits for ATmega328 microcontroller. [1] ISC01 ISC00 Description 0 0 Low-level at INT0 triggers an interrupt request. 0 1 Any logical state change at INT0 triggers an interrupt request. 1 0 Falling edge at INT0 triggers an interrupt request. 1 1 Rising edge at INT0 triggers an interrupt request. Code 1: Assigning the ISC00 and ISC01 bits at EICRA register EICRA|=(1<<ISC00); EICRA|=(1<<ISC01); 3
  • 4. International Journal of Electronics and Communication Engineering & Technology (IJECET), ISSN 0976 – 6464(Print), ISSN 0976 – 6472(Online), Volume 5, Issue 1, January (2014), © IAEME A voltage follow realized with an operational amplifier is used as an intermediate circuit to connect the output of zero-detecting circuit and the input of microcontroller, as shown in figure 3. The voltage follower circuit is realized by using the LM324D integrated circuit. Because of high input impedance of operation amplifier, there is no current leakage from zero-detecting circuit and microcontroller – only voltage following is achieved. Following circuit – ATmega328p microcontroller based on AVR architecture – is shown in figure 4. As seen, the 5 [V] dc source is supplying the microcontroller and clocked by 16 [MHz] external oscillators. Zero-cross detecting signal is followed be signal follower at pin PD2 of microcontroller and shunted by a 220 [ ] pull-down resistor to avoid high-impedance state. V3 7V 11 U2A 2 PD2 1 v_out 3 4 LM324D V2 7V Figure 3: Voltage follower designed by using LM324D IC operation amplifier G1 G2 G1 VCC PD2 VCC 5V R4 220 5V IC1 1_PC6 2_PD0 3_PD1 4_PD2 5_PD3 6_PD4 7_VCC 8_GND 9_PB6 10_PB7 11_PD5 12_PD6 13_PD7 14_PB0 C1 22pF G2 X1 16MHz C2 28_PC5 27_PC4 26_PC3 25_PC2 24_PC1 23_PC0 22_GND 21_AREF 20_AVCC 19_PB5 18_PB4 17_PB3 16_PB2 15_PB1 ATmega328p 22pF Figure 4: Microcontroller circuit 4
  • 5. International Journal of Electronics and Communication Engineering & Technology (IJECET), ISSN 0976 – 6464(Print), ISSN 0976 – 6472(Online), Volume 5, Issue 1, January (2014), © IAEME 3. GENERATING THE SWITCHING DEVICES CONTROLLING SIGNALS There are several pulse width modulation strategies to generate the gating signals, such as: single pulse width modulation, multiple pulse width modulation, sinusoidal pulse width modulation, modified sinusoidal modulation, step modulation, delta modulation, etc. Two signals needs to be compared in order to use on of strategies listed above: reference signal and carrier signal [5]. Therefore, to design any system based on one of strategies listed above, two independent signal sources needs to be included. In this paper, Haar wavelets are used to solve the generating of gating signals. With this solution, there is no need for carrier signal; therefore this solution can be called carrierless pulse width modulation. Wavelets are defined by the wavelet function ߰ሺ‫ݐ‬ሻ (also called the mother wavelet) and a Haar scaling function ߶ሺ‫ݐ‬ሻ: ߰ሺ‫ݐ‬ሻ ൌ ‫ۓ‬ ۖ 1 0൑‫ݐ‬൏ 1 2 1 ‫ ۔‬െ1 2 ൑ ‫ ݐ‬൏ 1 ۖ ‫ ݁ݏ݅ݓݎ݄݁ݐ݋ 0ە‬ሾ0,1ሻ 1 0൑‫ݐ‬൏1 ߶ሺ‫ݐ‬ሻ ൌ ൜0 ‫ ݁ݏ݅ݓݎ݄݁ݐ݋‬ሾ0,1ሻ (1) (2) Dilation and translation of ߮ሺ‫ݐ‬ሻ generates a family of Haar scaling function: ߮௝,௞ ሺ‫ݐ‬ሻ ൌ ߶ு ൫2௝ାଵ ‫ ݐ‬െ ݇൯ where j is the scale parameter and k is the translation parameter. The output PWM signal is controlled by changing the value of width and position of pulses, respectively. To generate variable width pulses, two Haar scaling functions are combined to construct a new scaling function given as: ߮௝ ሺ‫ݐ‬ሻ ൌ ߶ு ൫2ఓ௝ାଵ ‫ݐ‬൯ ൅ ߶ு ൫2ఓ௝ାଵ ሺ‫ ݐ‬െ 1 ൅ 2ିሺఓ௝ାଵሻ ሻ൯ ߮௝ ሺ‫ݐ‬ሻ ൌ ߶ு ൫2ఓ௝ାଵ ‫ݐ‬൯ ൅ ߶ு ൫2ఓ௝ାଵ ‫ ݐ‬െ 1 ൅ 2ఓ௝ାଵ ൯ (3) where j is the scale parameter and ߤ ൑ 1 is a constant. Function ߮௝ , is subtracted from the original Haar scaling function to obtain a synthesis function: ෪ ߶ఫ ሺ‫ݐ‬ሻ ൌ ߶ு ሺ‫ݐ‬ሻ െ ߶௝ ሺ‫ݐ‬ሻ (4) which represents the pulse function at high level state from ‫ݐ‬ௗଵ and ‫ݐ‬ௗଶ, where ‫ݐ‬ௗଵ and ‫ݐ‬ௗଶ are given as: ‫ݐ‬ௗଵ ൌ 2ିሺఓ௝ାଵሻ ‫ݐ‬ௗଶ ൌ 1 െ 2ିሺఓ௝ାଵሻ 5 (5.a) (5.b)
  • 6. International Journal of Electronics and Communication Engineering & Technology (IJECET), ISSN 0976 – 6464(Print), ISSN 0976 – 6472(Online), Volume 5, Issue 1, January (2014), © IAEME For D pulses within half-periodܶ௠ , times ‫ݐ‬ௗଵ and ‫ݐ‬ௗଶ of pulse d, are given by ܶ௠ ‫ݐ‬ௗଵ ൌ ൣ݀ ൅ 2ିሺఓ௝ାଵሻ ൧ ‫ܦ‬ ܶ௠ ‫ݐ‬ௗଶ ൌ ൣ݀ ൅ 1 െ 2ିሺఓ௝ାଵሻ ൧ ‫ܦ‬ (6.a) (6.b) for d = 0, 1, 2, … , D-1, and width of pulses depends from µ and j, but since µ is a constant parameter, width of all D pulses depends from j parameter. At following part of this paper, simulation according to expressions (6.a) and (6.b) for D = 4, 6, 8 and 16, are listed using Matlab. Also, attached to results, corresponding half-period waveforms are shown. 4. SIMULATIONS Results 1: Pulses for D = 4, µ=0.4. Tm = 0.50 D =4 µ = 0.40 j=[1221] ============================================= d(0), j(1) td1=0.0474[s] -> td2=0.0776[s] dt=0.0303[s] d(1), j(2) td1=0.1609[s] -> td2=0.2141[s] dt=0.0532[s] d(2), j(2) td1=0.2859[s] -> td2=0.3391[s] dt=0.0532[s] d(3), j(1) td1=0.4224[s] -> td2=0.4526[s] dt=0.0303[s] ============================================= Tm = 0.50 | D = 4 | µ = 0.40 1.4 d=0 d=1 d=2 d=3 j=1 j=2 j=2 j=1 1.2 1 0.8 0.6 0.4 0.2 0 -0.2 -0.1 0 0.1 0.2 0.3 0.4 0.5 Koha (s) Figure 6: Waveform of results 1 (for half-period) 6 0.6
  • 7. International Journal of Electronics and Communication Engineering & Technology (IJECET), ISSN 0976 – 6464(Print), ISSN 0976 – 6472(Online), Volume 5, Issue 1, January (2014), © IAEME Results 2: For D = 6, µ=0.4. Tm = 0.50 D =6 µ = 0.40 j=[123321] ============================================= d(0), j(1) td1=0.0316[s] -> td2=0.0518[s] dt=0.0202[s] d(1), j(2) td1=0.1073[s] -> td2=0.1427[s] dt=0.0355[s] ..................................................... d(4), j(2) td1=0.3573[s] -> td2=0.3927[s] dt=0.0355[s] d(5), j(1) td1=0.4482[s] -> td2=0.4684[s] dt=0.0202[s] ============================================= Tm = 0.50 | D = 6 | µ = 0.40 1.4 d=0 d=1 d=2 d=3 d=4 d=5 j=1 j=2 j=3 j=3 j=2 j=1 1.2 1 0.8 0.6 0.4 0.2 0 -0.2 -0.1 0 0.1 0.2 0.3 0.4 0.5 Koha (s) Figure 7: Waveform of results 2 (for half-period) Results 3: For D=8. Tm = 0.50 D =8 µ = 0.40 j=[12344321] ============================================= d(0), j(1) td1=0.0237[s] -> td2=0.0388[s] dt=0.0151[s] d(1), j(2) td1=0.0804[s] -> td2=0.1071[s] dt=0.0266[s] ................................................. d(6), j(2) td1=0.3929[s] -> td2=0.4196[s] dt=0.0266[s] d(7), j(1) td1=0.4612[s] -> td2=0.4763[s] dt=0.0151[s] ============================================= 7 0.6
  • 8. International Journal of Electronics and Communication Engineering & Technology (IJECET), ISSN 0976 – 6464(Print), ISSN 0976 – 6472(Online), Volume 5, Issue 1, January (2014), © IAEME Tm = 0.50 | D = 8 | µ = 0.40 1.4 1.2 1 0.8 0.6 0.4 0.2 0 -0.2 -0.1 0 0.1 0.2 0.3 0.4 0.5 0.6 Koha (s) Figure 8: Waveform of results 3 (for half-period) Results 4: For D=16. Tm = 0.50 D = 16 µ = 0.40 j=[1234567887654321] ============================================= d(0), j(1) td1=0.0118[s] -> td2=0.0194[s] dt=0.0076[s] d(1), j(2) td1=0.0402[s] -> td2=0.0535[s] dt=0.0133[s] ................................................... d(14), j(2) td1=0.4465[s] -> td2=0.4598[s] dt=0.0133[s] d(15), j(1) td1=0.4806[s] -> td2=0.4882[s] dt=0.0076[s] ============================================= Tm = 0.50 | D = 16 | µ = 0.40 1.4 1.2 1 0.8 0.6 0.4 0.2 0 -0.2 -0.1 0 0.1 0.2 0.3 0.4 0.5 Koha (s) Figure 9: Waveform of results 4 (for half-period) 8 0.6
  • 9. International Journal of Electronics and Communication Engineering & Technology (IJECET), ISSN 0976 – 6464(Print), ISSN 0976 – 6472(Online), Volume 5, Issue 1, January (2014), © IAEME G1 C1 G2 S1 S2 V_load + 0.000 V V_batt G2 C2 R_Load S4 G1 S3 Figure 10: Diagram of single phase dc-ac converter Sinjali i gaitit G1: Tm = 0.50 | D = 6 | µ = 0.40 1 0.8 0.6 0.4 0.2 0 -0.2 0 0.2 0.4 0.6 0.8 1 0.8 1 Koha (s) Sinjali i gaitit G2: Tm = 0.50 | D = 6 | µ = 0.40 1 0.8 0.6 0.4 0.2 0 -0.2 0 0.2 0.4 0.6 Koha (s) Figure 11: Gating signals G1 and G2 9
  • 10. International Journal of Electronics and Communication Engineering & Technology (IJECET), ISSN 0976 – 6464(Print), ISSN 0976 – 6472(Online), Volume 5, Issue 1, January (2014), © IAEME V load 10 5 0 -5 -10 Figure 12: Voltage waveform at dummy load ܴ௅௢௔ௗ 0 5. 0.1 0.2 0.3 0.4 0.5 Koha (s) 0.6 0.7 0.8 0.9 1 SUMMARY The strategy of controlling the gates is shown in Figure 10. Switches S1 and S3 will be controlled by the signal G1, and switches G2 and G4 will control by the gate signal G2. G1 and G2 signals generated from the microcontroller. The microcontroller calculates time between two zerocrosses and generates gating signals using Haar scaling functions. Microcontroller accounts time Tm and taking D and µ generates signals G1 and G2 in pine PD3, PB3, PB1 and PB2. The voltage waveform at output inverter for load resistive will be as shown in Figure 12. As a result, we can conclude that the use of wavelets and Haar scaling functions - is easier to implement because it requires only two equations to generate switching signals. By this approach, there is no need for carrier signal – carrierless PWM approach, too. For future works, real-time experiments has to be done to get data of the accuracy of frequency calculation, distortions factor and transient effects while changing the frequency of input signal. 6. REFERENCE [1] [2] [3] [4] [5] [6] [7] Holmes, D. G. & Lipo, T. A (2003). PWM for Power Converters Principles and Practice, John Wiley & Sons. Inc., Canada Lipo, T. A. (1996). Introduction to AC Machine Machine Design, Vol. 1, University of Wisconsin Power Electronics Research Center, Madison F. Wang, Sine-Triangle versus Spae Vector Modulation for Three-Level PWM Voltage Source Inverter, IEEE Trans. On Industry Applications, Vol. 38, No. 2, 2002 J. H. Seo, C. H. Choi, V. Hyun, A. New Simplified Space Vector PWM Method for Three Level Inverters, IEEE Trans. On Power Electronics, Vol. 16, No. 4, 2001. M. Rashid, “Power Electronics: Circuits, Devices and Applications”, Third edition, Prentice Hall, 2003. L.Raguraman and P.Sabarish, “Integrated Bridgeless PWM Based Power Converters”, International Journal of Advanced Research in Engineering & Technology (IJARET), Volume 4, Issue 5, 2013, pp. 17 - 23, ISSN Print: 0976-6480, ISSN Online: 0976-6499. B.Kiran Kumar, Y.V.Sivareddy and M.Vijayakumar, “Comparative Analysis of Sine Triangle and Space Vector PWM for Cascaded Multilevel Inverters”, International Journal of Electrical Engineering & Technology (IJEET), Volume 4, Issue 2, 2013, pp. 155 - 164, ISSN Print: 0976-6545, ISSN Online: 0976-6553. 10