forked from demorest/tempo_utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tempo_utils.py
692 lines (642 loc) · 24.7 KB
/
tempo_utils.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
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
#! /usr/bin/env python
import re, struct, os, string, shutil
import subprocess
import sys
import numpy
import tempfile
toa_commands = ("DITHER", "EFAC", "EMAX", "EMAP", "EMIN", "EQUAD", "FMAX",
"FMIN", "INCLUDE", "INFO", "JUMP", "MODE", "NOSKIP", "PHA1", "PHA2",
"PHASE", "SEARCH", "SIGMA", "SIM", "SKIP", "TIME", "TRACK", "ZAWGT",
"FORMAT", "EFLOOR")
def toa_format(line):
"""Identifies a TOA line as one of the following types: Comment, Command,
Blank, Tempo2, Princeton, ITOA, Parkes, Unknown."""
try:
if line[0]=='C' or line[0]=='#':
return "Comment"
elif line.startswith(toa_commands):
return "Command"
elif re.match("^\s+$", line):
return "Blank"
elif re.match("[0-9a-z@] ",line):
return "Princeton"
elif (re.match("\S\S",line) and line[14]=='.'
and re.match("[a-zA-Z]{2}",line[57:59])):
return "ITOA"
elif re.match(" ",line) and line[41]=='.':
return "Parkes"
elif len(line.split())>=5:
return "Tempo2"
else:
return "Unknown"
except:
return "Unknown"
class toa:
def __init__(self, line=None):
self.line = line.rstrip('\n')
if self.line != None:
self.parse_line()
def __repr__(self):
return self.line
def parse_line(self):
self.command = None
self.arg = None
self.site = None
self.freq = None
self.mjd = None
self.imjd = None
self.fmjd = None
self.error = None
self.ddm = None
self.res = None
self.fname = None
self.info = None
self.flags = {}
self.format = toa_format(self.line)
if self.format=="Command":
tmp = self.line.split()
if len(tmp)==1:
self.command = tmp[0]
elif len(tmp)>1:
self.command = tmp[0]
self.arg = tmp[1]
elif self.format=="Princeton":
self.site = self.line[0]
self.freq = float(self.line[15:24])
self.mjd = float(self.line[24:44])
self.imjd = int(self.mjd)
if self.line[29]=='.':
self.fmjd = float(self.line[29:44])
elif self.line[30]=='.':
self.fmjd = float(self.line[30:44])
self.error = float(self.line[44:53])
try:
self.ddm = float(self.line[68:78])
except:
self.ddm = 0.0
elif self.format=="Parkes":
self.freq = float(self.line[25:34])
self.mjd = float(self.line[34:55])
self.imjd = int(self.mjd)
self.fmjd = float(self.line[41:55])
# TODO phase offset
self.error = float(self.line[63:71])
self.site = self.line[79]
elif self.format=="Tempo2":
# This could use more error catching...
fields = self.line.split()
self.fname = fields.pop(0)
self.freq = float(fields.pop(0))
mjdstr = fields.pop(0)
self.mjd = float(mjdstr)
self.imjd = int(self.mjd)
self.fmjd = float(mjdstr[mjdstr.find('.'):])
self.error = float(fields.pop(0))
self.site = fields.pop(0)
# All the rest should be flags
for i in range(0,len(fields),2):
self.flags[fields[i].lstrip('-')] = fields[i+1]
elif self.format=="ITOA":
raise RuntimeError, \
"TOA format '%s' not implemented yet" % self.format
def is_toa(self):
"""Return True if this is a valid TOA (ie not command/comment/etc)"""
if self.format in ("Tempo2", "Princeton", "Parkes", "ITOA"):
return True
else:
return False
def is_commented_toa(self):
"""Return True if this is a commented out TOA line"""
if self.format == "Comment":
try:
return toa(self.line.lstrip('C# ')).is_toa()
except:
return False
else:
return False
def flag(self,flagname):
"""Return the value of the flag, or None if flag not present."""
try:
rv = self.flags[flagname]
except KeyError:
rv = None
return rv
def comment(self):
"""Comment out this TOA line."""
if self.format != 'Comment':
self.__init__('C ' + self.line)
def uncomment(self):
"""Uncomment this TOA line."""
if self.format == 'Comment':
self.__init__(self.line.lstrip('C# '))
def _unpack_record(raw,fmt=None):
dlen = len(raw) - 8
if fmt is None:
fmt = 'd' * (dlen/8)
ss = struct.unpack('=i'+fmt+'i',raw)
if ss[0]!=dlen or ss[-1]!=dlen:
raise RuntimeError,\
"Record length does not match (s1=%d s2=%d len=%d)" % (ss[0],
ss[-1], dlen)
return ss[1:-1]
class residual:
def __init__(self,raw=None):
self.mjd_bary = None
self.res_phase = None
self.res_us = None
self.ophase = None
self.rf_bary = None
self.weight = None
self.err_us = None
self.prefit_phase = None
self.prefit_us = None
self.ddm = None
if raw!=None:
self.parse_raw(raw)
def __repr__(self):
if self.mjd_bary==None:
return "Uninitialized residual"
return "Residual at MJD %.10f, %.3f MHz: %+.3f +/- %.3f us" \
% (self.mjd_bary, self.rf_bary, self.res_us, self.err_us)
def parse_raw(self,raw):
if len(raw) != 80:
raise RuntimeError, "Invalid raw residual block (len=%d)" \
% len(raw)
(s1, self.mjd_bary, self.res_phase, self.res_us, self.ophase,
self.rf_bary, self.weight, self.err_us, self.prefit_phase,
self.ddm, s2) = struct.unpack("=idddddddddi", raw)
if s1 != 72 or s2 != 72:
raise RuntimeError, "Error parsing residual block (s1=%d s2=%d)" \
% (s1, s2)
# Change units:
self.res_us *= 1e6
self.prefit_us = self.res_us / self.res_phase * self.prefit_phase
def read_resid2_file(filename="resid2.tmp"):
"""Reads a tempo 'resid2.tmp' file and returns the result as a
list of residual objects. Each residual object has fields corresponding
to the info in resid2.tmp:
resid.mjd_bary Barycentric MJD
resid.res_phase Residual in turns
resid.res_us Residual in us
resid.ophase Orbital phase in turns
resid.rf_bary Barycentric freq, MHz
resid.weight Weight of point in fit
resid.err_us TOA uncertainty, us
resid.prefit_phase Prefit residual in turns
resid.prefit_us Prefit residual, us
resid.ddm DM correction from TOA line
"""
f = open(filename, "r")
resids = []
r = f.read(80)
while len(r)==80:
resids += [residual(r)]
r = f.read(80)
f.close()
return resids
def read_design_matrix(filename='design.tmp'):
"""Reads a tempo 'design.tmp' file and returns the result as a
numpy array, dims (ntoa,nparam)"""
f = open(filename, "r")
# First record should be two ints giving array size
(ntoa,nparam) = _unpack_record(f.read(16),'ii')
result = numpy.zeros((ntoa,nparam+1))
# First two elements are time and weight, which we will ignore
# here.
rsize = (nparam+2)*8 + 8
for i in range(ntoa):
result[i,:-1] = _unpack_record(f.read(rsize))[2:]
# Constant phase term
result[:,-1] = 1.0
f.close()
return result
class toalist(list):
def write(self, filename, append=False):
if append:
f = open(filename, "a")
else:
f = open(filename, "w")
for t in self:
f.write(t.line + '\n')
f.close()
def get_ntoa(self,commented=False):
ntoa = sum(t.is_toa() for t in self)
if commented: ntoa += sum(t.is_commented_toa() for t in self)
return ntoa
def get_resids(self,units='us'):
if units=='us':
return numpy.array([t.res.res_us for t in self if t.is_toa()])
elif units=='phase':
return numpy.array([t.res.res_phase for t in self if t.is_toa()])
def get_prefit(self,units='us'):
if units=='us':
return numpy.array([t.res.prefit_us for t in self if t.is_toa()])
elif units=='phase':
return numpy.array([t.res.prefit_phase for t in self if t.is_toa()])
def get_orb_phase(self):
return numpy.array([t.res.ophase for t in self if t.is_toa()])
def get_resid_err(self):
return numpy.array([t.res.err_us for t in self if t.is_toa()])
def get_freq(self):
return numpy.array([t.freq for t in self if t.is_toa()])
def get_mjd(self):
return numpy.array([t.mjd for t in self if t.is_toa()])
def get_err(self):
return numpy.array([t.error for t in self if t.is_toa()])
def get_flag(self,flag,f=lambda x: x):
return numpy.array([f(t.flags[flag]) for t in self if t.is_toa()])
def get_chi2(self):
# NOTE: this will not take EQUAD/EFAC/etc into account
#x = self.get_resids()/self.get_err()
# This should:
x = self.get_resids()/self.get_resid_err()
return (x**2).sum()
def get_group_chi2(self,flag,flagval,reduced=False,remove_mean=False):
r = numpy.array([t.res.res_us for t in self if t.is_toa() and t.flags[flag]==flagval])
e = numpy.array([t.res.err_us for t in self if t.is_toa() and t.flags[flag]==flagval])
if remove_mean:
w = 1.0/(e*e)
rm = (r*w).sum() / w.sum()
r = r - rm
x = r / e
if reduced:
return (x**2).mean()
else:
return (x**2).sum()
def read_toa_file(filename,process_includes=True,ignore_blanks=True,top=True,
emax=0.0, process_emax=True, fmin=0.0, process_fmin=True,
fmax=0.0, process_fmax=True, process_skips=True, convert_skips=False):
"""Read the given filename and return a list of toa objects
parsed from it. Options:
process_includes: if True, read TOA lines from any INCLUDED files.
ignore_blanks: if True, blank TOA lines are ignored.
top: Used internally for recursion, do not use this.
emax: Set to apply a certain EMAX value as TOAs are read.
fmin: Set to apply a certain FMIN value as TOAs are read.
fmax: Set to apply a certain FMAX value as TOAs are read.
process_emax: if True, EMAX statements are applied as TOAs are read.
process_fmin: if True, FMIN statements are applied as TOAs are read.
process_fmax: if True, FMAX statements are applied as TOAs are read.
process_skips: if True, SKIP'd sections are not read in.
convert_skips: if True, SKIP'd lines are converted to comments.
"""
# Change to directory where top-level file is in order to process
# relative include paths correctly. This might break if there
# are multiple levels of include...
orig_dir = None
try:
if top and ('/' in filename):
orig_dir = os.getcwd()
work_dir = '/'.join(filename.split('/')[:-1])
filename = filename.split('/')[-1]
os.chdir(work_dir)
f = open(filename, "r")
toas = toalist([])
skip = False
if top: read_toa_file.info = None
for l in f.readlines():
newtoa = toa(l)
if newtoa.format=="Command":
if newtoa.command=="SKIP" and process_skips:
skip = True
elif newtoa.command=="NOSKIP" and process_skips:
skip = False
continue
if skip:
if convert_skips: newtoa.comment()
else: continue
if newtoa.command=="EMAX" and process_emax:
emax = float(newtoa.arg)
continue
if newtoa.command=="FMIN" and process_fmin:
fmin = float(newtoa.arg)
continue
if newtoa.command=="FMAX" and process_fmax:
fmax = float(newtoa.arg)
continue
if newtoa.command=="INFO":
read_toa_file.info = newtoa.arg
if newtoa.command=="INCLUDE" and process_includes:
toas += read_toa_file(newtoa.arg,
ignore_blanks=ignore_blanks,top=False,
emax=emax, process_emax=process_emax,
fmin=fmin, process_fmin=process_fmin,
fmax=fmax, process_fmax=process_fmax,
process_skips=process_skips)
else:
toas += [newtoa]
elif skip:
if convert_skips: newtoa.comment()
else: continue
elif newtoa.format in ("Blank", "Unknown"):
if not ignore_blanks:
toas += [newtoa]
else:
newtoa.info = read_toa_file.info
if emax>0.0 and newtoa.error>emax:
pass
elif fmin>0.0 and newtoa.freq<fmin:
pass
elif fmax>0.0 and newtoa.freq>fmax:
pass
else:
toas += [newtoa]
f.close()
if top and (orig_dir is not None):
os.chdir(orig_dir)
return toas
except:
# If something went wrong, make sure we go back to the original
# directory, then re-raise the exception
if orig_dir is not None:
os.chdir(orig_dir)
raise
def write_toa_file(filename, toas, append=False):
toas.write(filename,append=append)
def toa_match(toa1, toa2, freq_tol=0.1, time_tol=0.001):
"""Return true if two toa objects match within the given tolerances.
Always returns false for command/etc lines. freq_tol is in MHz and
time_tol is in days."""
if not toa1.is_toa(): return False
if not toa2.is_toa(): return False
if abs(toa2.freq - toa1.freq) > freq_tol: return False
# Don't need super-high accuracy for the date comp
if abs(toa2.mjd - toa1.mjd) > time_tol: return False
return True
def toa_list_match(toas1, toas2, freq_tol=0.1, time_tol=0.001):
"""Match up two sets of TOAs. Returns two lists of the same length
containing only the TOAs that match."""
out1 = toalist([])
out2 = toalist([])
for toa1 in toas1:
for toa2 in toas2:
if toa_match(toa1, toa2, freq_tol, time_tol):
out1 += [toa1]
out2 += [toa2]
#toas1.remove(toa1)
#toas2.remove(toa2)
break
return (out1, out2)
def toa_resid_match(toas, resids):
"""Match a list of residuals to a list of TOAs. The res entry for each
TOA is filled in appropriately. resids list is altered along the way.
Current algorithm is fairly dumb.."""
toa_count = 0
for toa in toas:
if toa.is_toa():
toa_count += 1
if toa_count != len(resids):
raise RuntimeError, "TOA count (%d) != residual count (%d)" \
% (toa_count, len(resids))
for toa in toas:
if not toa.is_toa():
continue
toa.res = resids.pop(0)
import os, tempfile
def run_tempo(toas, parfile, show_output=False,
get_output_par=False, gls=False, other_options=False,
quiet=False,dcovfile=False):
"""Run tempo on the given TOA list using the given parfile. Residuals
are read and filled into the toa structs on successful completion."""
orig_dir = os.getcwd()
try:
temp_dir = tempfile.mkdtemp(prefix="tempo")
psrname = None
try:
lines = open(parfile,'r').readlines()
except:
lines = parfile
for l in lines:
if l.startswith('PSR'):
psrname = l.split()[1]
#os.system("cp %s %s/pulsar.par" % (parfile, temp_dir))
open("%s/pulsar.par" % temp_dir,'w').writelines(lines)
os.chdir(temp_dir)
extra_cmds = toalist([])
# Always add mode 1 if it's not there
if not any([t.command=='MODE' for t in toas]):
if not quiet:
print "tempo_utils.run_tempo: Adding 'MODE 1'"
extra_cmds.insert(0,toa('MODE 1'))
# Check if there are tempo2 TOAs but no FORMAT line
if any([t.format=='Tempo2' for t in toas]) \
and not any([t.command=='FORMAT' for t in toas]):
if not quiet:
print "tempo_utils.run_tempo: Adding 'FORMAT 1'"
extra_cmds.insert(0,toa('FORMAT 1'))
write_toa_file("pulsar.toa", toalist(extra_cmds+toas))
tempo_args = other_options if other_options else ""
if gls: tempo_args += " -G"
created_dcovfile = False
if dcovfile:
if os.path.exists(dcovfile): # See if dcovfile already exists
shutil.copy(dcovfile,os.path.basename(dcovfile))
if not any([l.startswith('DCOVFILE') for l in lines]):
open("pulsar.par",'a').writelines('DCOVFILE ' + os.path.basename(dcovfile) + '\n')
else: # dcovfile doesn't exist, so have tempo make it.
tempo_args += " -C"
created_dcovfile = True
cmd = "tempo " + tempo_args + " -f pulsar.par pulsar.toa"
if show_output==False:
cmd += " > /dev/null"
os.system(cmd)
resids = read_resid2_file()
toa_resid_match(toas, resids)
lis = open("tempo.lis",'r').readlines()
chi2_str = lis[-1][14:23]
try:
chi2 = float(chi2_str)
except ValueError:
chi2 = None
ndof = float(lis[-1][24:30])
rms_str = lis[-2][63:74]
try:
rms = float(rms_str)
except ValueError:
rms = None
# Capture output par file if needed
if get_output_par:
if psrname is not None:
outparlines = open('%s.par' % psrname).readlines()
else:
outparlines = None
if created_dcovfile:
os.rename("datacov.tmp",dcovfile)
finally:
os.chdir(orig_dir)
os.system("rm -rf %s" % temp_dir)
if get_output_par:
return (chi2,ndof,rms,outparlines)
else:
return (chi2,ndof,rms)
class polycos(list):
"""Collection of polyco sets."""
def __init__(self,fname='polyco.dat',tempo_args=None,tempo_output=None):
fin = open(fname,'r')
more = True
self.tempo_args = tempo_args
self.tempo_output = tempo_output
while more:
try:
self.append(polyco(fin=fin))
except:
more = False
@classmethod
def generate(cls, parfile, site, mjd_start, tobs,
ncoeff=15, freq=1420.0, outfile=None):
"""Generate a polyco set from parfile. If outfile is not none,
the polycos will be saved in the given file name, otherwise
deleted after they are read."""
# See if parfile is lines or a path
try:
parlines = open(parfile,'r').readlines()
except:
parlines = parfile
for l in parlines:
if l.startswith('PSR'):
psrname = (l.split()[1]).lstrip('BJ')
tmpdir = None
origdir = os.getcwd()
try:
tmpdir = tempfile.mkdtemp(prefix='polyco')
open("%s/pulsar.par" % tmpdir,'w').writelines(parlines)
if outfile is not None: fullout=os.path.abspath(outfile)
os.chdir(tmpdir)
try:
tempo_args = ['tempo', '-f', 'pulsar.par',
'-ZPSR=%s' % psrname,
'-ZNCOEFF=%d' % ncoeff,
'-ZFREQ=%.6f' % freq,
'-ZSITE=%s' % site,
'-ZSTART=%.8f' % mjd_start,
'-ZTOBS=%.4f' % tobs]
tempo_output = subprocess.check_output(tempo_args,
stderr=subprocess.STDOUT)
except subprocess.CalledProcessError as e:
tempo_output = e.output
if outfile is not None:
shutil.copy('polyco.dat', fullout)
return cls(tempo_args=tempo_args,tempo_output=tempo_output)
finally:
os.chdir(origdir)
shutil.rmtree(tmpdir)
def match(self,mjd,fmjd=0.0):
for p in self:
try:
foo = p.phase_and_freq(mjd,fmjd)
return p
except RuntimeError:
pass
raise RuntimeError('No matching polycos found (mjd=%.10f)'%(mjd+fmjd))
def phase_and_freq(self,mjd,fmjd=0.0):
for p in self:
try:
return p.phase_and_freq(mjd,fmjd)
except RuntimeError:
pass
raise RuntimeError('No matching polycos found (mjd=%.10f)'%(mjd+fmjd))
def phase(self,mjd,fmjd=0.0):
(phase,freq) = self.phase_and_freq(mjd,fmjd)
return phase
def freq(self,mjd,fmjd=0.0):
(phase,freq) = self.phase_and_freq(mjd,fmjd)
return freq
class polyco:
"""Single polyco set."""
def __init__(self, fname='polyco.dat', fin=None):
# TODO: error checking
if fin is None:
if fname is None:
# Init everything with dummy values
self.src = 'psr'
self.imjd = 0
self.fmjd = 0.0
self.dm = 0.0
self.earth_z4 = 0.0
self.log10_rms = 10.0
self.rphase = 0.0
self.rfreq = 0.0
self.site = '0'
self.span = 0.0
self.ncoeff = 1
self.obsfreq = 0.0
self.ophase = None
self.coeffs = [0.0,]
return
else:
fin = open(fname,'r')
line1 = fin.readline().strip().split()
line2 = fin.readline().strip().split()
self.src = line1[0]
(s_imjd, s_fmjd) = line1[3].split('.')
self.imjd = int(s_imjd)
self.fmjd = float('.' + s_fmjd)
self.dm = float(line1[4])
self.earth_z4 = float(line1[5])
self.log10_rms = float(line1[6])
self.rphase = float(line2[0])
self.rfreq = float(line2[1])
self.site = line2[2]
self.span = float(line2[3])
self.ncoeff = int(line2[4])
self.obsfreq = float(line2[5])
try:
self.ophase = float(line2[6])
except IndexError:
self.ophase = None
nclines = self.ncoeff / 3
if self.ncoeff % 3:
nclines += 1
coeff_str = ''
for i in range(nclines):
coeff_str += fin.readline().strip() + ' '
self.coeffs = map(float,coeff_str.replace('D','e').split())
def as_string(self):
# Return the info formatted as a polyco block
hh = int(self.fmjd*24.0)
mm = int(self.fmjd*24.0*60.0 - hh*60.0)
ss = self.fmjd*86400.0 - hh*3600.0 - mm*60.0
mjd_str = str(self.imjd) + ('%.11f'%self.fmjd).lstrip('0')
line1 = '%-10s %9s%11.2f%20s%21.6f %6.3f%7.3f' % (
self.src,
'DD-MMM-YY',
hh*10000 + mm*100 + ss,
mjd_str,
self.dm,
self.earth_z4,
self.log10_rms
)
line2 = '%20.6f%18.12f%5s%5d%5d%10.3f%7.4f' % (
self.rphase,
self.rfreq,
self.site,
int(self.span),
self.ncoeff,
self.obsfreq,
self.ophase if self.ophase is not None else 0.0
)
lines = [line1, line2]
for i in range(0,self.ncoeff,3):
cline = ''
for c in self.coeffs[i:i+3]:
cline += ('%25.17E' % c).replace('E','D')
lines += [cline,]
return string.join(lines,'\n')
def phase_and_freq(self,mjd,fmjd=0.0):
dt_min = (float(mjd - self.imjd) + (fmjd - self.fmjd))*1440.0
if abs(dt_min) > (1.01*self.span/2.0):
raise RuntimeError('MJD outside polyco span (dt=%.1f min)' % dt_min)
freq = 0.0
phase = self.coeffs[self.ncoeff-1]
for i in range(self.ncoeff-1,0,-1):
phase = dt_min*phase + self.coeffs[i-1]
freq = dt_min*freq + float(i)*self.coeffs[i]
freq = self.rfreq + freq/60.0
phase += self.rphase + dt_min*60.0*self.rfreq
return (phase, freq)
def phase(self,mjd,fmjd=0.0):
(phase,freq) = self.phase_and_freq(mjd,fmjd)
return phase
def freq(self,mjd,fmjd=0.0):
(phase,freq) = self.phase_and_freq(mjd,fmjd)
return freq