Blame view

src/idl/dustem_fit_sed_polsed_readme.pro 7.33 KB
b5ccb706   Jean-Philippe Bernard   improved to fit p...
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
PRO dustem_fit_sed_polsed_readme,postcript=postcript,mode=mode,help=help

;This Readme describes how to fit total intensity and polarization SEDs jointly
;Obviously, the dustem package must have been installed succesfully
;see DustemWrap documentation for install instructions.

;+
; NAME:
;    dustem_fit_sed_polsed_readme
; PURPOSE:
;    This is an example of how to fit total intensity and polarization SEDs jointly
;    It is meant to be an example to follow when writing your own
;    programs using the dustem IDL wrapper.
; CATEGORY:
;    Dustem
; CALLING SEQUENCE:
;    dustem_fit_sed_polsed_readme,postcript=postcript,mode=mode,help=help
; INPUTS:
;    None
; OPTIONAL INPUT PARAMETERS:
;    None
; OUTPUTS:
;    None
; OPTIONAL OUTPUT PARAMETERS:
;    None
; ACCEPTED KEY-WORDS:
;    postcript = if set plot is done in DUSTEM/Docs/Figures/Last_dustem_fit.ps
;    help      = If set print this help
; COMMON BLOCKS:
;    None
; SIDE EFFECTS:
;    None
; RESTRICTIONS:
;    The dustem idl wrapper must be installed
; PROCEDURE:
;    None
; EXAMPLES
;    dustem_fit_sed_polsed_readme
; MODIFICATION HISTORY:
;    Written by J.P. Bernard June 29th 2011
;    see evolution details on the dustem cvs maintained at CESR
;    Contact J.-Ph. Bernard (Jean-Philippe.Bernard@cesr.fr) in case of problems.
;-

b5ccb706   Jean-Philippe Bernard   improved to fit p...
45
46
47
48
49
IF keyword_set(help) THEN BEGIN
  doc_library,'dustem_fit_sed_polsed_readme'
  goto,the_end
ENDIF

cf92aab3   Jean-Philippe Bernard   improved
50
51
dustem_define_la_common

b5ccb706   Jean-Philippe Bernard   improved to fit p...
52
53
54
;=== initialise dustem
;dustem_init,mode='COMPIEGNE_ETAL2010',/pol
use_mode='G17_MODELA'
4750086c   Ilyes Choubani   nouvelle philosph...
55

b5ccb706   Jean-Philippe Bernard   improved to fit p...
56
dustem_init,mode=use_mode,/pol
66aff855   Jean-Philippe Bernard   modified to impro...
57

b5ccb706   Jean-Philippe Bernard   improved to fit p...
58
59
!dustem_verbose=1
!dustem_show_plot=1
b5ccb706   Jean-Philippe Bernard   improved to fit p...
60
61
62
63
help,!run_pol

;stop

4fd64cbb   Ilyes Choubani   dustem_fit_sed_po...
64

b5ccb706   Jean-Philippe Bernard   improved to fit p...
65
66
67
68
69
70
71
;filters=['DIRBE1','DIRBE2','DIRBE3','DIRBE4','IRAS1','IRAS2','IRAS3','IRAS4','PACS3','SPIRE1','SPIRE2','SPIRE3','HFI2','HFI3','HFI4','HFI5','HFI6','LFI1','LFI2','LFI3']
filters=['IRAS1','IRAS2','IRAS3','IRAS4','PACS3','SPIRE1','SPIRE2','SPIRE3','HFI2','HFI3','HFI4','HFI5','HFI6','LFI1','LFI2','LFI3']
Nfilt=n_elements(filters)
sed=dustem_initialize_sed(Nfilt)
sed.filter=filters
sed.wave=dustem_filter2wav(filters)
sed.instru=dustem_filter2instru(filters)
b5ccb706   Jean-Philippe Bernard   improved to fit p...
72

4fd64cbb   Ilyes Choubani   dustem_fit_sed_po...
73
74
75
76
77
78
79
80
81
;INITIALIZING IQU & P SEDS and associated errors
sed.StokesI=sed.wave*0
sed.StokesQ=sed.wave*0
sed.StokesU=sed.wave*0
sed.largeP=sed.wave*0
sed.sigmaII=sed.wave*0
sed.sigmaQQ=sed.wave*0
sed.sigmaUU=sed.wave*0
sed.sigma_largep=sed.wave*0
83b3ddee   Jean-Philippe Bernard   modified with Ily...
82
;st=dustem_set_data(ext=ext,polsed=polsed,polext=polext,sed=sed,polfrac=polfrac,rchi2_weight=rchi2_weight,f_HI=f_HI,qsed=qsed,used=used,qext=qext,uext=uext)
4fd64cbb   Ilyes Choubani   dustem_fit_sed_po...
83
84
85
86
87
88
89
90

;INITIALIZING THE !dustem_data tags that will be internally used 
st=dustem_set_data(sed=sed,rchi2_weight=rchi2_weight,f_HI=f_HI)



;st=dustem_set_data() ;this should be one of the tests

4750086c   Ilyes Choubani   nouvelle philosph...
91

b5ccb706   Jean-Philippe Bernard   improved to fit p...
92
;=== Set which parameters you want to fit
b5ccb706   Jean-Philippe Bernard   improved to fit p...
93
pd = [ $
7f2b2149   Jean-Philippe Bernard   a Ilyes
94
95
             '(*!dustem_params).G0', $      ;G0
             '(*!dustem_params).grains(0).mdust_o_mh',$  ;PAH0 mass fraction
7d2d66e7   Ilyes Choubani   replacing polsed,...
96
97
98
             '(*!dustem_params).grains(1).mdust_o_mh',$  ;PAH0 mass fraction   
             '(*!dustem_params).grains(2).mdust_o_mh',$    ;PAH1 mass fraction
             '(*!dustem_params).grains(3).mdust_o_mh',$    ;amCBEx
83b3ddee   Jean-Philippe Bernard   modified with Ily...
99
             'dustem_plugin_synchrotron_2', $               ;Synchrotron amplitude
4fd64cbb   Ilyes Choubani   dustem_fit_sed_po...
100
             'dustem_plugin_synchrotron_4', $               ;Synchrotron polarization angle
7d2d66e7   Ilyes Choubani   replacing polsed,...
101
102
103
             'dustem_plugin_modify_dust_polar_angle_1', $ ;Polarization angle applied to the Fortran dust model via a core plugin
              'dustem_plugin_modify_spinning_sed_1', $
              'dustem_plugin_modify_spinning_sed_2' $
7f2b2149   Jean-Philippe Bernard   a Ilyes
104
105
              ]                   

7d2d66e7   Ilyes Choubani   replacing polsed,...
106
107
p_truth=[1.,7.8000E-04,7.8000E-04,7.8000E-04,1.6500E-04,5e-3,20.,68.,1e-3,20]    
;p_truth=[1.,7.8000E-04,7.8000E-04,7.8000E-04,1.6500E-04,5e-3,20.,0.2,20]    
b5ccb706   Jean-Philippe Bernard   improved to fit p...
108
109

;=== set initial value of parameters you want to fit
83b3ddee   Jean-Philippe Bernard   modified with Ily...
110
;iv=p_truth   ;exact solution
4750086c   Ilyes Choubani   nouvelle philosph...
111
112


4750086c   Ilyes Choubani   nouvelle philosph...
113
;UNCOMMENT THIS BLOCK AFTER THE TESTING
452c334e   Ilyes Choubani   Implementation Of...
114

7d2d66e7   Ilyes Choubani   replacing polsed,...
115
116
iv=p_truth+[0.,8.e-4,8.e-4,8.e-4,8.e-4,8e-3,-8.,-10.,1.2,10]      ;shifted from solution
;iv=p_truth+[0.,8.e-4,8.e-4,8.e-4,8.e-4,8e-3,-8.,1.2,10]      ;shifted from solution
452c334e   Ilyes Choubani   Implementation Of...
117

4750086c   Ilyes Choubani   nouvelle philosph...
118
119
120
121
122
;TESTING THE ISRF PLUGIN

Npar=n_elements(pd)  
ulimed=replicate(0,Npar)
llimed=replicate(1,Npar)
7f2b2149   Jean-Philippe Bernard   a Ilyes
123
llims=replicate(0,Npar)
b5ccb706   Jean-Philippe Bernard   improved to fit p...
124
125
126

;== SET THE FITTED PARAMETERS (now done in dustem_init_parinfo)
dustem_init_parinfo,pd,iv,up_limited=ulimed,lo_limited=llimed,up_limits=ulims,lo_limits=llims
7d2d66e7   Ilyes Choubani   replacing polsed,...
127
128
129
(*!dustem_params).grains[0].TYPE_KEYWORDS='logn-chrg-spin'
(*!dustem_params).grains[1].TYPE_KEYWORDS='logn-chrg-spin'

b5ccb706   Jean-Philippe Bernard   improved to fit p...
130

83b3ddee   Jean-Philippe Bernard   modified with Ily...
131
dustem_init_plugins,pd
4750086c   Ilyes Choubani   nouvelle philosph...
132

b5ccb706   Jean-Philippe Bernard   improved to fit p...
133
134
135
136
help,*!dustem_fit

help,!run_pol

83b3ddee   Jean-Philippe Bernard   modified with Ily...
137

83b3ddee   Jean-Philippe Bernard   modified with Ily...
138

4fd64cbb   Ilyes Choubani   dustem_fit_sed_po...
139
140
sed.StokesI=dustem_compute_sed(p_truth,ssti)   ;sst is not set on purpose, for dustem_compute_sed to compute the sed using fortran code
sed.sigmaII=abs(sed.StokesI*0.000001)
b5ccb706   Jean-Philippe Bernard   improved to fit p...
141

4fd64cbb   Ilyes Choubani   dustem_fit_sed_po...
142
;stop
4750086c   Ilyes Choubani   nouvelle philosph...
143

f882e687   Ilyes Choubani   improved
144

4fd64cbb   Ilyes Choubani   dustem_fit_sed_po...
145
146
sed.largeP=dustem_compute_polsed(p_truth,sstp)
sed.sigma_largep=abs(sed.largeP*0.000001)
b5ccb706   Jean-Philippe Bernard   improved to fit p...
147

452c334e   Ilyes Choubani   Implementation Of...
148

4fd64cbb   Ilyes Choubani   dustem_fit_sed_po...
149
toto=dustem_compute_stokes(p_truth,sstqu,dustem_qsed=dustem_qsed,dustem_used=dustem_used) ;this procedure also allows for the extraction of the spectra
452c334e   Ilyes Choubani   Implementation Of...
150

4fd64cbb   Ilyes Choubani   dustem_fit_sed_po...
151
152
sed.StokesQ=dustem_qsed
sed.sigmaQQ=abs(sed.StokesQ*0.000001)
452c334e   Ilyes Choubani   Implementation Of...
153

4fd64cbb   Ilyes Choubani   dustem_fit_sed_po...
154
155
sed.StokesU=dustem_used
sed.sigmaUU=abs(sed.StokesU*0.000001)
452c334e   Ilyes Choubani   Implementation Of...
156
157


f882e687   Ilyes Choubani   improved
158
; ;SET qext and uext data - comment if polarizarion data is to be used
452c334e   Ilyes Choubani   Implementation Of...
159
160
161
162
163
164
; qext.spec=dustem_qext
; qext.error=qext.spec*0.1
; 
; 
; uext.spec=dustem_uext
; uext.error=uext.spec*0.1
f882e687   Ilyes Choubani   improved
165
; ; 
452c334e   Ilyes Choubani   Implementation Of...
166

b5ccb706   Jean-Philippe Bernard   improved to fit p...
167
168
;=== SET THE OBSERVATION STRUCTURE

b5ccb706   Jean-Philippe Bernard   improved to fit p...
169
170
ind=where(sed.wave GE 0.1)

4fd64cbb   Ilyes Choubani   dustem_fit_sed_po...
171
172
173
st_bidon=dustem_set_data(sed=sed[ind],rchi2_weight=rchi2_weight,f_HI=f_HI) ; comment if second line is to be used


4750086c   Ilyes Choubani   nouvelle philosph...
174

b5ccb706   Jean-Philippe Bernard   improved to fit p...
175

b5ccb706   Jean-Philippe Bernard   improved to fit p...
176
;=== RUN fit
4750086c   Ilyes Choubani   nouvelle philosph...
177
178
179
180
181
182
tol=1.e-16
xtol=1.e-16
Nitermax=30; just an initialization
;for i=0L,n_tags(!dustem_data)-1 do begin
;if ptr_valid(!dustem_data.(i)) then Nitermax+=1
;endfor
452c334e   Ilyes Choubani   Implementation Of...
183
;Nitermax=4           ;maximum number of iteration. This is the criterion which will stop the fit procedure
b5ccb706   Jean-Philippe Bernard   improved to fit p...
184
185
186
187
188
189
190
191
192
193
194
195

xrange=[1.,2.e4]
yrange=[1e-4,1.e3]

loadct,13
;!y.range=[1e-8,100]              ;This is to ajust plot range from outside the routine
t1=systime(0,/sec)
res=dustem_mpfit_data(tol=tol,xtol=xtol,Nitermax=Nitermax,xrange=xrange,/xstyle,yrange=yrange,/ysty,/ylog,/xlog,xtit='wavelength [mic]',ytit='Brightness []')
t2=systime(0,/sec)

print,(res-p_truth)/p_truth*100.

66aff855   Jean-Philippe Bernard   modified to impro...
196
;help,(*!dustem_fit),/STRUCTURE
b5ccb706   Jean-Philippe Bernard   improved to fit p...
197
198

;=== SAVE FIT RESULTS
66aff855   Jean-Philippe Bernard   modified to impro...
199
file_out='/tmp/DUSTEM_polsed_fit_example.sav'
b5ccb706   Jean-Philippe Bernard   improved to fit p...
200
201
202
dustem_save_system_variables,file_out
message,'Saved '+file_out,/continue

83b3ddee   Jean-Philippe Bernard   modified with Ily...
203
;stop
b5ccb706   Jean-Philippe Bernard   improved to fit p...
204
205

;======================================
f882e687   Ilyes Choubani   improved
206
;====You can exit IDL here and re-enter   -   THIS PART APPEARS TO BE FAULTY. NEEDS INVESTIGATION 
b5ccb706   Jean-Philippe Bernard   improved to fit p...
207
;======================================
66aff855   Jean-Philippe Bernard   modified to impro...
208
file='/tmp/DUSTEM_polsed_fit_example.sav'
b5ccb706   Jean-Philippe Bernard   improved to fit p...
209
210
211
dustem_restore_system_variables,file

;=== Plot best fit
b5ccb706   Jean-Philippe Bernard   improved to fit p...
212
213
214
215
216
win=1
window,win & win=win+1
xrange=[1.,2.e4]
yrange=[1e-4,1.e3]

b5ccb706   Jean-Philippe Bernard   improved to fit p...
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
;=== recover best fit values
res=*(*!dustem_fit).current_param_values
chi2=(*!dustem_fit).chi2
rchi2=(*!dustem_fit).rchi2
;errors=*(*!dustem_fit).current_param_errors
errors=(*(*!dustem_fit).current_param_errors)*(*(*!dustem_fit).param_init_values)

;=== Plot best fit
tit='DUSTEM polarization dust Example (Saved)'
ytit=textoidl('I_\nu (MJy/sr) for N_H=10^{20} H/cm^2')
xtit=textoidl('\lambda (\mum)')

loadct,13
IF keyword_set(postcript) THEN BEGIN
  set_plot,'PS'
f882e687   Ilyes Choubani   improved
232
  ps_file=!dustem_wrap_soft_dir+'/Docs/'+'Last_dustem_spinning_fit.ps';'/Docs/Figures/'+'Last_dustem_spinning_fit.ps'
b5ccb706   Jean-Philippe Bernard   improved to fit p...
233
234
  device,filename=ps_file,/color
ENDIF
b5ccb706   Jean-Philippe Bernard   improved to fit p...
235

66aff855   Jean-Philippe Bernard   modified to impro...
236
dustem_sed_plot,*(*!dustem_fit).current_param_values,ytit=ytit,xtit=xtit,title=tit,yr=yrange,xr=xrange,/ysty,/xsty,res=res,errors=errors,chi2=chi2,rchi2=rchi2,/xlog,/ylog,/pol
b5ccb706   Jean-Philippe Bernard   improved to fit p...
237

b5ccb706   Jean-Philippe Bernard   improved to fit p...
238
239
240
241
242
243
244
245
246
247
248
IF keyword_set(postcript) THEN BEGIN
  device,/close
  set_plot,'X'
  message,'wrote '+ps_file,/info
ENDIF

print,'dustem_mpfit_sed executed in ',t2-t1,' sec'

the_end:

END
452c334e   Ilyes Choubani   Implementation Of...