Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions docs/notebooks/lightcurve_source_demo.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@
"\n",
"The `LightcurveTemplateModel` model is designed to replicate given light curves in specific bands. It is specified as a separate light curve for each passband. In this notebook we provide an introductory demo to setting up and using the `LightcurveTemplateModel` model.\n",
"\n",
"If you are interested in simulating curves of full SEDs over time, use the `SEDTemplateModel` or `MultiSEDTemplateModel` instead.\n",
"\n",
"## Setup"
]
},
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ dependencies = [
"numpy>=2.0",
"pandas",
"pooch",
"PyYAML>=6.0",
"regions",
"scipy",
"tqdm",
Expand Down
8 changes: 8 additions & 0 deletions src/lightcurvelynx/models/lightcurve_template_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
at the requested times and filters. If we are generating an SED for a given set of
wavelengths, the model computes a box-shaped SED basis function for each filter that
will produce the same bandflux after being passed through the passband filter.

Note: If you are interested in generating SED-level data, use the SEDTemplateModel in
src/lightcurvelynx/models/sed_template_model.py instead.
"""

import logging
Expand Down Expand Up @@ -516,6 +519,11 @@ class LightcurveTemplateModel(BaseLightcurveBandTemplateModel):
* ra - The object's right ascension in degrees.
* t0 - The t0 of the zero phase (if applicable), date.

Notes
-----
If you are interested in generating SED-level data, use the SEDTemplateModel in
src/lightcurvelynx/models/sed_template_model.py instead.

Attributes
----------
lightcurves : LightcurveBandData
Expand Down
Loading