test_spec1d.py 17 KB
Newer Older
Shuai Feng's avatar
Shuai Feng committed
1
2
3
import sys
sys.path.insert(0, '..')
import unittest
4
5
from csst_ifs_gehong import spec1d as s
from csst_ifs_gehong import config as c
Shuai Feng's avatar
Shuai Feng committed
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import numpy as np
import matplotlib.pyplot as plt

import warnings
warnings.simplefilter("ignore", ResourceWarning)

class test_spec1d(unittest.TestCase):

    """
    Test modules in spec1d.py
    """

    def test_StellarPop(self):

20
        inst = c.config()
Shuai Feng's avatar
Shuai Feng committed
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

        print("=================================================================")
        print("==================Stellar Population Modelling===================")
        print(" ")
        print(">>> Start Test")
        print(" ")

        temp = s.StellarContinuumTemplate(inst)

        plt.figure(figsize=(15,12))

        print("------------------------Test Magnitude---------------------------")
        print("1. mr=15")
        sed1 = s.StellarContinuum(temp, inst, mag = 15, age = 1, feh = 0, vel = 100, vdisp = 100, ebv = 0)
        print("2. mr=13")
        sed2 = s.StellarContinuum(temp, inst, mag = 13, age = 1, feh = 0, vel = 100, vdisp = 100, ebv = 0)
        if np.sum(sed1.flux) != np.sum(sed2.flux):
            print("No Problem!")
            plt.subplot(231)
            plt.plot(sed1.wave, sed1.flux, color = 'blue', lw = 2, label = 'mr = 15')
            plt.plot(sed2.wave, sed2.flux, color = 'red', lw = 2, label = 'mr = 13')
            plt.legend(frameon=False)
            plt.xlim(3900, 6200)
        
        print("---------------------------Test  Age-----------------------------")
        print("1. Age=0.1Gyr")
        sed1 = s.StellarContinuum(temp, inst, mag = 15, age = 0.1, feh = 0, vel = 100, vdisp = 100, ebv = 0)
        print("2. Age=1Gyr")
        sed2 = s.StellarContinuum(temp, inst, mag = 15, age = 1, feh = 0, vel = 100, vdisp = 100, ebv = 0)
        if np.sum(sed1.flux) != np.sum(sed2.flux):
            print("No Problem!")
            plt.subplot(232)
            plt.plot(sed1.wave, sed1.flux, color = 'blue', lw = 2, label = 'Age = 0.1Gyr')
            plt.plot(sed2.wave, sed2.flux, color = 'red', lw = 2, label = 'Age = 1Gyr')
            plt.legend(frameon=False)
            plt.xlim(3900, 6200)

        print("-----------------------Test  Metallicity-------------------------")
        print("1. [Fe/H]=0.5")
        sed1 = s.StellarContinuum(temp, inst, mag = 15, age = 1, feh =  0.5, vel = 100, vdisp = 100, ebv = 0)
        print("2. [Fe/H]=-0.5")
        sed2 = s.StellarContinuum(temp, inst, mag = 15, age = 1, feh = -0.5, vel = 100, vdisp = 100, ebv = 0)
        if np.sum(sed1.flux) != np.sum(sed2.flux):
            print("No Problem!")
            plt.subplot(233)
            plt.plot(sed1.wave, sed1.flux, color = 'blue', lw = 2, label = '[Fe/H] = 0.5')
            plt.plot(sed2.wave, sed2.flux, color = 'red', lw = 2, label = '[Fe/H] = -0.5')
            plt.legend(frameon=False)
            plt.xlim(3900, 6200)
        
        print("------------------------Test  Velocity---------------------------")
        print("1. v=3000km/s")
        sed1 = s.StellarContinuum(temp, inst, mag = 15, age = 1, feh = 0, vel = 3000, vdisp = 100, ebv = 0)
        print("2. v=6000km/s")
        sed2 = s.StellarContinuum(temp, inst, mag = 15, age = 1, feh = 0, vel = 6000, vdisp = 100, ebv = 0)
        if np.sum(sed1.flux) != np.sum(sed2.flux):
            print("No Problem!")
            plt.subplot(234)
            plt.plot(sed1.wave, sed1.flux, color = 'blue', lw = 2, label = 'v = 3000km/s')
            plt.plot(sed2.wave, sed2.flux, color = 'red', lw = 2, label = 'v = 6000km/s')
            plt.legend(frameon=False)
            plt.xlim(3900, 6200)
        
        print("-------------------Test Velocity Dispersion----------------------")
        print("1. sigma=180km/s")
        sed1 = s.StellarContinuum(temp, inst, mag = 15, age = 1, feh = 0.5, vel = 100, vdisp = 180, ebv = 0)
        print("2. sigma=350km/s")
        sed2 = s.StellarContinuum(temp, inst, mag = 15, age = 1, feh = 0.5, vel = 100, vdisp = 350, ebv = 0)
        if np.sum(sed1.flux) != np.sum(sed2.flux):
            print("No Problem!")
            plt.subplot(235)
            plt.plot(sed1.wave, sed1.flux, color = 'blue', lw = 2, label = 'sigma = 180km/s')
            plt.plot(sed2.wave, sed2.flux, color = 'red', lw = 2, label = 'sigma = 350km/s')
            plt.legend(frameon=False)
            plt.xlim(3900, 6200)

        print("----------------------Test Dust Extinction-----------------------")
        print("1. E(B-V)=0.1")
        sed1 = s.StellarContinuum(temp, inst, mag = 15, age = 1, feh = 0.5, vel = 100, vdisp = 100, ebv = 0.1)
        print("2. E(B-V)=0.3")
        sed2 = s.StellarContinuum(temp, inst, mag = 15, age = 1, feh = 0.5, vel = 100, vdisp = 100, ebv = 0.3)
        if np.sum(sed1.flux) != np.sum(sed2.flux):
            print("No Problem!")
            plt.subplot(236)
            plt.plot(sed1.wave, sed1.flux, color = 'blue', lw = 2, label = 'E(B-V) = 0.1')
            plt.plot(sed2.wave, sed2.flux, color = 'red', lw = 2, label = 'E(B-V) = 0.3')
            plt.legend(frameon=False)
            plt.xlim(3900, 6200)

        plt.tight_layout()
111
        #plt.savefig('./image/test_spec1d_stellarpopulation.png')
Shuai Feng's avatar
Shuai Feng committed
112
113
114
        
    def test_Star(self):

115
        inst = c.config()
Shuai Feng's avatar
Shuai Feng committed
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

        print("================================================================")
        print("=================Single Star Spectra Modelling===================")
        print(" ")
        print(">>> Start Test")
        print(" ")

        temp = s.SingleStarTemplate(inst)

        plt.figure(figsize=(15,12))

        print("------------------------Test Magnitude---------------------------")
        print("1. mr=15")
        sed1 = s.SingleStar(temp, inst, mag = 15, teff = 10000, feh = 0, vel = 100, ebv = 0)
        print("2. mr=13")
        sed2 = s.SingleStar(temp, inst, mag = 13, teff = 10000, feh = 0, vel = 100, ebv = 0)
        if np.sum(sed1.flux) != np.sum(sed2.flux):
            print("No Problem!")
            plt.subplot(221)
            plt.plot(sed1.wave, sed1.flux, color = 'blue', lw = 2, label = 'mr = 15')
            plt.plot(sed2.wave, sed2.flux, color = 'red', lw = 2, label = 'mr = 13')
            plt.legend(frameon=False)
            plt.xlim(3900, 6200)

        print("------------------------Test Tempreture--------------------------")
        print("1. Teff=6000K")
        sed1 = s.SingleStar(temp, inst, mag = 15, teff = 6000, feh = 0, vel = 100, ebv = 0)
        print("1. Teff=10000K")
        sed2 = s.SingleStar(temp, inst, mag = 15, teff = 10000, feh = 0, vel = 100, ebv = 0)
        if np.sum(sed1.flux) != np.sum(sed2.flux):
            print("No Problem!")
            plt.subplot(222)
            plt.plot(sed1.wave, sed1.flux, color = 'blue', lw = 2, label = 'Teff = 6000K')
            plt.plot(sed2.wave, sed2.flux, color = 'red', lw = 2, label = 'Teff = 10000K')
            plt.legend(frameon=False)
            plt.xlim(3900, 6200)

        print("-----------------------Test Metallicity--------------------------")
        print("1. [Fe/H]=-0.5")
        sed1 = s.SingleStar(temp, inst, mag = 15, teff = 10000, feh = -0.5, vel = 100, ebv = 0)
        print("2. [Fe/H]=0.5")
        sed2 = s.SingleStar(temp, inst, mag = 15, teff = 10000, feh = 0.5, vel = 100, ebv = 0)
        if np.sum(sed1.flux) != np.sum(sed2.flux):
            print("No Problem!")
            plt.subplot(223)
            plt.plot(sed1.wave, sed1.flux, color = 'blue', lw = 2, label = '[Fe/H] = -0.5')
            plt.plot(sed2.wave, sed2.flux, color = 'red', lw = 2, label = '[Fe/H] = 0.5')
            plt.legend(frameon=False)
            plt.xlim(3900, 6200)

        print("------------------------Test  Velocity---------------------------")
        print("1. v=-200km/s")
        sed1 = s.SingleStar(temp, inst, mag = 15, teff = 10000, feh = 0, vel = -200, ebv = 0)
        print("2. v=200km/s")
        sed2 = s.SingleStar(temp, inst, mag = 15, teff = 10000, feh = 0, vel =  200, ebv = 0)
        if np.sum(sed1.flux) != np.sum(sed2.flux):
            print("No Problem!")
            plt.subplot(224)
            plt.plot(sed1.wave, sed1.flux, color = 'blue', lw = 2, label = 'v = -200km/s')
            plt.plot(sed2.wave, sed2.flux, color = 'red', lw = 2, label = 'v = 200km/s')
            plt.legend(frameon=False)
            plt.xlim(3900, 6200)
        
        plt.tight_layout()
180
        #plt.savefig('./image/test_spec1d_singlestar.png')
Shuai Feng's avatar
Shuai Feng committed
181
182
183
184
185
186

        print("-----------------------------------------------------------------")
        print(">>> Unit test for **Single Stellar** Modelling has been passed!")

    def test_Gas(self):

187
        inst = c.config()
Shuai Feng's avatar
Shuai Feng committed
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

        print("================================================================")
        print("======================Ionized Gas Modelling======================")
        print(" ")
        print(">>> Start Test")
        print(" ")

        temp = s.EmissionLineTemplate(inst, model = 'hii')

        plt.figure(figsize=(15,12))

        print("---------------------Test Total Halpha Flux----------------------")

        print("1. F_Halpha = 10 * 1e-17 erg/s/cm^2")
        sed1 = s.HII_Region(inst, temp, halpha = 10, zh = -1, vel = 100, vdisp = 120, ebv = 0.1)
        print("2. F_Halpha = 50 * 1e-17 erg/s/cm^2")
        sed2 = s.HII_Region(inst, temp, halpha = 50, zh = -1, vel = 100, vdisp = 120, ebv = 0.1)
        if np.sum(sed1.flux) != np.sum(sed2.flux):
            print("No Problem!")
            plt.subplot(231)
            plt.plot(sed2.wave, sed2.flux, color = 'red', lw = 2, label = 'Flux = 50')
            plt.plot(sed1.wave, sed1.flux, color = 'blue', lw = 2, label = 'Flux = 10')
            plt.legend(frameon=False)
            plt.xlim(3900, 6200)

        print("-------------------Test Gas-Phase Metallicity--------------------")

        print("1. [Z/H] = 0")
        sed1 = s.HII_Region(inst, temp, halpha = 10, zh = 0, vel = 100, vdisp = 120, ebv = 0.1)
        print("2. [Z/H] = -0.5")
        sed2 = s.HII_Region(inst, temp, halpha = 10, zh = -0.5, vel = 100, vdisp = 120, ebv = 0.1)
        if np.sum(sed1.flux) != np.sum(sed2.flux):
            print("No Problem!")
            plt.subplot(232)
            plt.plot(sed2.wave, sed2.flux, color = 'red', lw = 2, label = '[Z/H] = -0.5')
            plt.plot(sed1.wave, sed1.flux, color = 'blue', lw = 2, label = '[Z/H] = 0')
            plt.legend(frameon=False)
            plt.xlim(3900, 6200)

        print("-------------------------Test  Velocity--------------------------")

        print("1. v=3000km/s")
        sed1 = s.HII_Region(inst, temp, halpha = 10, zh = -1, vel = 3000, vdisp = 120, ebv = 0.1)
        print("2. v=6000km/s")
        sed2 = s.HII_Region(inst, temp, halpha = 10, zh = -1, vel = 6000, vdisp = 120, ebv = 0.1)
        if np.sum(sed1.flux) != np.sum(sed2.flux):
            print("No Problem!")
            plt.subplot(233)
            plt.plot(sed1.wave, sed1.flux, color = 'blue', lw = 2, label = 'v = 3000km/s')
            plt.plot(sed2.wave, sed2.flux, color = 'red', lw = 2, label = 'v = 6000km/s')
            plt.legend(frameon=False)
            plt.xlim(3900, 6200)

        print("--------------------Test Velocity Dispersion---------------------")

        print("1. sigma=500km/s")
        sed1 = s.HII_Region(inst, temp, halpha = 10, zh = -1, vel = 100, vdisp = 500, ebv = 0.1)
        print("2. sigma=100km/s")
        sed2 = s.HII_Region(inst, temp, halpha = 10, zh = -1, vel = 100, vdisp = 100, ebv = 0.1)
        if np.sum(sed1.flux) != np.sum(sed2.flux):
            print("No Problem!")
            plt.subplot(234)
            plt.plot(sed1.wave, sed1.flux, color = 'blue', lw = 2, label = 'sigma = 500km/s')
            plt.plot(sed2.wave, sed2.flux, color = 'red', lw = 2, label = 'sigma = 100km/s')
            plt.legend(frameon=False)
            plt.xlim(3900, 6200)

        print("----------------------Test Dust Extinction-----------------------")

        print("1. E(B-V)=0.1")
        sed1 = s.HII_Region(inst, temp, halpha = 10, zh = -1, vel = 100, vdisp = 120, ebv = 0.1)
        print("2. E(B-V)=0.3")
        sed1 = s.HII_Region(inst, temp, halpha = 10, zh = -1, vel = 100, vdisp = 120, ebv = 0.3)
        if np.sum(sed1.flux) != np.sum(sed2.flux):
            print("No Problem!")
            plt.subplot(235)
            plt.plot(sed1.wave, sed1.flux, color = 'blue', lw = 2, label = 'E(B-V) = 0.1')
            plt.plot(sed2.wave, sed2.flux, color = 'red', lw = 2, label = 'E(B-V) = 0.3')
            plt.legend(frameon=False)
            plt.xlim(3900, 6200)

        plt.tight_layout()
270
        #plt.savefig('./image/test_spec1d_ionizedgas.png')
Shuai Feng's avatar
Shuai Feng committed
271
272
273
274
275
276

        print("-----------------------------------------------------------------")
        print(">>> Unit test for **Ionized Gas** Modelling has been passed!")

    def test_AGN(self):

277
        inst = c.config()
Shuai Feng's avatar
Shuai Feng committed
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

        print("================================================================")
        print("=====================AGN Spectra Modelling======================")
        print(" ")
        print(">>> Start Test")
        print(" ")

        temp = s.EmissionLineTemplate(inst, model = 'nlr')

        plt.figure(figsize=(15,12))

        print("-------------------------Test  Redshift--------------------------")

        print("1. z=0.2")
        sed1 = s.AGN(inst, temp, bhmass = 1e5, edd_ratio = 0.05,
                     halpha_broad = 100, halpha_narrow = 100, vdisp_broad = 2000, vdisp_narrow = 500,
                     vel = 20000, zh = 0, ebv = 0.1, dist = 20)
        print("2. z=0.4")
        sed2 = s.AGN(inst, temp, bhmass = 1e5, edd_ratio = 0.05,
                     halpha_broad = 100, halpha_narrow = 100, vdisp_broad = 2000, vdisp_narrow = 500,
                     vel = 40000, zh = 0, ebv = 0.1, dist = 20)
        if np.sum(sed1.flux) != np.sum(sed2.flux):
            print("No Problem!")
            plt.subplot(221)
            plt.plot(sed1.wave, sed1.flux, color = 'blue', lw = 2, label = 'z = 0.2')
            plt.plot(sed2.wave, sed2.flux, color = 'red', lw = 2, label = 'z = 0.4')
            plt.legend(frameon=False)
            plt.xlim(3900, 6200)
        
        print("----------------------Test Black Hole Mass-----------------------")

        print("1. Mbh=1e6")
        sed1 = s.AGN(inst, temp, bhmass = 1e6, edd_ratio = 0.05,
                     halpha_broad = 100, halpha_narrow = 100, vdisp_broad = 2000, vdisp_narrow = 500,
                     vel = 20000, zh = 0, ebv = 0.1, dist = 20)
        print("2. Mbh=5e6")
        sed2 = s.AGN(inst, temp, bhmass = 5e6, edd_ratio = 0.05,
                     halpha_broad = 100, halpha_narrow = 100, vdisp_broad = 2000, vdisp_narrow = 500,
                     vel = 20000, zh = 0, ebv = 0.1, dist = 20)
        if np.sum(sed1.flux) != np.sum(sed2.flux):
            print("No Problem!")
            plt.subplot(222)
            plt.plot(sed1.wave, sed1.flux, color = 'blue', lw = 2, label = 'Mbh = 1e6')
            plt.plot(sed2.wave, sed2.flux, color = 'red', lw = 2, label = 'Mbh = 5e6')
            plt.legend(frameon=False)
            plt.xlim(3900, 6200)

        print("------------------------Eddington  Ratio-------------------------")

        print("1. Edd Ratio = 1.0")
        sed1 = s.AGN(inst, temp, bhmass = 1e5, edd_ratio = 1.0,
                     halpha_broad = 100, halpha_narrow = 100, vdisp_broad = 2000, vdisp_narrow = 500,
                     vel = 20000, zh = 0, ebv = 0.1, dist = 20)
        print("2. Edd Ratio = 0.1")
        sed2 = s.AGN(inst, temp, bhmass = 1e5, edd_ratio = 0.1,
                     halpha_broad = 100, halpha_narrow = 100, vdisp_broad = 2000, vdisp_narrow = 500,
                     vel = 20000, zh = 0, ebv = 0.1, dist = 20)
        if np.sum(sed1.flux) != np.sum(sed2.flux):
            print("No Problem!")
            plt.subplot(223)
            plt.plot(sed1.wave, sed1.flux, color = 'blue', lw = 2, label = 'EddRatio = 1.0')
            plt.plot(sed2.wave, sed2.flux, color = 'red', lw = 2, label = 'EddRatio = 0.1')
            plt.legend(frameon=False)
            plt.xlim(3900, 6200)

        print("----------------------Test Dust Extinction-----------------------")

        print("1. E(B-V)=0.1")
        sed1 = s.AGN(inst, temp, bhmass = 1e5, edd_ratio = 0.05,
                     halpha_broad = 100, halpha_narrow = 100, vdisp_broad = 2000, vdisp_narrow = 500,
                     vel = 20000, zh = 0, ebv = 0.1, dist = 20)
        print("2. E(B-V)=0.3")
        sed2 = s.AGN(inst, temp, bhmass = 1e5, edd_ratio = 0.05,
                     halpha_broad = 100, halpha_narrow = 100, vdisp_broad = 2000, vdisp_narrow = 500,
                     vel = 20000, zh = 0, ebv = 0.3, dist = 20)  
        if np.sum(sed1.flux) != np.sum(sed2.flux):
            print("No Problem!")
            plt.subplot(224)
            plt.plot(sed1.wave, sed1.flux, color = 'blue', lw = 2, label = 'E(B-V) = 0.1')
            plt.plot(sed2.wave, sed2.flux, color = 'red', lw = 2, label = 'E(B-V) = 0.3')
            plt.legend(frameon=False)
            plt.xlim(3900, 6200)

        plt.tight_layout()
362
        #plt.savefig('./image/test_spec1d_agn.png')
Shuai Feng's avatar
Shuai Feng committed
363
364
365
366
367

        print("-----------------------------------------------------------------")
        print(">>> Unit test for **AGN** Modelling has been passed!")

if __name__=='__main__':
368
    unittest.main()