-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsynple.py
11026 lines (9116 loc) · 347 KB
/
synple.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
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#!/usr/bin/env python3
#-*- coding: utf-8 -*-
"""Python wrapper for synspec
Calculation of synthetic spectra of stars and convolution with a rotational/Gaussian kernel.
Makes the use of synspec simpler, and retains the main functionalities (when used from
python). The command line interface is even simpler but fairly limited.
For information on
synspec visit http://nova.astro.umd.edu/Synspec43/synspec.html.
Example
-------
To compute the solar spectrum between 6160 and 6164 angstroms, using a model atmosphere in
the file ksun.mod (provided with the distribution), with the output going into the file
sun.syn
$synple.py ksun.mod 6160. 6164.
To force a micro of 1.1 km/s, and convolve the spectrum with a Gaussian kernel with a fwhm
of 0.1 angstroms
$synple.py ksun.mod 6160. 6164. 1.1 0.1
To perform the calculations above in python and compare the emergent normalized profiles
>>> from synple import syn
>>> s = syn('ksun.mod', (6160.,6164.))
>>> s2 = syn('ksun.mod', (6160.,6164.), vmicro=1.1, fwhm=0.1)
in plain python
>>> import matplotlib.pyplot as plt
>>> plt.ion()
>>> plt.plot(s[0],s[1]/s[2], s2[0], s2[1]/s2[2])
or ipython
In [1]: %pylab
In [2]: plot(s[0],s[1]/s[2], s2[0], s2[1]/s2[2])
"""
import os
import re
import sys
import stat
import string
import random
import subprocess
import glob
import time
import copy
import gzip
import yaml
import numpy as np
import matplotlib.pyplot as plt
from math import ceil
from scipy import interpolate
from scipy.signal import savgol_filter
from scipy.optimize import curve_fit
from itertools import product
from astropy.io import fits
import astropy.table as tbl
import astropy.units as units
import datetime
import platform
#configuration
#synpledir = /home/callende/synple
synpledir = os.path.dirname(os.path.realpath(__file__))
#relative paths
modeldir = os.path.join(synpledir, "models")
modelatomdir = os.path.join(synpledir , "data")
confdir = os.path.join(synpledir, "config")
griddir = os.path.join(synpledir, "grids")
atlasdir = os.path.join(synpledir, "atlases")
linelistdir = os.path.join(synpledir, "linelists")
linelist0 = ['gfATOc.19','gfMOLsun.20','gfTiO.20','H2O-8.20']
bindir = os.path.join(synpledir,"bin")
synspec = os.path.join(bindir, "synspec54")
rotin = os.path.join(bindir, "rotin")
#internal synspec data files
isdf = ['CIA_H2H2.dat', 'CIA_H2H.dat', 'CIA_H2He.dat', 'CIA_HHe.dat', \
'irwin_bc.dat', 'tremblay.dat', \
'tsuji.molec_bc2']
#other stuff
clight = 299792.458 # km/s
epsilon = 0.6 #clv coeff.
bolk = 1.38054e-16 # erg/ K
zero = " 0 "
one = " 1 "
two = " 2 "
def syn(modelfile, wrange, dw=None, strength=1e-4, vmicro=None, abu=None, \
linelist=linelist0, atom='ap18', vrot=0.0, fwhm=0.0, vmacro=0.0, \
steprot=0.0, stepfwhm=0.0, intensity=False, lineid=False, tag=False, \
clean=True, save=False, synfile=None, \
lte=None, compute=True, tmpdir=None):
"""Computes a synthetic spectrum
Interface to the fortran codes synspec/rotin that only requires two mandatory inputs:
a model atmosphere (modelfile) and the limits of the spectral range (wrange). The code
recognizes Kurucz, MARCS and Phoenix LTE model atmospheres. The sampling of the frequency
grid is chosen internally, but can also be set by adding a constant wavelength step (dw).
The abundances and microturbulence velocity can be set through the abu and vmicro
parameters, but default values will be taken from the model atmosphere. Rotational and
Gaussian broadening can be introduced (vrot and fwhm parameters), as well as radial-tangential
macroturbulence. The computed spectrum can be written to a file (save == True).
Parameters
----------
modelfile : str
file with a model atmosphere
wrange: tuple or list of two floats
initial and ending wavelengths (angstroms)
dw: float, optional
wavelength step for the output fluxes
this will trigger interpolation at the end.
A negative value will lead to interpolation to a uniform step in ln(lambda)
(default is None for automatic frequency selection)
strength: float, optional
threshold in the line-to-continuum opacity ratio for
selecting lines (default is 1e-4)
vmicro: float
microturbulence (km/s)
a negative value triggers the use of the APOGEE DR14 equation
(default is None to adopt the value in the model atmosphere)
abu: array of floats (99 elements), optional
chemical abundances relative to hydrogen (N(X)/N(H))
(default taken from input model atmosphere)
linelist: array of str
filenames of the line lists, the first one corresponds to
the atomic lines and all the following ones (optional) to
molecular lines
(default is in array linelist0)
atom: str
'ap18' -- generic opacities used in Allende Prieto+ 2018
'yo19' -- restricted set for NLTE calculations for APOGEE 2019 (Osorio+ 2019)
'hhm' -- continuum opacity is simplified to H and H-
(default 'ap18')
vrot: float
projected rotational velocity (km/s)
(default 0.)
fwhm: float
Gaussian broadening: macroturbulence, instrumental, etc. (angstroms)
(default 0.)
vmacro: float
Radial-tangential macroturbulence (km/s)
(default 0.)
steprot: float
wavelength step for convolution with rotational kernel (angstroms)
set to 0. for automatic adjustment (default 0.)
stepfwhm: float
wavelength step for Gaussian convolution (angstroms)
set to 0. for automatic adjustment (default 0.)
intensity: bool
set to True to return intensities at
mu=0.0001,0.001,0.01,0.1,0.25,0.4,0.55,0.7,0.85,1.0
-- no broadening due to macro, rotation or instrumental/fwhm effects are considered
(default False)
lineid: bool
set to True to add line identifications to the ouput. They will take the form
of a list with three arrays (wavelengths, lineids and predicted EWs)
(default False)
tag: bool
set to True to produce a plot showing the line identifications. It implicitly
sets lineid to True, overiding whatever value is passed to lineid
(default False)
clean: bool
True by the default, set to False to avoid the removal of the synspec
temporary files/links (default True)
save: bool
set to True to save the computed spectrum to a file (default False)
the root of the model atmosphere file, with an extension ".syn" will be used
but see the parameter synfile to change that
synfile: str
when save is True, this can be used to set the name of the output file
(default None)
lte: bool
this flag can be set to True to enforce LTE in NLTE models. MARCS, Kurucz, the
class of Phoenix models used here are always LTE models. Tlusty models
can be LTE or NLTE, and this keyword will ignore the populations and compute
assuming LTE for a input NLTE Tlusty model.
(default None)
compute: bool
set to False to skip the actual synspec run, triggering clean=False
(default True)
tmpdir: string
a temporary directory with this name will be created to store
the temporary synspec input/output files, and the synple log file (usually named
syn.log) will be named as tmpdir_syn.log. When tmp is None a random string is used
for this folder
(default None)
Returns
-------
wave: numpy array of floats
wavelengths (angstroms)
flux: numpy array of floats
flux (H_lambda in ergs/s/cm2/A)
cont: numpy array of floats
continuum flux (same units as flux)
---- if intensity is True
inte: 2D numpy array of floats
intensity (I_lambda in ergs/s/cm2/A/strad) for
mu=0.0001,0.001,0.01,0.1,0.25,0.4,0.55,0.7,0.85,1.0
continte: 2D numpy array of float
continuum intensity for the same angles
---- if lineid (or tag) is True
lalilo: list with three arrays
la: numpy array of floats
wavelenghts of lines (angstroms)
li: numpy array of str
line identifidation
lo: numpy array of floats
predicted equivalent width (miliangstroms)
"""
#basic checks on the line list and model atmosphere
linelist, modelfile = checksynspec(linelist,modelfile)
#read model atmosphere
atmostype, teff, logg, vmicro2, abu2, nd, atmos = read_model(modelfile)
if vmicro is None:
vmicro = vmicro2
elif vmicro < 0.0:
#Holtzman et al. 2015, AJ 150, 148
vmicro = 2.478 - 0.325 * logg
#print('teff,logg,vmicro=',teff,logg,vmicro)
if abu is None: abu = abu2
#we take a step of 1/3 of the Gaussian (thermal + micro) FWHM at the lowest T and for an atomic mass of 100
space = np.mean(wrange) / clight * 2.355 / 3. * np.sqrt(0.1289**2 * np.min(atmos['t']) / 100. + vmicro** 2 / 2.)
#check input parameters are valid
imode = checkinput(wrange, vmicro, linelist)
#find out additional info for Tlusty models
if atmostype == 'tlusty':
madaffile, nonstdfile, nonstd, numpar, datadir, inlte, atommode, atominfo = read_tlusty_extras(modelfile)
if (inlte == -1): nonstd['IBFAC'] = 1
if (lte == True): inlte = 0
else:
nonstd = None
inlte = 0
atommode = None
atominfo = None
print(modelfile,'is a',atmostype,' model')
print('teff,logg,vmicro=',teff,logg,vmicro)
#print ('abu=',abu)
#print (len(abu))
#print ('nd=',nd)
#print ('linelist=',linelist)
#print ('wrange=',wrange)
logfile = 'syn.log'
if tmpdir is None:
tmpdir = ''.join(random.choices(string.ascii_lowercase + string.digits, k = 16))
startdir = os.getcwd()
logfile = os.path.join(startdir,os.path.split(tmpdir)[-1]) + "_" + logfile
try:
if tmpdir != '.': os.mkdir(tmpdir)
except OSError:
print( "cannot create tmpdir %s " % (tmpdir) )
try:
os.chdir(tmpdir)
except OSError:
print("cannot enter tmpdir %s " % (tmpdir) )
cleanup_fort()
if os.path.islink('data'): os.unlink('data')
if os.path.isfile('tas'): os.remove('tas')
assert (not os.path.isdir('data')), 'A subdirectory *data* exists in this folder, and that prevents the creation of a link to the data directory for synple'
#link data folder for used-provided model atoms
dd = ''
if atmostype == 'tlusty':
# data dir
hdd, dd = os.path.split(datadir)
os.symlink(datadir,dd)
if dd == 'data':
for entry in isdf:
assert (os.path.isfile(os.path.join(dd,entry))), 'Cannot find the data file:'+dd+'/'+entry
#dd2 = ''
#hdd2, dd2 = os.path.split(madaffile)
#if hdd2 == '': hdd2 = '..'
#os.symlink(os.path.join(hdd2,madaffile),'./fort.5')
#else:
write5(teff,logg,abu,atom,inlte=inlte,
atommode=atommode,atominfo=atominfo) #abundance/opacity file
write8(teff,logg,nd,atmos,atmostype) #model atmosphere
#link the data folder (synspec data + default tlusty model atoms)
if dd != 'data': os.symlink(modelatomdir,'./data') #data directory
#set iprin to 2 to ouput lineids from synspec
if tag: lineid = True
iprin = 0
if lineid: iprin = 2
cutoff0=250.
if logg > 3.0:
if teff < 4000.: cutoff0=500.
if teff < 3500.: cutoff0=1000.
if teff < 3000.: cutoff0=1500.
write55(wrange,dw=space,imode=imode,iprin=iprin, inlte=inlte, hydprf=2, \
cutoff0=cutoff0,strength=strength,vmicro=vmicro, \
linelist=linelist,atmostype=atmostype,intensity=intensity)
#synspec control file
writetas('tas',nd,linelist,nonstd=nonstd) #non-std param. file
create_links(linelist) #auxiliary data
if compute == False:
wave = None
flux = None
cont = None
if intensity:
inte = None
continte = None
else:
synin = open('fort.5')
synout = open(logfile,'w')
start = time.time()
p = subprocess.Popen([synspec], stdin=synin, stdout = synout, stderr= synout, shell=True)
p.wait()
synout.flush()
synout.close()
synin.close()
assert (os.path.isfile('fort.7')), 'Error: I cannot read the file *fort.7* in '+tmpdir+' -- looks like synspec has crashed, please look at '+logfile
assert (os.path.isfile('fort.17')), 'Error: I cannot read the file *fort.17* in '+tmpdir+' -- looks like synspec has crashed, please look at '+logfile
wave, flux = np.loadtxt('fort.7', unpack=True)
if np.any(np.diff(wave) <= 0.0):
wave, win = np.unique(wave,return_index=True)
flux = flux[win]
wave2, flux2 = np.loadtxt('fort.17', unpack=True)
if np.any(np.diff(wave2) <= 0.0):
wave2,win = np.unique(wave2,return_index=True)
flux2 = flux2[win]
if intensity:
nmu = 10
assert (os.path.isfile('fort.10')), 'Error: I cannot read the file *fort.10* in '+tmpdir
iwave, inte = read10('fort.10')
contiwave, continte1 = read10('fort.18')
if np.any(np.diff(iwave) <= 0.0):
iwave, win = np.unique(iwave,return_index=True)
inte = inte[win,:]
clight_cgs = clight * 1e5 # km to cm
iwave_cgs = iwave * 1e-8 # AA to cm
# I_nu to I_lambda (cgs)
inte = (inte.transpose() * clight_cgs / iwave_cgs**2 * 1e-8).transpose()
continte = np.zeros((len(iwave),nmu))
#mapping continte onto the same wavelength grid as the actual intensity
for entry in range(nmu):
continte[:,entry] = np.interp(iwave,contiwave,continte1[:,entry])
# I_nu to I_lambda
continte = (continte.transpose() * clight_cgs / iwave_cgs**2 * 1e-8).transpose()
assert (np.max(iwave-wave) < 1e-7), 'Error: the wavelengths of the intensity (fort.10) and flux arrays (fort.7) are not the same'
assert (fwhm < 1e-7), 'Error: computing the intensity at various angles is not compatible with the fwhm keyword'
assert (vmacro < 1e-7), 'Error: computing the intensity at various angles is not compatible with the vmacro keyword'
assert (vrot < 1e-7), 'Error: computing the intensity at various angles is not compatible with the vrot keyword'
if dw == None and fwhm <= 0. and vrot <= 0.: cont = np.interp(wave, wave2, flux2)
end = time.time()
print('syn ellapsed time ',end - start, 'seconds')
if fwhm > 0. or vrot > 0. or vmacro > 0.:
start = time.time()
print( vrot, fwhm, vmacro, space, steprot, stepfwhm)
wave, flux = call_rotin (wave, flux, vrot, fwhm, vmacro, \
space, steprot, stepfwhm, clean=False, \
reuseinputfiles=True, logfile=logfile)
if dw == None: cont = np.interp(wave, wave2, flux2)
end = time.time()
print('convol ellapsed time ',end - start, 'seconds')
if (dw != None):
if (dw < 0.):
ldw=np.abs(dw)/np.mean(wrange)
nsamples = int((np.log(wrange[1]) - np.log(wrange[0]))/ldw) + 1
wave3 = np.exp(np.arange(nsamples)*ldw + np.log(wrange[0]))
else:
nsamples = int((wrange[1] - wrange[0])/dw) + 1
wave3 = np.arange(nsamples)*dw + wrange[0]
cont = np.interp(wave3, wave2, flux2)
flux = np.interp(wave3, wave, flux)
if intensity:
nmu = 10
inte2 = np.zeros((nsamples,nmu))
continte2 = np.zeros((nsamples,nmu))
for entry in range(nmu):
inte2[:,entry] = np.interp(wave3, wave, inte[:,entry])
continte2[:,entry] = np.interp(wave3, wave, continte[:,entry])
inte = inte2
continte = continte2
#flux = interp_spl(wave3, wave, flux)
wave = wave3
if lineid == True:
assert (os.path.isfile('fort.12')), 'Error: I cannot read the file *fort.12* in '+tmpdir+' -- looks like synspec has crashed, please look at '+logfile
d = np.loadtxt('fort.12', usecols=(0,1,2,3,4,5,6), dtype=str)
la = []
li = []
lo = []
for i in range(len(d[:,0])):
la.append(d[i,0])
li.append(d[i,1]+d[i,2])
lo.append(d[i,6])
la = np.array(la, dtype=float)
li = np.array(li, dtype=str)
lo = np.array(lo, dtype=float)
if (os.path.isfile('fort.15')):
d = np.loadtxt('fort.15', usecols=(0,1,2,3,4,5), dtype=str)
la2 = []
li2 = []
lo2 = []
for i in range(len(d[:,0])):
la2.append(d[i,0])
li2.append(d[i,1])
lo2.append(d[i,5])
la2 = np.array(la2, dtype=float)
li2 = np.array(li2, dtype=str)
lo2 = np.array(lo2, dtype=float)
la = np.concatenate((la, la2))
li = np.concatenate((li, li2))
lo = np.concatenate((lo, lo2))
if clean == True:
cleanup_fort()
if os.path.islink('data'): os.unlink('data')
if os.path.isfile('tas'): os.remove('tas')
if atmostype == 'tlusty':
if os.path.islink(dd): os.unlink(dd)
try:
os.chdir(startdir)
except OSError:
print("cannot change directory from tmpdir %s to startdir %s" % (tmpdir,startdir) )
if clean == True:
try:
os.rmdir(tmpdir)
except OSError:
print("cannot remove directory tmpdir %s" % (tmpdir) )
if save == True:
out = ['MODEL = '+modelfile+'\n']
out.append('TEFF = '+str(teff)+'\n')
out.append('LOGG = '+str(logg)+'\n')
out.append('VMICRO = '+str(vmicro)+'\n')
out.append('WRANGE = '+' '.join(map(str,wrange))+'\n')
out.append('STRENGTH= '+str(strength)+'\n')
out.append('LINELIST= '+' '.join(linelist)+'\n')
out.append('ATOM = '+atom+'\n')
out.append('VROT = '+str(vrot)+'\n')
out.append('FWHM = '+str(fwhm)+'\n')
out.append('VMACRO = '+str(vmacro)+'\n')
out.append('STEPROT = '+str(steprot)+'\n')
out.append('STEPFWHM= '+str(stepfwhm)+'\n')
out.append('LTE = '+str(lte)+'\n')
out.append('ABU = '+' '.join(map(str,abu))+'\n')
header = ''.join(out)
if synfile == None:
tmpstr = os.path.split(modelfile)[-1]
synfile = tmpstr[:tmpstr.rfind('.')]+'.syn'
np.savetxt(synfile,(wave,flux,cont),header=header)
if lineid:
if intensity:
s = wave, flux, cont, inte, continte, [la,li,lo]
else:
s = wave, flux, cont, [la,li,lo]
else:
if intensity:
s = wave, flux, cont, inte, continte
else:
s = wave, flux, cont
if tag: tags(s)
return(s)
def mpsyn(modelfile, wrange, dw=None, strength=1e-4, vmicro=None, abu=None, \
linelist=linelist0, atom='ap18', vrot=0.0, fwhm=0.0, vmacro=0.0, \
steprot=0.0, stepfwhm=0.0, intensity=False, lineid=False, tag=False, \
clean=True, save=False, synfile=None, \
lte=False, compute=True, nthreads=0):
"""Computes a synthetic spectrum, splitting the spectral range in nthreads parallel calculations
Wrapper for syn, using multiprocessing, to speed-up the calculation of a broad spectral range
Parameters
----------
modelfile : str
file with a model atmosphere
wrange: tuple or list of two floats
initial and ending wavelengths (angstroms)
dw: float, optional
wavelength step for the output fluxes
this will trigger interpolation at the end
A negative value will lead to interpolation to a uniform step in ln(lambda)
(default is None for automatic selection)
strength: float, optional
threshold in the line-to-continuum opacity ratio for
selecting lines (default is 1e-4)
vmicro: float
microturbulence (km/s)
a negative value triggers the use from the APOGEE DR14 equation
(default is 'model' meaning taken from the model atmosphere)
abu: array of floats (99 elements), optional
chemical abundances relative to hydrogen (N(X)/N(H))
(default taken from input model atmosphere)
linelist: array of str
filenames of the line lists, the first one corresponds to
the atomic lines and all the following ones (optional) to
molecular lines
(default is in array linelist0)
atom: str
'ap18' -- generic opacities used in Allende Prieto+ 2018
'yo19' -- restricted set for NLTE calculations for APOGEE 2019 (Osorio+ 2019)
'hhm' -- continuum opacity is simplified to H and H-
(default 'ap18')
vrot: float
projected rotational velocity (km/s)
(default 0.)
fwhm: float
Gaussian broadening: macroturbulence, instrumental, etc. (angstroms)
(default 0.)
vmacro: float
Radial-tangential macroturbulence (km/s)
(default 0.)
steprot: float
wavelength step for convolution with rotational kernel (angstroms)
set to 0. for automatic adjustment (default 0.)
stepfwhm: float
wavelength step for Gaussian convolution (angstroms)
set to 0. for automatic adjustment (default 0.)
intensity: bool
set to True to return intensities at
mu=0.0001,0.001,0.01,0.1,0.25,0.4,0.55,0.7,0.85,1.0
-- no broadening due to macro, rotation or instrumental/fwhm effects are considered
(default False)
lineid: bool
set to True to add line identifications to the ouput. They will take the form
of a list with three arrays (wavelengths, lineids and predicted EWs)
(default False)
tag: bool
set to True to produce a plot showing the line identifications. It implicitly
sets lineid to True, overiding whatever value is passed to lineid
(default False)
clean: bool
True by the default, set to False to avoid the removal of the synspec
temporary files/links (default True)
save: bool
set to True to save the computed spectrum to a file (default False)
the root of the model atmosphere file, with an extension ".syn" will be used
but see the parameter synfile to change that
synfile: str
when save is True, this can be used to set the name of the output file
(default None)
lte: bool
this flag can be set to True to enforce LTE in NLTE models. MARCS, Kurucz, the
class of Phoenix models used here are always LTE models. Tlusty models
can be LTE or NLTE, and this keyword will ignore the populations and compute
assuming LTE for a input NLTE Tlusty model.
(default False)
compute: bool
set to False to skip the actual synspec run, triggering clean=False
(default True)
nthreads: int
choose the number of cores to use in the calculation
(default 0, which has the meaning that the code should take all the cores available except 1)
Returns
-------
wave: numpy array of floats
wavelengths (angstroms)
flux: numpy array of floats
flux (H_lambda in ergs/s/cm2/A)
cont: numpy array of floats
continuum flux (same units as flux)
---- if intensity is True
inte: 2D numpy array of floats
intensity (I_lambda in ergs/s/cm2/A/strad) for
mu=0.0001,0.001,0.01,0.1,0.25,0.4,0.55,0.7,0.85,1.0
continte: 2D numpy array of float
continuum intensity for the same angles
---- if lineid (or tag) is True
lalilo: list with three arrays
la: numpy array of floats
wavelenghts of lines (angstroms)
li: numpy array of str
line identifidation
lo: numpy array of floats
predicted equivalent width (miliangstroms)
"""
from multiprocessing import Pool,cpu_count
#basic checks on the line list and model atmosphere
linelist, modelfile = checksynspec(linelist,modelfile)
#read model atmosphere
atmostype, teff, logg, vmicro2, abu2, nd, atmos = read_model(modelfile)
if vmicro is None:
vmicro = vmicro2
elif vmicro < 0.0:
#Holtzman et al. 2015, AJ 150, 148
vmicro = 2.478 - 0.325 * logg
if abu is None: abu = abu2
if nthreads == 0:
nthreads = int(cpu_count() - 1)
#override lineid when tag is True
if tag: lineid = True
tmpdir = ''.join(random.choices(string.ascii_lowercase + string.digits, k = 16))
#delta = (wrange[1]-wrange[0])/nthreads #linear
power=1 # best load balancing splitting in wavelength as (log(lambda))**(1/power)
delta = ( (np.log10(wrange[1]))**(1./power) - (np.log10(wrange[0]))**(1./power) )/nthreads
pars = []
for i in range(nthreads):
#wrange1 = (wrange[0]+delta*i,wrange[0]+delta*(i+1))
wrange1 = ( 10.**( ( (np.log10(wrange[0]))**(1./power) +delta*i )**power ),
10.**( ( (np.log10(wrange[0]))**(1./power) +delta*(i+1) )**power ) )
pararr = [modelfile, wrange1, dw, strength, vmicro, abu, \
linelist, atom, vrot, fwhm, vmacro, \
steprot, stepfwhm, lineid, intensity, tag, clean, False, None, lte, \
compute, tmpdir+'-'+str(i) ]
pars.append(pararr)
pool = Pool(nthreads)
results = pool.starmap(syn,pars)
pool.close()
pool.join()
x = results[0][0]
y = results[0][1]
z = results[0][2]
if lineid: la, li, lo = results[0][3]
if len(results) > 1:
for i in range(len(results)-1):
x = np.concatenate((x, results[i+1][0][1:]) )
y = np.concatenate((y, results[i+1][1][1:]) )
z = np.concatenate((z, results[i+1][2][1:]) )
if lineid:
la2, li2, lo2 = results[i+1][3]
la = np.concatenate((la, la2[1:]) )
li = np.concatenate((li, li2[1:]) )
lo = np.concatenate((lo, lo2[1:]) )
if save == True:
out = ['MODEL = '+modelfile+'\n']
out.append('TEFF = '+str(teff)+'\n')
out.append('LOGG = '+str(logg)+'\n')
out.append('VMICRO = '+str(vmicro)+'\n')
out.append('WRANGE = '+' '.join(map(str,wrange))+'\n')
out.append('STRENGTH= '+str(strength)+'\n')
out.append('LINELIST= '+' '.join(linelist)+'\n')
out.append('ATOM = '+atom+'\n')
out.append('VROT = '+str(vrot)+'\n')
out.append('FWHM = '+str(fwhm)+'\n')
out.append('VMACRO = '+str(vmacro)+'\n')
out.append('STEPROT = '+str(steprot)+'\n')
out.append('STEPFWHM= '+str(stepfwhm)+'\n')
out.append('LTE = '+str(lte)+'\n')
out.append('ABU = '+' '.join(map(str,abu))+'\n')
header = ''.join(out)
if synfile == None:
tmpstr = os.path.split(modelfile)[-1]
synfile = tmpstr[:tmpstr.rfind('.')]+'.syn'
np.savetxt(synfile,(x,y,z),header=header)
if lineid:
s = x, y, z, [la,li,lo]
else:
s = x, y, z
if tag: tags(s)
return(s)
def raysyn(modelfile, wrange, dw=None, strength=1e-4, vmicro=None, abu=None, \
linelist=linelist0, atom='ap18', vrot=0.0, fwhm=0.0, vmacro=0.0, \
steprot=0.0, stepfwhm=0.0, intensity=False, lineid=False, tag=False, \
clean=True, save=False, synfile=None, \
lte=False, compute=True, nthreads=0):
"""Computes a synthetic spectrum, splitting the spectral range in nthreads parallel calculations
Wrapper for syn, using ray, to speed-up the calculation of a broad spectral range
Parameters
----------
modelfile : str
file with a model atmosphere
wrange: tuple or list of two floats
initial and ending wavelengths (angstroms)
dw: float, optional
wavelength step for the output fluxes
this will trigger interpolation at the end
A negative value will lead to interpolation to a uniform step in ln(lambda)
(default is None for automatic selection)
strength: float, optional
threshold in the line-to-continuum opacity ratio for
selecting lines (default is 1e-4)
vmicro: float
microturbulence (km/s)
a negative value triggers the use of the APOGEE DR14 equation
(default is 'model' meaning taken from the model atmosphere)
abu: array of floats (99 elements), optional
chemical abundances relative to hydrogen (N(X)/N(H))
(default taken from input model atmosphere)
linelist: array of str
filenames of the line lists, the first one corresponds to
the atomic lines and all the following ones (optional) to
molecular lines
(default is in array linelist0)
atom: str
'ap18' -- generic opacities used in Allende Prieto+ 2018
'yo19' -- restricted set for NLTE calculations for APOGEE 2019 (Osorio+ 2019)
'hhm' -- continuum opacity is simplified to H and H-
(default 'ap18')
vrot: float
projected rotational velocity (km/s)
(default 0.)
fwhm: float
Gaussian broadening: macroturbulence, instrumental, etc. (angstroms)
(default 0.)
vmacro: float
Radial-tangential macroturbulence (km/s)
(default 0.)
steprot: float
wavelength step for convolution with rotational kernel (angstroms)
set to 0. for automatic adjustment (default 0.)
stepfwhm: float
wavelength step for Gaussian convolution (angstroms)
set to 0. for automatic adjustment (default 0.)
intensity: bool
set to True to return intensities at
mu=0.0001,0.001,0.01,0.1,0.25,0.4,0.55,0.7,0.85,1.0
-- no broadening due to macro, rotation or instrumental/fwhm effects are considered
(default False)
lineid: bool
set to True to add line identifications to the ouput. They will take the form
of a list with three arrays (wavelengths, lineids and predicted EWs)
(default False)
tag: bool
set to True to produce a plot showing the line identifications. It implicitly
sets lineid to True, overiding whatever value is passed to lineid
(default False)
clean: bool
True by the default, set to False to avoid the removal of the synspec
temporary files/links (default True)
save: bool
set to True to save the computed spectrum to a file (default False)
the root of the model atmosphere file, with an extension ".syn" will be used
but see the parameter synfile to change that
synfile: str
when save is True, this can be used to set the name of the output file
(default None)
lte: bool
this flag can be set to True to enforce LTE in NLTE models. MARCS, Kurucz, the
class of Phoenix models used here are always LTE models. Tlusty models
can be LTE or NLTE, and this keyword will ignore the populations and compute
assuming LTE for a input NLTE Tlusty model.
(default False)
compute: bool
set to False to skip the actual synspec run, triggering clean=False
(default True)
nthreads: int
choose the number of cores to use in the calculation
(default 0, which has the meaning that the code should take all the cores available except 1)
Returns
-------
wave: numpy array of floats
wavelengths (angstroms)
flux: numpy array of floats
flux (H_lambda in ergs/s/cm2/A)
cont: numpy array of floats
continuum flux (same units as flux)
---- if intensity is True
inte: 2D numpy array of floats
intensity (I_lambda in ergs/s/cm2/A/strad) for
mu=0.0001,0.001,0.01,0.1,0.25,0.4,0.55,0.7,0.85,1.0
continte: 2D numpy array of float
continuum intensity for the same angles
---- if lineid (or tag) is True
lalilo: list with three arrays
la: numpy array of floats
wavelenghts of lines (angstroms)
li: numpy array of str
line identifidation
lo: numpy array of floats
predicted equivalent width (miliangstroms)
"""
import psutil
import ray
@ray.remote
def fun(vari,cons):
wrange,tmpdir = vari
modelfile,dw,strength,vmicro,abu,linelist, \
atom,vrot,fwhm,vmacro,steprot,stepfwhm,intensity, \
lineid,tag,clean,save,synfile,compute = cons
s = syn(modelfile, wrange, dw, strength, vmicro, abu, \
linelist, atom, vrot, fwhm, vmacro, \
steprot, stepfwhm, intensity, \
lineid, tag, clean, save, synfile, \
lte, compute, tmpdir)
return(s)
#basic checks on the line list and model atmosphere
linelist, modelfile = checksynspec(linelist,modelfile)
#read model atmosphere
atmostype, teff, logg, vmicro2, abu2, nd, atmos = read_model(modelfile)
if vmicro is None:
vmicro = vmicro2
elif vmicro < 0.0:
#Holtzman et al. 2015, AJ 150, 148
vmicro = 2.478 - 0.325 * logg
if abu is None: abu = abu2
if nthreads == 0:
nthreads = int(psutil.cpu_count(logical=False) - 1)
if tag: lineid = True
print('nthreads=',nthreads)
tmpdir = ''.join(random.choices(string.ascii_lowercase + string.digits, k = 16))
ray.init(num_cpus=nthreads)
rest = [ modelfile,dw,strength,vmicro,abu,linelist, \
atom,vrot,fwhm,vmacro,steprot,stepfwhm,intensity, \
lineid,tag,clean,False,None,compute ]
constants = ray.put(rest)
#delta = (wrange[1]-wrange[0])/nthreads #linear split
power=1 # best load balancing splitting in wavelength as (log(lambda))**(1/power)
delta = ( (np.log10(wrange[1]))**(1./power) - (np.log10(wrange[0]))**(1./power) )/nthreads
pars = []
for i in range(nthreads):
#wrange1 = (wrange[0]+delta*i,wrange[0]+delta*(i+1))
wrange1 = ( 10.**( ( (np.log10(wrange[0]))**(1./power) +delta*i )**power ),
10.**( ( (np.log10(wrange[0]))**(1./power) +delta*(i+1) )**power ) )
folder = tmpdir+'-'+str(i)
pararr = [wrange1, folder ]
pars.append(pararr)
results = ray.get([fun.remote(pars[i],constants) for i in range(nthreads)])
ray.shutdown()
x = results[0][0]
y = results[0][1]
z = results[0][2]
if lineid: la, li, lo = results[0][3]
if len(results) > 1:
for i in range(len(results)-1):
x = np.concatenate((x, results[i+1][0][1:]) )
y = np.concatenate((y, results[i+1][1][1:]) )
z = np.concatenate((z, results[i+1][2][1:]) )
if lineid:
la2, li2, lo2 = results[i+1][3]
la = np.concatenate((la, la2[1:]) )
li = np.concatenate((li, li2[1:]) )
lo = np.concatenate((lo, lo2[1:]) )
if save == True:
out = ['MODEL = '+modelfile+'\n']
out.append('TEFF = '+str(teff)+'\n')
out.append('LOGG = '+str(logg)+'\n')
out.append('VMICRO = '+str(vmicro)+'\n')
out.append('WRANGE = '+' '.join(map(str,wrange))+'\n')
out.append('STRENGTH= '+str(strength)+'\n')
out.append('LINELIST= '+' '.join(linelist)+'\n')
out.append('ATOM = '+atom+'\n')
out.append('VROT = '+str(vrot)+'\n')
out.append('FWHM = '+str(fwhm)+'\n')
out.append('VMACRO = '+str(vmacro)+'\n')
out.append('STEPROT = '+str(steprot)+'\n')
out.append('STEPFWHM= '+str(stepfwhm)+'\n')
out.append('LTE = '+str(lte)+'\n')
out.append('ABU = '+' '.join(map(str,abu))+'\n')
header = ''.join(out)
if synfile == None:
tmpstr = os.path.split(modelfile)[-1]
synfile = tmpstr[:tmpstr.rfind('.')]+'.syn'
np.savetxt(synfile,(x,y,z),header=header)
if lineid:
s = x, y, z, [la,li,lo]
else:
s = x, y, z
if tag: tags(s)
return(s)
def multisyn(modelfiles, wrange, dw=None, strength=1e-4, abu=None, \
vmicro=None, vrot=0.0, fwhm=0.0, vmacro=0.0, nfe=0.0, \
linelist=linelist0, atom='ap18', \
steprot=0.0, stepfwhm=0.0, clean=True, save=None, lte=False, nthreads=0):
"""Computes synthetic spectra for a list of files. The values of vmicro, vrot,
fwhm, and nfe can be iterables. Whether or not dw is specified the results will be
placed on a common wavelength scale by interpolation. When not specified, dw will be
chosen as appropriate for the first model in modelfiles.
Parameters
----------
modelfiles : list of str
files with model atmospheres
wrange: tuple or list of two floats
initial and ending wavelengths (angstroms)