Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
cigale
CIGALE
Commits
b823865c
Commit
b823865c
authored
Apr 21, 2014
by
Médéric Boquien
Browse files
Add proper values for qPAH.
parent
24921561
Changes
2
Hide whitespace changes
Inline
Side-by-side
database_builder/__init__.py
View file @
b823865c
...
...
@@ -462,8 +462,9 @@ def build_dl2007(base):
def
build_dl2014
(
base
):
dl2014_dir
=
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
'dl2014/'
)
qpah
=
{
"000"
:
0.
,
"010"
:
1.
,
"020"
:
2.
,
"030"
:
3.
,
"040"
:
4.
,
"050"
:
5.
,
"060"
:
6.
,
"070"
:
7.
,
"080"
:
8.
,
"090"
:
9.
,
"100"
:
10.
}
qpah
=
{
"000"
:
0.47
,
"010"
:
1.12
,
"020"
:
1.77
,
"030"
:
2.50
,
"040"
:
3.19
,
"050"
:
3.90
,
"060"
:
4.58
,
"070"
:
5.26
,
"080"
:
5.95
,
"090"
:
6.63
,
"100"
:
7.32
.}
uminimum
=
[
"0.100"
,
"0.120"
,
"0.150"
,
"0.170"
,
"0.200"
,
"0.250"
,
"0.300"
,
"0.350"
,
"0.400"
,
"0.500"
,
"0.600"
,
"0.700"
,
"0.800"
,
"1.000"
,
...
...
@@ -471,6 +472,7 @@ def build_dl2014(base):
"4.000"
,
"5.000"
,
"6.000"
,
"7.000"
,
"8.000"
,
"10.00"
,
"12.00"
,
"15.00"
,
"17.00"
,
"20.00"
,
"25.00"
,
"30.00"
,
"35.00"
,
"40.00"
,
"50.00"
]
alpha
=
[
"1.0"
,
"1.1"
,
"1.2"
,
"1.3"
,
"1.4"
,
"1.5"
,
"1.6"
,
"1.7"
,
"1.8"
,
"1.9"
,
"2.0"
,
"2.1"
,
"2.2"
,
"2.3"
,
"2.4"
,
"2.5"
,
"2.6"
,
"2.7"
,
"2.8"
,
"2.9"
,
"3.0"
]
...
...
pcigale/creation_modules/dl2014.py
View file @
b823865c
...
...
@@ -33,8 +33,8 @@ class DL2014(CreationModule):
parameter_list
=
OrderedDict
([
(
'qpah'
,
(
'float'
,
"Mass fraction of PAH. Possible values are: 0, 1
,
2,
3, 4, 5, 6
, "
"
7, 8, 9, 10
."
,
"Mass fraction of PAH. Possible values are: 0
.47
, 1
.1
2,
1.77
, "
"
2.50, 3.19, 3.90, 4.58, 5.26, 5.95, 6.63, 7.32
."
,
None
)),
(
'umin'
,
(
...
...
@@ -45,7 +45,6 @@ class DL2014(CreationModule):
"3.500, 4.000, 5.000, 6.000, 7.000, 8.000, 10.00, 12.00, 15.00, "
"17.00, 20.00, 25.00, 30.00, 35.00, 40.00, 50.00."
,
None
)),
(
'alpha'
,
(
'float'
,
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment