forked from pranavsingh007/VLABS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBFSK.py
More file actions
137 lines (102 loc) · 3.96 KB
/
Copy pathBFSK.py
File metadata and controls
137 lines (102 loc) · 3.96 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
import numpy as np
import matplotlib.pyplot as plt
def BFSK_PLOT1(user_input,sample_rate,bit_rate,freq1,freq2,duration,amplitude,pulse_code):
if user_input == 'Binary':
bits = str(pulse_code)
bitss = str(bits)
t_bit = np.arange(0, len(bitss) / bit_rate, 1 / sample_rate)
square=[]
print(bits)
print(len(t_bit))
for i in bitss:
for j in range(len(t_bit)):
square.append(int(i))
signal = np.array([])
for bit in bitss:
if bit == '0':
signal = np.append(signal, amplitude * np.cos(2 * np.pi * freq1 * t_bit))
else:
signal = np.append(signal, amplitude * np.cos(2 * np.pi * freq2 * t_bit))
# Generate time vector for the entire signal
t = np.arange(0, len(signal) / sample_rate, 1 / sample_rate)
# Plot the BFSK signal
plt.plot(t, square)
plt.xlabel('Time (s)')
plt.ylabel('Amplitude')
plt.suptitle('Square_Wave Pulses')
plt.grid(True)
plt.show()
else:
bits = np.random.randint(0, 2, int(bit_rate * duration))
t_bit = np.arange(0, len(bits) / bit_rate, 1 / sample_rate)
square=[]
print(bits)
print(len(t_bit))
for i in bits:
for j in range(len(t_bit)):
square.append(i)
# Generate BFSK signal
signal = np.array([])
for bit in bits:
if bit == 0:
signal = np.append(signal, amplitude * np.cos(2 * np.pi * freq1 * t_bit))
else:
signal = np.append(signal, amplitude * np.cos(2 * np.pi * freq2 * t_bit))
# Generate time vector for the entire signal
t = np.arange(0, len(signal) / sample_rate, 1 / sample_rate)
# Plot the BFSK signal
plt.plot(t, square)
plt.xlabel('Time (s)')
plt.ylabel('Amplitude')
plt.suptitle('Sqaure-Wave Pulses')
plt.grid(True)
plt.show()
def BFSK_PLOT2(user_input,sample_rate,bit_rate,freq1,freq2,duration,amplitude,pulse_code):
if user_input == 'Binary':
bits = str(pulse_code)
bitss = str(bits)
t_bit = np.arange(0, len(bitss) / bit_rate, 1 / sample_rate)
square=[]
print(bits)
print(len(t_bit))
for i in bitss:
for j in range(len(t_bit)):
square.append(int(i))
signal = np.array([])
for bit in bitss:
if bit == '0':
signal = np.append(signal, amplitude * np.cos(2 * np.pi * freq1 * t_bit))
else:
signal = np.append(signal, amplitude * np.cos(2 * np.pi * freq2 * t_bit))
# Generate time vector for the entire signal
t = np.arange(0, len(signal) / sample_rate, 1 / sample_rate)
plt.plot(t, signal)
plt.xlabel('Time (s)')
plt.ylabel('Amplitude')
plt.title('Binary Frequency Shift Keying (BFSK) Signal')
plt.grid(True)
plt.show()
else:
bits = np.random.randint(0, 2, int(bit_rate * duration))
t_bit = np.arange(0, len(bits) / bit_rate, 1 / sample_rate)
square=[]
print(bits)
print(len(t_bit))
for i in bits:
for j in range(len(t_bit)):
square.append(i)
# Generate BFSK signal
signal = np.array([])
for bit in bits:
if bit == 0:
signal = np.append(signal, amplitude * np.cos(2 * np.pi * freq1 * t_bit))
else:
signal = np.append(signal, amplitude * np.cos(2 * np.pi * freq2 * t_bit))
# Generate time vector for the entire signal
t = np.arange(0, len(signal) / sample_rate, 1 / sample_rate)
plt.plot(t, signal)
plt.xlabel('Time (s)')
plt.ylabel('Amplitude')
plt.suptitle('Binary Frequency Shift Keying (BFSK) Signal')
plt.grid(True)
plt.show()