0% found this document useful (0 votes)
36 views6 pages

Innovation 2: Amplitude Shift Keying

The document describes Amplitude Shift Keying (ASK) modulation. ASK is a type of amplitude modulation that represents binary data as variations in the amplitude of a carrier signal. In ASK, a high input results in the carrier signal amplitude, while a low input results in zero amplitude. The document includes a block diagram of an ASK modulator and discusses advantages like high bandwidth efficiency and simple receiver design, as well as disadvantages like lower power efficiency and susceptibility to noise interference. Applications of ASK mentioned include digital communication links, satellite and HDTV broadcast channels, and fiber optic transmission.

Uploaded by

Keshav Mishra
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
36 views6 pages

Innovation 2: Amplitude Shift Keying

The document describes Amplitude Shift Keying (ASK) modulation. ASK is a type of amplitude modulation that represents binary data as variations in the amplitude of a carrier signal. In ASK, a high input results in the carrier signal amplitude, while a low input results in zero amplitude. The document includes a block diagram of an ASK modulator and discusses advantages like high bandwidth efficiency and simple receiver design, as well as disadvantages like lower power efficiency and susceptibility to noise interference. Applications of ASK mentioned include digital communication links, satellite and HDTV broadcast channels, and fiber optic transmission.

Uploaded by

Keshav Mishra
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 6

DISHA CHAUHAN CSE(Vth SEM) 01011502717

INNOVATION 2

Amplitude Shift Keying


Amplitude Shift Keying (ASK) is a type of Amplitude Modulation which
represents the binary data in the form of variations in the amplitude of a signal.
Any modulated signal has a high frequency carrier. The binary signal when ASK
modulated, gives a zero value for Low input while it gives the carrier output for
High input.
The following figure represents ASK modulated waveform along with its input.

ASK Modulator
The ASK modulator block diagram comprises of the carrier signal generator, the
binary sequence from the message signal and the band-limited filter. Following
is the block diagram of the ASK Modulator.
DISHA CHAUHAN CSE(Vth SEM) 01011502717

The carrier generator, sends a continuous high-frequency carrier. The binary


sequence from the message signal makes the unipolar input to be either High or
Low. The high signal closes the switch, allowing a carrier wave. Hence, the
output will be the carrier signal at high input. When there is low input, the switch
opens, allowing no voltage to appear. Hence, the output will be low.

The band-limiting filter, shapes the pulse depending upon the amplitude and
phase characteristics of the band-limiting filter or the pulse-shaping filter.
Advantages of ASK modulation
Following are the benefits or advantages of ASK modulation.

➨It offers high bandwidth efficiency.

➨It has simple receiver design.

➨ASK modulation can be used to transmit digital data over optical fiber.

➨ASK modulation and ASK demodulation processes are comparatively


inexpensive.

➨Its variant OOK is used at radio frequencies to transmit morse codes.

Disadvantages of ASK modulation


Following are the drawbacks or disadvantages of ASK modulation.

➨It offers lower power efficiency.

➨ASK modulation is very susceptible to noise interference. This is due to the


fact that noise affects the amplitude. Hence another alternative modulation
technique such as BPSK which is less susceptible to error than ASK is used.

APPLICATIONS
 ASK is used almost in every digital communication link including your cell
phone and cable TV.
DISHA CHAUHAN CSE(Vth SEM) 01011502717

 The In most wireless links such as satellite TV and high definition TV


broadcast channels uses two ASK links in parallel, each of 16-levels, but
rotated in phase 90 degrees, thus the 16x16 combination is known as 256
QAM. 4x4 or 64 QAM is also popular.
 In fiber optics it is quite common to ignore phase and use only one ASK
channel .
DISHA CHAUHAN CSE(Vth SEM) 01011502717

CODE
x=[ 1 0 0 1 1 0]; % Binary Information
bp=1/5000000; % bit period
disp(' Binary information at Trans mitter :');
disp(x);
%XX representation of transmitting binary information as digital signal XXX
bit=[];
for n=1:1:length(x)
if x(n)==1;
se=ones(1,100)*3;
else x(n)==0;
se=zeros(1,100);
end
bit=[bit se];
end

t1=bp/100:bp/100:100*length(x)*(bp/100);
subplot(3,1,1);
plot(t1,bit,'lineWidth',2.5);grid on;
axis([ 0 bp*length(x) -.5 3]);
ylabel('amplitude(volt)');
xlabel(' time(sec)');

%XXXXXXXXXXXXXXXXXXXXXXX Binary-ASK modulation


XXXXXXXXXXXXXXXXXXXXXXXXXXX%
A1=2; % Amplitude of carrier signal for information 1
DISHA CHAUHAN CSE(Vth SEM) 01011502717

A2=0; % Amplitude of carrier signal for information 0


br=5000000; % bit rate
f=50000000; % carrier frequency
t2=bp/99:bp/99:bp;
ss=length(t2);
m=[];
for (i=1:1:length(x))
if (x(i)==1)
y=A1*cos(2*pi*f*t2);
else
y=A2*cos(2*pi*f*t2);
end
m=[m y];
end
t3=bp/99:bp/99:bp*length(x);
subplot(3,1,2);
plot(t3,m);
xlabel('time(sec)');
ylabel('amplitude(volt)');
title('waveform for binary ASK modulation coresponding binary information');
DISHA CHAUHAN CSE(Vth SEM) 01011502717

OUTPUT

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy