Source code for instruments.AnritsuMS2667C
import time
#import visa
[docs]class AnritsuMS2667C(object):
'''
This class models a Spectrum Analyzer
'''
def __init__(self, res_manager, address='GPIB0::23::INSTR'):
'''
Constructor method
:param res_manager: PyVisa resource manager
:type res_manager: PyVisa resourceManager object
:param address: SCPI address of instrument
:type address: String
'''
self.active = False
self.gpib = res_manager.open_resource(address)
self.gpib.write('INI')
time.sleep(0.55)
self.gpib.write ('*IDN?')
info = self.gpib.read()
info = info.strip()
print ('Connections Successful: %s' %info)
self.gpib.write('RL 30DBM') #reference level is 30 dBm, corresponds to 10Vpp
[docs] def whoAmI(self):
''':returns: reference to device'''
return 'RFMeter'
[docs] def change_state(self):
if self.active == True:
self.active = False
else:
self.active = True
[docs] def getPeak(self, central, span):
'''
Queries the peak for a specified central and span.
:param central: Specified central
:type central: Float
:param span: Specified span
:type span: Float
:returns: Tuple of readings
'''
self.gpib.write('CF %dMHZ' % central) # all in MHz
self.gpib.write('SP %dMHZ' % span)
self.gpib.write('TS') #take sweep
self.gpib.write('MKR 0') # all in MHz
self.gpib.write('MKPK')
self.gpib.write('MKF?')
peakfreq = float(self.gpib.read())
self.gpib.write('MKL?')
level = float(self.gpib.read())
return (peakfreq, level)
'''
Copyright (C) 2017 Robert Polster
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 3 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, see <http://www.gnu.org/licenses/>.
'''