Commit 0ff179f4a95e8e1644b0a49407cb61abfa43ba4a
1 parent
50214a89
Exists in
master
fix min/max problem
Showing
1 changed file
with
7 additions
and
7 deletions
Show diff stats
LabTools/IRAP/GSO/make_sed_tables_byprop.pro
... | ... | @@ -116,22 +116,22 @@ pro make_sed_tables_byprop, dust_model, grid_type = grid_type, test = test, show |
116 | 116 | pd = [ $ |
117 | 117 | '(*!dustem_params).'+grain+'.amin', $ ; minimum grain size |
118 | 118 | '(*!dustem_params).'+grain+'.amax', $ ; maximum grain size |
119 | - '(*!dustem_params).'+grain+'.alpha_0_a0'] ; index of a power law (ALPHA) that describes the grain size distribution | |
119 | + '(*!dustem_params).'+grain+'.ALPHA_O_A0'] ; index of a power law (ALPHA) that describes the grain size distribution | |
120 | 120 | |
121 | 121 | default_value=(dustem_get_param_values_default(pd)) |
122 | 122 | |
123 | 123 | case grain of |
124 | 124 | 'grains(0)': begin |
125 | - gmin=3.00E-08 | |
126 | - gmax=7.25E-08 | |
125 | + gmin=3.00E-08*1.00001 | |
126 | + gmax=7.25E-08*1.00001 | |
127 | 127 | end |
128 | 128 | 'grains(1)': begin |
129 | - gmin=3.00E-08 | |
130 | - gmax=2.00E-05 | |
129 | + gmin=3.00E-08*1.00001 | |
130 | + gmax=2.00E-05*1.00001 | |
131 | 131 | end |
132 | 132 | 'grains(2)': begin |
133 | - gmin=3.00E-08 | |
134 | - gmax=2.00E-05 | |
133 | + gmin=3.00E-08*1.00001 | |
134 | + gmax=2.00E-05*1.00001 | |
135 | 135 | end |
136 | 136 | endcase |
137 | 137 | |
... | ... |