# Example Astrid setup script for observing Mercury # project 06B49, Jun 2006 # also project 08A_069, April 2008 # configuration - 2 kHz offset from nominal 8560 MHz Vsetup = """ receiver = 'Rcvr8_10' obstype = 'Radar' backend = 'Radar' nwin = 1 restfreq = 8560 deltafreq = -0.002 bandwidth = 20 swmode = "tp_nocal" swper = 0.2 swfreq = 0.0, 0.0 tint = 0.2 vlow = 0 vhigh = 0 vframe = "topo" vdef = "Radio" noisecal = "lo" pol = "Circular" """ Catalog(None) # dummy source catalog (needed so "Mercury" is understood) |
# Astrid script for observing Mercury
# project AGBT08A_069
#
# read config from file
execfile("/home/astro-util/radar/merc_Apr08/Mercury_Xsetup.py")
Configure(Vsetup)
# move to Mercury
Slew("Mercury")
# peak and focus on a nearby calibrator
AutoPeakFocus(None, None, 8560.0)
Break("Check the peak/focus")
# peak on Mercury : 20' scans
Peak("Mercury", Offset("Encoder",0.333,0), Offset("Encoder",0,0.333), 30, "1")
Break("Check the peak")
# configure for radar and adjust levels on Mercury
Configure(Vsetup)
SetValues("ConverterRack", { 'CMAttenuator10' : 3, 'CMAttenuator14':6 } )
Slew("Mercury")
Balance()
Break("Here we may have to adjust power levels manually")
#all is ready now, so track Mercury for 2.5 hours
Track("Mercury", None, 8000, "1")
# alternately, track until specific UT time:
Track("Mercury", None, None, "1", stoptime="17:45:00") |
# Configurations for Lunar radar
#
# 430 MHz setup
#
c430 = """
receiver = 'Rcvr_450'
obstype = 'Radar'
backend = 'Radar'
nwin = 1
restfreq = 430.000006
deltafreq = 0
bandwidth = 40
swmode = "tp_nocal"
swper = 1.0
swfreq = 0.0, 0.0
tint = 30
vlow = 0
vhigh = 0
vframe = "topo"
vdef = "Radio"
noisecal = "off"
pol = "Circular"
"""
# function for setting attenuators
#
def c430atten() :
pfattens = {'ifChannelCAttenuator':12, 'ifChannelDAttenuator':12 }
SetValues("RcvrPF_1", pfattens)
cmattens = { 'CMAttenuator10':2, 'CMAttenuator14':16 }
SetValues("ConverterRack", cmattens)
# Radar Observing at S-band (2380 MHz)
c2380 = """
receiver = 'Rcvr2_3'
obstype = 'Radar'
backend = 'Radar'
nwin = 1
restfreq = 2405
# note: set LO2=15810 (conv modules 10 & 14)
# so that 2380 MHz converts to 720 at the inputs to the PFS.
# Rest freq is set to 2410 so that IF Rack 80 MHz bandpass filter
# helps cut down the satellite audio channel (at about 2340 MHz)
bandwidth = 80
swmode = "tp_nocal"
swper = 0.2
swfreq = 0.0, 0.0
tint = 0.2
vlow = 0
vhigh = 0
vframe = "topo"
vdef = "Radio"
noisecal = "off"
pol = "Circular"
lo2freq = 15805
iftarget=2
""" |
# -------------------------------- # Moon Fermi FORMAT=EPHEMERIS COORDMODE=GAPPT NAME=Moon_Fermi HEAD= DATE UTC RA DEC 2008-05-01 12:03:00 23:10:29.26 -04:01:15.8 2008-05-01 12:04:00 23:10:30.60 -04:01:00.1 2008-05-01 12:05:00 23:10:31.93 -04:00:44.4 2008-05-01 12:06:00 23:10:33.27 -04:00:28.7 2008-05-01 12:07:00 23:10:34.60 -04:00:13.0 2008-05-01 12:08:00 23:10:35.94 -03:59:57.3 2008-05-01 12:09:00 23:10:37.27 -03:59:41.5 |
# astrid script for observing at 430 MHz
# import the config definitions
#
execfile("/home/astro-util/radar/moon_may08/lunasetups2.py")
# access the ephemeris tables for P-band
Catalog("/home/astro-util/radar/moon_may08/moon.srpm.pointing.GBT")
Catalog("/home/astro-util/radar/moon_may08/moon.Fermi.pointing.GBT")
Catalog("/home/astro-util/radar/moon_may08/moon.Aston.pointing.GBT")
Catalog("/home/astro-util/radar/moon_may08/moon.Pythag.pointing.GBT")
# initial config at P-band
Configure(c430)
Slew("Moon")
# set attenuators if desired
c430atten()
# or let the system set levels automatically
Balance()
Track( "Moon_Fermi", None, 12000) |
# astrid script for observing at 2380 MHz
# import the config definitions
#
execfile("/home/astro-util/radar/moon_june08/lunasetups2.py")
# access the ephemeris tables for S-band
Catalog("/home/astro-util/radar/moon_june08/moon.Haus1.pointing.GBT")
Catalog("/home/astro-util/radar/moon_june08/moon.Haus2.pointing.GBT")
---
# initial config at S-band
Configure(c2380)
Slew("Moon")
# let the system set levels automatically
Balance()
Track( "Moon_Haus1", None, 7200) |
-- FrankGhigo - 03 Jul 2008
| Topic RadarObserverAdvice . { Edit | Attach | Ref-By | Printable | Diffs | r1.9 | > | r1.8 | > | r1.7 | More } |
| Revision r1.9 - 31 Jul 2008 - 22:32 GMT - FrankGhigo |
Content copyright © 1999-2007 by the contributing authors. All material on this collaboration platform is the property of the contributing authors. |