Blame view

src/idl/dustem_plugin_synchrotron.pro 2.09 KB
cbf75ef0   Ilyes Choubani   dustem_init_plugi...
1
FUNCTION dustem_plugin_synchrotron,key=key,val=val,scope=scope,help=help
b5ccb706   Jean-Philippe Bernard   improved to fit p...
2
3
4

;+
; NAME:
cbf75ef0   Ilyes Choubani   dustem_init_plugi...
5
;    dustem_plugin_synchrotron
b5ccb706   Jean-Philippe Bernard   improved to fit p...
6
; PURPOSE:
452c334e   Ilyes Choubani   Implementation Of...
7
;    DUSTEM plugin to compute synchrotron emission
b5ccb706   Jean-Philippe Bernard   improved to fit p...
8
9
10
; CATEGORY:
;    DUSTEM Wrapper
; CALLING SEQUENCE:
cbf75ef0   Ilyes Choubani   dustem_init_plugi...
11
;    synch=dustem_plugin_synchrotron([,key=][,val=])
b5ccb706   Jean-Philippe Bernard   improved to fit p...
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
; INPUTS:
;    None
; OPTIONAL INPUT PARAMETERS:
;    key  = input parameter number
;    val  = input parameter value
; OUTPUTS:
;    synch = synch spectrum (on dustem wavelengths)
; OPTIONAL OUTPUT PARAMETERS:
;    None
; ACCEPTED KEY-WORDS:
;    help                  = if set, print this help
; COMMON BLOCKS:
;    None
; SIDE EFFECTS:
;    None
; RESTRICTIONS:
;    None
; PROCEDURE:
cbf75ef0   Ilyes Choubani   dustem_init_plugi...
30
;    This is a dustem plugin
b5ccb706   Jean-Philippe Bernard   improved to fit p...
31
32
33
34
35
36
37
; EXAMPLES
;
; MODIFICATION HISTORY:
;    Written by JPB 
;-

IF keyword_set(help) THEN BEGIN
cbf75ef0   Ilyes Choubani   dustem_init_plugi...
38
  doc_library,'dustem_plugin_synchrotron'
b5ccb706   Jean-Philippe Bernard   improved to fit p...
39
40
41
42
43
44
  output=0.
  goto,the_end
ENDIF

;default values of input parameters
s=3           ;power spectrum of CR E distribution
452c334e   Ilyes Choubani   Implementation Of...
45
A=1           ;Synchrotron radiation amplitude at 10 mm
7f2b2149   Jean-Philippe Bernard   a Ilyes
46
47
psi=0.        ;default polarization angle
smallp=0.3    ;default polarization fraction
b5ccb706   Jean-Philippe Bernard   improved to fit p...
48
49

IF keyword_set(key) THEN BEGIN 
cbf75ef0   Ilyes Choubani   dustem_init_plugi...
50
  
7f2b2149   Jean-Philippe Bernard   a Ilyes
51
52
53
  ind1=where(key EQ 1,count1)
  ind2=where(key EQ 2,count2)
  ind3=where(key EQ 3,count3)
cbf75ef0   Ilyes Choubani   dustem_init_plugi...
54
  ind4=where(key EQ 4,count4)
b5ccb706   Jean-Philippe Bernard   improved to fit p...
55
  
4fd64cbb   Ilyes Choubani   dustem_fit_sed_po...
56
57
58
59
60
61
62
63
  IF count1 NE 0 then s=val[ind1[0]] ;else s=3
  IF count2 NE 0 then A=val[ind2[0]] ;else A=1
  IF count3 NE 0 then smallp=val[ind3[0]] 
  IF count4 NE 0 then BEGIN
  psi=val[ind4[0]]
  print, 'psi in synchro plugin is:'
  print,psi
  ENDIF
cbf75ef0   Ilyes Choubani   dustem_init_plugi...
64
65
      
   
452c334e   Ilyes Choubani   Implementation Of...
66
67
ENDIF

7f2b2149   Jean-Philippe Bernard   a Ilyes
68
69
lambir=dustem_get_wavelengths()
Nwavs=n_elements(lambir)
452c334e   Ilyes Choubani   Implementation Of...
70

b5ccb706   Jean-Philippe Bernard   improved to fit p...
71
72
73
74
cmic=3.e14
nu=cmic/lambir
lambir_ref=10000.

b5ccb706   Jean-Philippe Bernard   improved to fit p...
75
;see Deschenes et al 2008, eq 6
4fd64cbb   Ilyes Choubani   dustem_fit_sed_po...
76
output=fltarr(Nwavs,4)
7f2b2149   Jean-Philippe Bernard   a Ilyes
77
78
79
output[*,0]=nu^(-(s+3.)/2.)
norm=interpol(output[*,0],lambir,lambir_ref)
output[*,0]=A*output[*,0]/norm
cbf75ef0   Ilyes Choubani   dustem_init_plugi...
80
81

;polarization this actually need to 
7f2b2149   Jean-Philippe Bernard   a Ilyes
82
polar_ippsi2iqu,output[*,0],Q,U,replicate(smallp,Nwavs),replicate(psi,Nwavs)
cbf75ef0   Ilyes Choubani   dustem_init_plugi...
83

7f2b2149   Jean-Philippe Bernard   a Ilyes
84
output[*,1]=Q
cbf75ef0   Ilyes Choubani   dustem_init_plugi...
85
output[*,2]=U
4fd64cbb   Ilyes Choubani   dustem_fit_sed_po...
86
output[*,3]=output[*,0]*smallp ;polarized part of the synchrotron emission
b5ccb706   Jean-Philippe Bernard   improved to fit p...
87

4fd64cbb   Ilyes Choubani   dustem_fit_sed_po...
88
scope='ADD_SED+ADD_POLSED+ADD_QSED+ADD_USED'
7f2b2149   Jean-Philippe Bernard   a Ilyes
89
;scope=((*!dustem_scope).synchrotron)
452c334e   Ilyes Choubani   Implementation Of...
90
;if keyword_set(scope) then
b5ccb706   Jean-Philippe Bernard   improved to fit p...
91
92
93
94
95

the_end:
RETURN,output
  
END