ppdmod 2.0.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- ppdmod/__init__.py +1 -0
- ppdmod/base.py +225 -0
- ppdmod/components.py +557 -0
- ppdmod/config/standard_parameters.toml +290 -0
- ppdmod/data.py +485 -0
- ppdmod/fitting.py +546 -0
- ppdmod/options.py +164 -0
- ppdmod/parameter.py +152 -0
- ppdmod/plot.py +1241 -0
- ppdmod/utils.py +575 -0
- ppdmod-2.0.0.dist-info/METADATA +68 -0
- ppdmod-2.0.0.dist-info/RECORD +15 -0
- ppdmod-2.0.0.dist-info/WHEEL +5 -0
- ppdmod-2.0.0.dist-info/licenses/LICENSE +21 -0
- ppdmod-2.0.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,290 @@
|
|
1
|
+
[STANDARD_PARAMETERS.x]
|
2
|
+
name = "x"
|
3
|
+
description = "The x position"
|
4
|
+
value = 0
|
5
|
+
unit = "mas"
|
6
|
+
min = -10
|
7
|
+
max = 10
|
8
|
+
free = false
|
9
|
+
shared = false
|
10
|
+
|
11
|
+
[STANDARD_PARAMETERS.y]
|
12
|
+
name = "y"
|
13
|
+
description = "The y position"
|
14
|
+
value = 0
|
15
|
+
unit = "mas"
|
16
|
+
min = -10
|
17
|
+
max = 10
|
18
|
+
free = false
|
19
|
+
shared = false
|
20
|
+
|
21
|
+
[STANDARD_PARAMETERS.r]
|
22
|
+
name = "r"
|
23
|
+
description = "The radial magnitude"
|
24
|
+
value = 0
|
25
|
+
unit = "mas"
|
26
|
+
min = 0
|
27
|
+
max = 10
|
28
|
+
free = false
|
29
|
+
shared = false
|
30
|
+
|
31
|
+
[STANDARD_PARAMETERS.phi]
|
32
|
+
name = "phi"
|
33
|
+
description = "The radial angle"
|
34
|
+
value = 0
|
35
|
+
unit = "deg"
|
36
|
+
min = -180
|
37
|
+
max = 180
|
38
|
+
free = false
|
39
|
+
shared = false
|
40
|
+
|
41
|
+
[STANDARD_PARAMETERS.f]
|
42
|
+
name = "f"
|
43
|
+
description = "The flux"
|
44
|
+
value = 1
|
45
|
+
unit = "Jy"
|
46
|
+
min = 0
|
47
|
+
max = 10
|
48
|
+
smooth = true
|
49
|
+
|
50
|
+
[STANDARD_PARAMETERS.lnf]
|
51
|
+
name = "lnf"
|
52
|
+
description = "The error correction term"
|
53
|
+
unit = "one"
|
54
|
+
min = -0.5
|
55
|
+
max = 0.5
|
56
|
+
free = false
|
57
|
+
shared = true
|
58
|
+
|
59
|
+
[STANDARD_PARAMETERS.fr]
|
60
|
+
name = "fr"
|
61
|
+
description = "The flux ratio"
|
62
|
+
value = 1
|
63
|
+
unit = "one"
|
64
|
+
min = 0
|
65
|
+
max = 1
|
66
|
+
|
67
|
+
[STANDARD_PARAMETERS.cinc]
|
68
|
+
name = "cinc"
|
69
|
+
description = "The cosine of the inclination"
|
70
|
+
value = 1
|
71
|
+
unit = "one"
|
72
|
+
min = 0
|
73
|
+
max = 1
|
74
|
+
|
75
|
+
[STANDARD_PARAMETERS.pa]
|
76
|
+
name = "pa"
|
77
|
+
description = "The major-axis position angle"
|
78
|
+
value = 0
|
79
|
+
unit = "deg"
|
80
|
+
min = -180
|
81
|
+
max = 180
|
82
|
+
periodic = true
|
83
|
+
|
84
|
+
[STANDARD_PARAMETERS.pixel_size]
|
85
|
+
name = "pixel_size"
|
86
|
+
description = "The pixel size"
|
87
|
+
value = 1
|
88
|
+
unit = "mas"
|
89
|
+
min = 0
|
90
|
+
max = 100
|
91
|
+
|
92
|
+
[STANDARD_PARAMETERS.dim]
|
93
|
+
name = "dim"
|
94
|
+
description = "The pixel dimension"
|
95
|
+
value = 128
|
96
|
+
unit = "one"
|
97
|
+
dtype = "int"
|
98
|
+
|
99
|
+
[STANDARD_PARAMETERS.modulation]
|
100
|
+
name = "modulation"
|
101
|
+
description = "The number of cosine modulations"
|
102
|
+
value = 1
|
103
|
+
unit = "one"
|
104
|
+
dtype = "int"
|
105
|
+
|
106
|
+
[STANDARD_PARAMETERS.exp]
|
107
|
+
name = "exponent"
|
108
|
+
description = "An exponent"
|
109
|
+
value = 1
|
110
|
+
unit = "one"
|
111
|
+
min = 0
|
112
|
+
max = 1
|
113
|
+
free = true
|
114
|
+
|
115
|
+
[STANDARD_PARAMETERS.wl]
|
116
|
+
name = "wl"
|
117
|
+
description = "The wavelength"
|
118
|
+
value = 0
|
119
|
+
unit = "um"
|
120
|
+
|
121
|
+
[STANDARD_PARAMETERS.fov]
|
122
|
+
name = "fov"
|
123
|
+
value = 0
|
124
|
+
min = 0
|
125
|
+
max = 100
|
126
|
+
description = "The field of view"
|
127
|
+
unit = "mas"
|
128
|
+
|
129
|
+
[STANDARD_PARAMETERS.rho]
|
130
|
+
name = "rho"
|
131
|
+
description = "The modulation amplitude"
|
132
|
+
value = 0
|
133
|
+
unit = "one"
|
134
|
+
min = 0
|
135
|
+
max = 1
|
136
|
+
|
137
|
+
[STANDARD_PARAMETERS.theta]
|
138
|
+
name = "theta"
|
139
|
+
description = "The major-axis modulation angle"
|
140
|
+
value = 0
|
141
|
+
unit = "deg"
|
142
|
+
min = -180
|
143
|
+
max = 180
|
144
|
+
periodic = true
|
145
|
+
|
146
|
+
[STANDARD_PARAMETERS.width]
|
147
|
+
name = "width"
|
148
|
+
description = "The width"
|
149
|
+
value = 0
|
150
|
+
unit = "mas"
|
151
|
+
min = 0
|
152
|
+
max = 300
|
153
|
+
free = true
|
154
|
+
|
155
|
+
[STANDARD_PARAMETERS.r0]
|
156
|
+
name = "r0"
|
157
|
+
description = "Reference radius"
|
158
|
+
value = 1
|
159
|
+
unit = "au"
|
160
|
+
|
161
|
+
[STANDARD_PARAMETERS.fwhm]
|
162
|
+
name = "fwhm"
|
163
|
+
value = 0
|
164
|
+
unit = "mas"
|
165
|
+
min = 0
|
166
|
+
max = 10
|
167
|
+
description = "The full width half maximum."
|
168
|
+
free = true
|
169
|
+
|
170
|
+
[STANDARD_PARAMETERS.rin]
|
171
|
+
name = "rin"
|
172
|
+
value = 0
|
173
|
+
unit = "mas"
|
174
|
+
min = 0
|
175
|
+
max = 50
|
176
|
+
description = "The inner radius"
|
177
|
+
free = true
|
178
|
+
|
179
|
+
[STANDARD_PARAMETERS.rout]
|
180
|
+
name = "rout"
|
181
|
+
description = "The outer radius"
|
182
|
+
min = 0
|
183
|
+
unit = "mas"
|
184
|
+
max = 300
|
185
|
+
value = 300
|
186
|
+
|
187
|
+
[STANDARD_PARAMETERS.temp0]
|
188
|
+
name = "temp0"
|
189
|
+
description = "The temperature at a reference radius"
|
190
|
+
value = 1500
|
191
|
+
unit = "K"
|
192
|
+
min = 0
|
193
|
+
max = 3000
|
194
|
+
free = true
|
195
|
+
|
196
|
+
[STANDARD_PARAMETERS.tempc]
|
197
|
+
name = "tempc"
|
198
|
+
description = "The characteristic temperature"
|
199
|
+
value = 0
|
200
|
+
unit = "K"
|
201
|
+
min = 0
|
202
|
+
max = 3000
|
203
|
+
free = true
|
204
|
+
|
205
|
+
[STANDARD_PARAMETERS.q]
|
206
|
+
name = "q"
|
207
|
+
value = 0.5
|
208
|
+
min = -1
|
209
|
+
max = -0.3
|
210
|
+
unit = "one"
|
211
|
+
description = "The power-law exponent for a temperature profile"
|
212
|
+
free = true
|
213
|
+
|
214
|
+
[STANDARD_PARAMETERS.p]
|
215
|
+
name = "p"
|
216
|
+
description = "The power-law exponent for a dust surface density profile"
|
217
|
+
value = 0.5
|
218
|
+
unit = "one"
|
219
|
+
min = -1
|
220
|
+
max = 1
|
221
|
+
free = true
|
222
|
+
|
223
|
+
[STANDARD_PARAMETERS.sigma0]
|
224
|
+
name = "sigma0"
|
225
|
+
description = "The surface density at a reference radius"
|
226
|
+
value = 1e-3
|
227
|
+
unit = "g/cm^2"
|
228
|
+
min = 0
|
229
|
+
max = 0.01
|
230
|
+
free = true
|
231
|
+
|
232
|
+
[STANDARD_PARAMETERS.kappa_sil]
|
233
|
+
name = "kappa_sil"
|
234
|
+
description = "The dust mass silicate absorption coefficient"
|
235
|
+
value = 0
|
236
|
+
unit = "cm^2/g"
|
237
|
+
smooth = true
|
238
|
+
|
239
|
+
[STANDARD_PARAMETERS.kappa_cont]
|
240
|
+
name = "kappa_cont"
|
241
|
+
description = "The continuum dust mass absorption coefficient"
|
242
|
+
value = 0
|
243
|
+
unit = "cm^2/g"
|
244
|
+
smooth = true
|
245
|
+
|
246
|
+
[STANDARD_PARAMETERS.weight_cont]
|
247
|
+
name = "weight_cont"
|
248
|
+
description = "The mass fraction of continuum vs. silicate"
|
249
|
+
value = 0
|
250
|
+
unit = "pct"
|
251
|
+
min = 0
|
252
|
+
max = 100
|
253
|
+
free = true
|
254
|
+
|
255
|
+
[STANDARD_PARAMETERS.pah]
|
256
|
+
name = "pah"
|
257
|
+
description = "The flux curve of the PAHs"
|
258
|
+
value = 0
|
259
|
+
unit = "Jy"
|
260
|
+
|
261
|
+
[STANDARD_PARAMETERS.scale_pah]
|
262
|
+
name = "scale_pah"
|
263
|
+
description = "The mass fraction for the PAHs"
|
264
|
+
value = 0
|
265
|
+
unit = "one"
|
266
|
+
free = true
|
267
|
+
|
268
|
+
[STANDARD_PARAMETERS.dist]
|
269
|
+
name = "dist"
|
270
|
+
description = "The Distance"
|
271
|
+
value = 0
|
272
|
+
unit = "pc"
|
273
|
+
min = 0
|
274
|
+
max = 1000
|
275
|
+
|
276
|
+
[STANDARD_PARAMETERS.eff_temp]
|
277
|
+
name = "eff_temp"
|
278
|
+
description = "The star's effective temperature"
|
279
|
+
value = 0
|
280
|
+
unit = "K"
|
281
|
+
min = 0
|
282
|
+
max = 30000
|
283
|
+
|
284
|
+
[STANDARD_PARAMETERS.eff_radius]
|
285
|
+
name = "eff_radius"
|
286
|
+
description = "The stellar radius"
|
287
|
+
value = 0
|
288
|
+
unit = "Rsun"
|
289
|
+
min = 0
|
290
|
+
max = 10
|