Skip to content

Commit

Permalink
remove mention of redistribution from irrad_method parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
kecnry committed Apr 4, 2023
1 parent 6188d8b commit d59f628
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion phoebe/frontend/default_bundles/default_binary.bundle
Original file line number Diff line number Diff line change
Expand Up @@ -1971,7 +1971,7 @@ null,
"compute": "phoebe01",
"kind": "phoebe",
"context": "compute",
"description": "Which method to use to handle all irradiation effects (reflection, redistribution)",
"description": "Which method to use to handle all irradiation effects (reflection)",
"choices": [
"none",
"wilson",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2162,7 +2162,7 @@ null,
"compute": "phoebe01",
"kind": "phoebe",
"context": "compute",
"description": "Which method to use to handle all irradiation effects (reflection, redistribution)",
"description": "Which method to use to handle all irradiation effects (reflection)",
"choices": [
"none",
"wilson",
Expand Down
2 changes: 1 addition & 1 deletion phoebe/frontend/default_bundles/default_star.bundle
Original file line number Diff line number Diff line change
Expand Up @@ -749,7 +749,7 @@ null,
"compute": "phoebe01",
"kind": "phoebe",
"context": "compute",
"description": "Which method to use to handle all irradiation effects (reflection, redistribution)",
"description": "Which method to use to handle all irradiation effects (reflection)",
"choices": [
"none",
"wilson",
Expand Down
2 changes: 1 addition & 1 deletion phoebe/parameters/compute.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ def phoebe(**kwargs):

# PHYSICS
# TODO: should either of these be per-dataset... if so: copy_for={'kind': ['rv_dep', 'lc_dep'], 'dataset': '*'}, dataset='_default' and then edit universe.py to pull for the correct dataset (will need to become dataset-dependent dictionary a la ld_func)
params += [ChoiceParameter(qualifier='irrad_method', value=kwargs.get('irrad_method', 'horvat'), choices=['none', 'wilson', 'horvat'], description='Which method to use to handle all irradiation effects (reflection, redistribution)')]
params += [ChoiceParameter(qualifier='irrad_method', value=kwargs.get('irrad_method', 'horvat'), choices=['none', 'wilson', 'horvat'], description='Which method to use to handle all irradiation effects (reflection)')]
params += [ChoiceParameter(qualifier='boosting_method', value=kwargs.get('boosting_method', 'none'), choices=['none'], advanced=True, description='Type of boosting method')]

# MESH
Expand Down

0 comments on commit d59f628

Please sign in to comment.