Blame view

src/idl/dustem_fit.pro 9.08 KB
2bb08f15   Annie Hughes   not sure
1
PRO dustem_fit,help=help,noplot=noplot,model=model
427f1205   Jean-Michel Glorian   version 4.2 merged
2
3
4
5

;+
; NAME:
;    dustem_fit
2bb08f15   Annie Hughes   not sure
6
;
427f1205   Jean-Michel Glorian   version 4.2 merged
7
8
; PURPOSE:
;    Runs conjointly a fit on extinction, emission and polarization by extinction
2bb08f15   Annie Hughes   not sure
9
;
427f1205   Jean-Michel Glorian   version 4.2 merged
10
; CATEGORY:
2bb08f15   Annie Hughes   not sure
11
12
;    DustEMWrap, Deprecated
;
427f1205   Jean-Michel Glorian   version 4.2 merged
13
14
; CALLING SEQUENCE:
;    sed=dustem_fit([/noplot,/help])
2bb08f15   Annie Hughes   not sure
15
;
427f1205   Jean-Michel Glorian   version 4.2 merged
16
17
; INPUTS:
;    None
2bb08f15   Annie Hughes   not sure
18
;
427f1205   Jean-Michel Glorian   version 4.2 merged
19
20
; OPTIONAL INPUT PARAMETERS:
;    noplot : do not display figures
2bb08f15   Annie Hughes   not sure
21
;
427f1205   Jean-Michel Glorian   version 4.2 merged
22
23
; OUTPUTS:
;    None
2bb08f15   Annie Hughes   not sure
24
;
427f1205   Jean-Michel Glorian   version 4.2 merged
25
; OPTIONAL OUTPUT PARAMETERS:
2bb08f15   Annie Hughes   not sure
26
;
427f1205   Jean-Michel Glorian   version 4.2 merged
27
28
; ACCEPTED KEY-WORDS:
;    help      = If set, print this help
2bb08f15   Annie Hughes   not sure
29
;
427f1205   Jean-Michel Glorian   version 4.2 merged
30
31
; COMMON BLOCKS:
;    None
2bb08f15   Annie Hughes   not sure
32
;
427f1205   Jean-Michel Glorian   version 4.2 merged
33
34
; SIDE EFFECTS:
;    None
2bb08f15   Annie Hughes   not sure
35
;
427f1205   Jean-Michel Glorian   version 4.2 merged
36
; RESTRICTIONS:
2bb08f15   Annie Hughes   not sure
37
38
;    The DustEMWrap IDL code must be installed
;
427f1205   Jean-Michel Glorian   version 4.2 merged
39
40
; PROCEDURE:
;    None
2bb08f15   Annie Hughes   not sure
41
;
427f1205   Jean-Michel Glorian   version 4.2 merged
42
43
; EXAMPLES
;
2bb08f15   Annie Hughes   not sure
44
;
427f1205   Jean-Michel Glorian   version 4.2 merged
45
; MODIFICATION HISTORY:
427f1205   Jean-Michel Glorian   version 4.2 merged
46
;    Written by V. Guillet (2012)
2bb08f15   Annie Hughes   not sure
47
48
49
;    TLS added by D. Paradis.
;    Evolution details on the DustEMWrap gitlab.
;    See http://dustemwrap.irap.omp.eu/ for FAQ and help.  
427f1205   Jean-Michel Glorian   version 4.2 merged
50
51
52
53
54
;-

IF keyword_set(mode) THEN BEGIN
  use_mode=strupcase(mode)
ENDIF ELSE BEGIN
2bb08f15   Annie Hughes   not sure
55
  use_mode='MC10'   
427f1205   Jean-Michel Glorian   version 4.2 merged
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
ENDELSE

; Verbose
defsysv, '!dustem_verbose', 1

data_files = { $
	;	sed: 	!dustem_wrap_soft_dir + 'Data/SEDs/Gal_composite_spectrum.xcat', $
	sed: 	!dustem_wrap_soft_dir + 'Data/SEDs/sedsk-70116_2.xcat', $
        ;        sed: 	!dustem_wrap_soft_dir + 'Data/SEDs/spec_firas_chi2.xcat', $
		ext: 	!dustem_wrap_soft_dir + 'Data/EXTs/spec_sk-70116-2.xcat' $
	;	polext:	!dustem_wrap_soft_dir + 'Data/POLEXTs/Serkowski_DISM.xcat', $
	;	polsed:	'' $
             }

; Local variable, to define global !fit_rchi2_weight
rchi2_weight = { $
		sed:	1.,	$
 		ext:    1.	$
 	;	polext:	1.	$
 	;	polsed:	1. 	$
	       }

; Flags to determine what to fit
defsysv, '!dustem_data', {    $	;Data to fit
 				sed:	ptr_new(),	$
  				ext:	ptr_new()	$
  			;	polext:	ptr_new() 	$
;				polsed:	ptr_new() 	$
			 }

; Define global !fit_rchi2_weight with the same structure and field order like !dustem_data
tagnames = tag_names(!dustem_data)
d0f68bb6   Jean-Philippe Bernard   replaced system v...
88
89
;instr="defsysv, '!fit_rchi2_weight', {"
instr="fit_rchi2_weight_string={"
427f1205   Jean-Michel Glorian   version 4.2 merged
90
for i = 0, n_elements(tagnames)-1 do instr+=tagnames(i)+': rchi2_weight.'+tagnames(i)+', '
d0f68bb6   Jean-Philippe Bernard   replaced system v...
91
instr+='empty: 0. }'
427f1205   Jean-Michel Glorian   version 4.2 merged
92
toto=execute(instr)
d0f68bb6   Jean-Philippe Bernard   replaced system v...
93
defsysv, '!fit_rchi2_weight',ptr_new(fit_rchi2_weight_string)
427f1205   Jean-Michel Glorian   version 4.2 merged
94
95
96
97

;=== Set weight for reduced chi2 ponderation between emission, extinction, polarized extinction and emission ===
; Calculate total according to fileds in !dustem_data structure 
total = 0
d0f68bb6   Jean-Philippe Bernard   replaced system v...
98
for i = 0, n_tags(!dustem_data)-1 do total = total + (*!fit_rchi2_weight).(i)
427f1205   Jean-Michel Glorian   version 4.2 merged
99
; values are relative to total
d0f68bb6   Jean-Philippe Bernard   replaced system v...
100
for i = 0, n_tags(!dustem_data)-1 do (*!fit_rchi2_weight).(i) /= total
427f1205   Jean-Michel Glorian   version 4.2 merged
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

dustem_init,mode=use_mode

if keyword_set(noplot) then defsysv,'!dustem_show_plot', 0

; Check that polarisation has been run (-pol in GRAIN.DAT) if fit on polarization is asked for
if (tag_exist(!dustem_data,'polext') or tag_exist(!dustem_data,'polsed')) and !run_pol eq 0. then begin
	message,"pol option must be set in GRAIN.DAT to fit polarization",/info
	stop
endif

; Check that DTLS has been run (-dtls in GRAIN.DAT) 
if (tag_exist(!dustem_data,'dtls') ) and !run_tls eq 0. then begin
	message,"dtls option must be set in GRAIN.DAT to use the TLS model",/info
	stop
endif

;=== Read observational data ===
for i = 0, n_elements(tagnames)-1 do begin
	instr='!dustem_data.('+strtrim(i,2)+') = dustem_set_data(read_xcat(data_files.'+tagnames(i)+',/silent))'
	toto=execute(instr)
endfor

;=== Parameters for fit ===
pd_mass = [ $
       '(*!dustem_params).grains(0).mdust_o_mh', $    ;PAH0 mass fraction
       '(*!dustem_params).grains(1).mdust_o_mh', $    ;PAH1 mass fraction
       '(*!dustem_params).grains(2).mdust_o_mh', $    ;Small amCBEx
       '(*!dustem_params).grains(3).mdust_o_mh' $     ;Large amCBEx
  ;     '(*!dustem_params).grains(4).mdust_o_mh'  $     ;aSil
     ]

tls=['(*!dustem_params).tls.a_dtls', $
     '(*!dustem_params).tls.lc' $
   ;  '(*!dustem_params).tls.vm' $
]

iv_tls=[10., 8.]

;iv_mass = [ $
;	7.8e-4, $
;	7.8e-4, $
;	1.65e-3, $
;	1.45e-3, $
;	7.8e-2 $         ;7.8e-3
;	]  	; DUST MASSES
;iv_mass = [ $
;	9.3E-4, $
;	0.000449, $
;	2.2e-3 $
;;	0.0008 $
;;	7.8e-4 $         ;7.8e-3
;	]  	; DUST MASSES
iv_mass = [ $
	1.3e-3, $
	1.8e-9, $
	6.4e-3, $
	0.0015 $
	]  	; DUST MASSES

pd_sdist = [ $
;;       '(*!dustem_params).grains(0).amin', $         ;PAH0 minmal size 
;;       '(*!dustem_params).grains(0).amax' $         ;PAH0 maximal size 
       '(*!dustem_params).grains(0).alpha_o_a0', $   ;PAH0 mean size
       '(*!dustem_params).grains(2).alpha_o_a0' $   ;PAH0 mean size

;;       '(*!dustem_params).grains(0).at', $           ;PAH0 sigma size
;       '(*!dustem_params).grains(0).amin', $         ;PAH1 minmal size 
;       '(*!dustem_params).grains(0).amax' $         ;PAH1 maximal size 
;       '(*!dustem_params).grains(2).alpha_o_a0' $   ;PAH1 mean size
;;       '(*!dustem_params).grains(1).at', $           ;PAH1 sigma size
;;       '(*!dustem_params).grains(2).amin', $         ;VSG minimal size
;;       '(*!dustem_params).grains(2).amax', $         ;VSG maximal size
;        '(*!dustem_params).grains(3).amin', $        ;Carbon BG minimal size 
;;       '(*!dustem_params).grains(3).amax', $         ;Carbon BG maximal size
;       '(*!dustem_params).grains(2).alpha_o_a0', $   ;Carbon BG power law slope
;       '(*!dustem_params).grains(3).alpha_o_a0' $   ;Carbon BG power law slope

;       '(*!dustem_params).grains(3).at', $    	     ;Carbon BG threshold size (exp. decay)
;       '(*!dustem_params).grains(3).ac', $           ;Carbon BG cut-off size (exp. decay)
;       '(*!dustem_params).grains(3).gamma', $        ;Carbon BG exp. decay slope
;       '(*!dustem_params).grains(4).amin', $         ;Silicate BG minimal size 
;;       '(*!dustem_params).grains(4).amax', $         ;Silicate BG maximal size
;       '(*!dustem_params).grains(4).alpha_o_a0', $   ;Silicate BG power law slope
;       '(*!dustem_params).grains(4).at', $    	     ;Silicate BG threshold size (exp. decay)
;       '(*!dustem_params).grains(4).ac', $           ;Silicate BG cut-off size (exp. decay)
;       '(*!dustem_params).grains(4).gamma' $        ;Silicate BG exp. decay slope
     ]
iv_sdist = [	$
;3.5000E-08, 1.2000E-07, 6.4000E-08, 1.0000E-01 $	; PAH0
;;3.5000E-08, 1.2000E-07, 6.4000E-08, 1.0000E-01, $	; PAH1
-4.98, 3.12e-7  $
;-4.16 $
;6.4e-8,-3.4	$		; VSG
;;6.0000E-07, 5.0000E-04,-2.6000E+00, 0.7000E-05,  0.7000E-05, 0.9000E+00, $ Carbon BG
;;6.0000E-07, 5.0000E-04,-3.4000E+00, 3.0000E-05,  1.0000E-05, 0.4200E+00  $ Silicate BG
;6.0000E-07, -2.6000E+00, 0.7000E-05,  0.7000E-05, 0.9000E+00, $ Carbon BG
;6.0000E-07, -3.4000E+00, 3.0000E-05,  1.0000E-05, 0.4200E+0   $ Silicate BG
	   ]

pd_pol_alignment = [ $
            '(*!dustem_params).pol(4).atresh', $     ; Threshold size for grain alignment
            '(*!dustem_params).pol(4).pstiff', $     ; Stiffness of transition between non-aligned and aligned grains sizes
       	    '(*!dustem_params).pol(4).plev'  $       ; Maximal alignment efficiency of grains
            ]
iv_pol_alignment = [ 	$
		0.1, 	$
		0.5, 	$
		1.0 	$
		]

pd_G0=['(*!dustem_params).G0'] ;Fixed parameter description
iv_G0=[17.]

pd_cont = ['dustem_create_continuum_2']
iv_cont = [12.e-4]
;stop
;pd = [ pd_pol_alignment, pd_mass ]
;iv = [ iv_pol_alignment, iv_mass ]

; Parameters
;pd = [ pd_G0, pd_mass, pd_pol_alignment, pd_sdist, pd_cont ]
;iv = [ iv_G0, iv_mass, iv_pol_alignment, iv_sdist, iv_cont ]
;pd = [ pd_mass, pd_sdist, pd_cont ]
;iv = [ iv_mass, iv_sdist, iv_cont ]
;pd = [ pd_mass, tls,pd_cont ]
;iv = [ iv_mass, iv_tls,iv_cont ]
pd = [pd_G0,  pd_mass, pd_cont,pd_sdist];, tls]
iv = [iv_G0, iv_mass, iv_cont,iv_sdist];,iv_tls]
;pd = [ pd_cont,tls,pd_G0 ]
;iv = [ iv_cont,iv_tls,iv_G0 ]

Npar=n_elements(pd)
ulimed=replicate(0,Npar)
llimed=replicate(1,Npar)
llims=replicate(0.,Npar)
ulims=replicate(0.,Npar)

; Upper limit on alignment efficiency
;ulimed(1+n_elements(pd_mass)+2) = 1
;ulims(1+n_elements(pd_mass)+2) = 1.
; Upper limit on grain size
; amCBEx
;ulimed(1+n_elements(pd_mass)+n_elements(pd_pol_alignment)+9) = 1
;ulims(1+n_elements(pd_mass)+n_elements(pd_pol_alignment)+9) = 9.9d-4

;Npar=n_elements(pd)
;ulimed=replicate(0,Npar)
;llimed=replicate(1,Npar)
;llims=replicate(0.,Npar)
;ulims=replicate(0.,Npar)
;stop
;     ulimed=[0   , 0.           ,0   ,0, 0, 0,0,1]  ; aucun des parametres n'a une valeur superieure limite
;ulims=[0   , 0.   ,0           ,0, 0, 0, 0,5.e-6]
     llimed=[1 ,         1   ,1, 1,  1., 1,0.,1];,1, 1]  ; tous les parametres ont une valeur inferieure limite
    llims =[0           ,0   ,0,0, 0,0., 0, 1.e-8];,0,3.]


;=== Fixed parameters
;fpd=['(*!dustem_params).G0'] ;Fixed parameter description
;fiv=[1000]
;dustem_init_fixed_params,fpd,fiv
;fpd=['(*!dustem_params).grains(1).mdust_o_mh'] ;Fixed parameter description
;fiv=[1.e-9]
;dustem_init_fixed_params,fpd,fiv

;== SET THE FITTED PARAMETERS
dustem_init_parinfo,pd,iv,up_limited=ulimed,lo_limited=llimed,up_limits=ulims,lo_limits=llims

;=== RUN fit
tol=1.e-13
Nitermax=20               ;maximum number of iteration. This is the criterium which will stop the fit procedure

loadct,13
!y.range=[1.e-3,100.]              ;This is to ajust plot range from outside the routine
t1=systime(0,/sec)
res=dustem_mpfit_data(tol=tol,Nitermax=Nitermax) ;,func_name=func_name,cf_min=cf_min)
t2=systime(0,/sec)
print,'executed in ',t2-t1,' sec'

;st=dustem_read_all_res(!dustem_res,/silent)

END