-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathReceiver.py
391 lines (317 loc) · 13.9 KB
/
Receiver.py
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
# Copyright (C) 2011 Associated Universities, Inc. Washington DC, USA.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
#
# Correspondence concerning GBT software should be addressed as follows:
# GBT Operations
# National Radio Astronomy Observatory
# P. O. Box 2
# Green Bank, WV 24944-0002 USA
from copy import deepcopy
# from Holography import Holography
from StaticDefs import BW_XFER
from StaticDefs import CHOPPER
from StaticDefs import FILTERS
from StaticDefs import NOTCH_FILTER
from StaticDefs import POL
from StaticDefs import RCVR_FREQS
from StaticDefs import RECEIVERS
from StaticDefs import TUNING_FREQ
from StaticDefs import XFERSWITCH
from StaticDefs import DUAL_POL_RCVRS
from Manager import Manager
rcvr_mng = "NONE"
def get_rcvr():
return rcvr_mng
def set_rcvr(mng):
global rcvr_mng
rcvr_mng = mng
class Receiver(Manager):
"""
This class is responsible for:
* expanding a given configuration for given receiver using defaults
* generating parameters from given info
This was stolen from config tools Receiver, along with the
ConfigValidator.set_receiver_defaults.
The seq attribute is just a convenience so I didn't have to
change a lot of code.
"""
# def __init__(self, config_table, freq_calc, seq=None):
def __init__(self, config_table, ifSys=None): #, tuning_freq=None, bw_total=None, if_center=None):
"""Base class for all Receivers"""
super(Receiver, self).__init__(config_table)
# if config_table["backend"] == "CCB":
# return
# if config_table["receiver"] == "Holography":
# Holography(config_table, freq_calc, None, seq)
# if config_table["backend"] == "Holography":
# return
# if seq is not None:
# self.seq = seq
# else:
# self.seq = MySeq()
self.ifSys = ifSys
self.rxName = config_table['receiver']
self.filter_setting = -1
# self.config = config_table
# self.freq_calc = freq_calc
# self.tuning_freq = self.freq_calc.get_tuning_freq()
# get what we need from the ifSys
if ifSys is not None:
self.tuning_freq = ifSys.tuningFreq
self.bw_total = ifSys.bwTotal
self.if_center = ifSys.ifCenter
self.if1 = ifSys.if1
# TBF: is this specified in StaticDefs?
self.rxLO1First = ['Rcvr8_10']
def setParams(self):
"Use the current info to generate manager parameters"
self.set_manager()
self.set_tuning_freq()
# we've done this already
self.set_filters()
if self.config["receiver"] in POL:
self.set_polarization()
if self.config["receiver"] in XFERSWITCH:
self.set_transfer_switches()
if self.mng in BW_XFER:
self.set_beam_xfer_switches()
# self.check_rcvr_freqs()
def setReceiverDefaultsForConfig(self, config):
"""
Set receiver default keyword values; stolen from ConfigValidator.
This is an exception because we aren't setting parameters, so perhaps
it belongs somewhere else?
"""
self.default_values = []
receiver = config["receiver"]
if config["polarization"] is None:
if receiver in DUAL_POL_RCVRS:
if (config["backend"] in ("VLBA_DAR", "S2", "Radar") and
"Rcvr68_92" not in receiver):
config["polarization"] = "Circular"
self.default_values.append(("polarization",
config["polarization"]))
else:
config["polarization"] = "Linear"
self.default_values.append(("polarization",
config["polarization"]))
else:
config["polarization"] = "Circular"
self.default_values.append(("polarization",
config["polarization"]))
if config["receiver"] == "Holography":
config["noisecal"] = None
elif config["noisecal"] is None:
if config["receiver"] == "RcvrArray18_26":
config["noisecal"] = "lo"
elif config["backend"] == "Radar":
config["noisecal"] = "off"
else:
config["noisecal"] = "lo-ext"
self.default_values.append(("noisecal", config["noisecal"]))
if receiver == "Rcvr1_2" and config["notchfilter"] is None:
config["notchfilter"] = "In"
self.default_values.append(("notchfilter", config["notchfilter"]))
if receiver == "Rcvr40_52" and config["chopper"] is None:
config["chopper"] = "off"
self.default_values.append(("chopper", config["chopper"]))
if receiver in ("Rcvr12_18", "Rcvr18_22", "Rcvr22_26", "Rcvr18_26"):
if config["beamswitch"] is None:
if config["swtype"] == "bsw":
config["beamswitch"] = "ext"
self.default_values.append(("beamswitch",
config["beamswitch"]))
else:
config["beamswitch"] = "thru"
self.default_values.append(("beamswitch",
config["beamswitch"]))
if config["receiver"] in XFERSWITCH:
if config["polswitch"] is None:
if config["swtype"] == "psw":
config["polswitch"] = "ext"
self.default_values.append(("polswitch",
config["polswitch"]))
else:
config["polswitch"] = "thru"
self.default_values.append(("polswitch",
config["polswitch"]))
rcvr_mgr = config["receiver"]
if config["receiver"] in ("Rcvr18_22", "Rcvr22_26"):
rcvr_mgr = "Rcvr18_26"
if rcvr_mgr in BW_XFER:
if config["xfer"] is None:
config["xfer"] = "thru"
elif config["xfer"] not in BW_XFER[rcvr_mgr]:
print("WARNING: xfer keyword value = {} is invalid. "
"Setting xfer to 'thru'".format(config["xfer"]))
config["xfer"] = "thru"
self.default_values.append(("xfer", config["xfer"]))
return config
# def check_rcvr_freqs(self):
# """Verify frequencies are within a give receivers nominal range"""
# bad_freqs = self.freq_calc.check_freqs(
# RCVR_FREQS[self.config["receiver"]][0],
# RCVR_FREQS[self.config["receiver"]][1]
# )
# if bad_freqs:
# print("WARNING: Frequencies adjusted to the local frame and "
# "velocities are outside the recommended receiver range: ")
# for freq in bad_freqs:
# print "Frequency = ", freq
def set_manager(self):
"""Set mgr name which may be different than user specified name"""
global rcvr_mng
self.mng = self.config["receiver"]
NOISECAL = RECEIVERS[self.mng]
if self.mng in ("Rcvr18_22", "Rcvr22_26"):
self.mng = "Rcvr18_26"
self.set_noisecal(NOISECAL)
rcvr_mng = self.mng
def get_rcvr_mng(self):
return self.mng
def set_beam_xfer_switches(self):
"""Set beam transfer switches"""
if self.config["swtype"] != "bsw":
params_to_set = BW_XFER[self.mng][self.config["xfer"]]
for p in params_to_set:
self.seq.add_param(self.mng, p[0], p[1])
else:
self.seq.add_param(self.mng, "xferState", "ctlExt")
def set_transfer_switches(self):
"""Set transfer switches"""
params_to_set = \
XFERSWITCH[self.config["receiver"]][self.config["polswitch"]]
for i in range(0, len(params_to_set)):
self.seq.add_param(self.mng, params_to_set[i][0],
params_to_set[i][1])
def set_noisecal(self, NOISECAL):
"""Set noise cal switches"""
if self.config["noisecal"] in NOISECAL:
for i in range(0, len(NOISECAL[self.config["noisecal"]])):
self.seq.add_param(self.mng,
NOISECAL[self.config["noisecal"]][i][0],
NOISECAL[self.config["noisecal"]][i][1])
def set_polarization(self):
"""Set receiver polarization"""
self.seq.add_param(self.mng, POL[self.config["receiver"]][0],
POL[self.config["receiver"]][1] +
self.config["polarization"])
def get_if_freq_range(self):
"""Return frequency range """
return self.if_freq_low, self.if_freq_high
def set_tuning_freq(self):
"""Set tuning frequency"""
if TUNING_FREQ[self.mng]:
self.seq.add_param(self.mng, "tuning_frequency",
str(self.tuning_freq))
def get_tuning_freq(self):
"""Return tuning frequency"""
return self.tuning_freq
def set_filters(self):
"""Set receiver filters"""
found = 0
if self.rxName in self.rxLO1First:
# fitler is AFTER LO1
if_center = self.if1
else:
if_center = self.if_center
# filter are BEFORE LO1
# filterFreq = tuningFreq
bw_total = self.bw_total #self.freq_calc.get_bw_total()
if_center = self.if_center #self.freq_calc.get_center_freq()
self.if_freq_low = if_center - (0.5 * bw_total)
self.if_freq_high = if_center + (0.5 * bw_total)
if self.config["receiver"] in FILTERS:
param_names, filters, rcvr_type = deepcopy(FILTERS[self.config["receiver"]])
bw_low = self.tuning_freq - (0.5 * bw_total)
bw_high = self.tuning_freq + (0.5 * bw_total)
if rcvr_type == 0: # Mixer before filter. Convert filter freq
bw_low = self.if_freq_low
bw_high = self.if_freq_high
for freq in filters:
if bw_low >= freq[0] and bw_high <= freq[1]:
self.filter_setting = freq[2]
self.filter_bandwidth = freq[1] - freq[0]
found = 1
break
if found == 0:
self.filter_setting = filters[len(filters) - 1][2]
self.filter_bandwidth = (filters[len(filters) - 1][1] -
filters[len(filters) - 1][0])
print("Warning: Total bandwidth is greater than any receiver "
"filter available: Setting receiver filter to maximum")
self.seq.add_param(self.mng, param_names[0], self.filter_setting)
self.seq.add_param(self.mng, param_names[1], self.filter_setting)
if self.config["receiver"] in NOTCH_FILTER:
self.seq.add_param(self.mng, "notchFilter",
self.config["notchfilter"])
# if self.config["notchfilter"] != "Out":
# bad_freqs = self.freq_calc.compare_local_frame_freqs(
# NOTCH_FILTER[self.config["receiver"]][0],
# NOTCH_FILTER[self.config["receiver"]][1]
# )
# if bad_freqs:
# print("WARNING: Frequencies adjusted to the local frame "
# "and velocities fall within notch filter limits")
# for freq in bad_freqs:
# print ("Frequency = ", freq)
if self.config["receiver"] in CHOPPER:
if self.config["chopper"] == "on":
self.seq.add_param(self.mng, "chopperCntl", "swOn")
else:
self.seq.add_param(self.mng, "chopperCntl", "swOff")
# the if_freq_low high is used by IFRAck to determine its filters
# is based on the center ifnom center freq not the computed one
# self.iffilter_center = self.freq_calc.get_ifcenter()
# self.if_freq_low = self.iffilter_center - (0.5 * bw_total)
# self.if_freq_high = self.iffilter_center + (0.5 * bw_total)
def get_filter_setting(self):
"""Return receiver filters"""
return self.filter_setting
def get_filter_bandwidth(self):
"""Return bandwidth"""
return self.filter_bandwidth
def quickRcvr1_2Test():
config = {
'receiver' : 'Rcvr1_2',
'beam' : 'B1',
'obstype' : 'Continuum',
'backend' : 'DCR',
'nwin' : 1,
'restfreq' : 1400,
'deltafreq' : 0,
'bandwidth' : 80,
'swmode' : "tp",
'swtype' : "none",
'swper' : 0.1,
# 'swfreq' : 0,0,
'tint' : 0.1,
'vlow' : 0.0,
'vhigh' : 0.0,
'vframe' : "topo",
'vdef' : "Radio",
'noisecal' : "lo",
'pol' : "Linear"
}
# add these! But how and why? TF
config['polarization'] = 'XL'
config['polswitch'] = 'cross'
tuning = 1420.
r = Receiver(config, tuning)
print (r.seq.params)
def main():
quickRcvr1_2Test()
if __name__ == '__main__':
main()