Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Piecewise-constant chromatic variations (CMX) #1777

Merged
merged 28 commits into from
Nov 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
a305ae0
ChromaticCMX stub
abhisrkckl Jun 3, 2024
2142369
cmx
abhisrkckl Jun 3, 2024
e6e03c9
Merge branch 'nanograv:master' into cmx
abhisrkckl Jun 4, 2024
a6fee47
Merge branch 'master' into cmx
abhisrkckl Jun 5, 2024
3bc9e72
Merge branch 'nanograv:master' into cmx
abhisrkckl Jun 26, 2024
f775b57
Merge branch 'master' into cmx
abhisrkckl Jul 1, 2024
cc6830b
fix cmx
abhisrkckl Jul 2, 2024
e27371c
Merge branch 'master' into cmx
abhisrkckl Jul 11, 2024
f37888c
Merge branch 'master' into cmx
abhisrkckl Jul 12, 2024
07b77bf
Merge branch 'master' into cmx
abhisrkckl Jul 22, 2024
3b76e4b
Merge branch 'nanograv:master' into cmx
abhisrkckl Jul 23, 2024
4442bb8
Merge branch 'nanograv:master' into cmx
abhisrkckl Aug 1, 2024
e88be1e
Merge branch 'master' into cmx
abhisrkckl Aug 8, 2024
eb7c41d
Merge branch 'nanograv:master' into cmx
abhisrkckl Aug 11, 2024
955084e
Merge branch 'nanograv:master' into cmx
abhisrkckl Aug 12, 2024
ddf5a5e
Merge branch 'nanograv:master' into cmx
abhisrkckl Aug 13, 2024
d1058ef
Merge branch 'nanograv:master' into cmx
abhisrkckl Aug 27, 2024
1a502ed
Merge branch 'nanograv:master' into cmx
abhisrkckl Aug 27, 2024
1054ec2
Merge branch 'nanograv:master' into cmx
abhisrkckl Aug 29, 2024
e5920ca
Merge branch 'master' into cmx
abhisrkckl Nov 13, 2024
7373278
docs
abhisrkckl Nov 13, 2024
3c91b51
test_cmx
abhisrkckl Nov 13, 2024
4cab923
test
abhisrkckl Nov 13, 2024
dd1f3d5
Merge branch 'nanograv:master' into cmx
abhisrkckl Nov 14, 2024
f764eb0
Merge branch 'master' into cmx
abhisrkckl Nov 19, 2024
aa60469
Merge branch 'cmx' of https://github.com/abhisrkckl/PINT into cmx
abhisrkckl Nov 19, 2024
52645a9
test_cmx_delay
abhisrkckl Nov 20, 2024
2eaf80a
Merge branch 'nanograv:master' into cmx
abhisrkckl Nov 22, 2024
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
1 change: 1 addition & 0 deletions CHANGELOG-unreleased.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ the released changes.
- Added an option `linearize_model` to speed up the photon phases calculation within `event_optimize` through the designmatrix.
- Added AIC and BIC calculation to be written in the post fit parfile from `event_optimize`
- When TCB->TDB conversion info is missing, will print parameter name
- Piecewise-constant model for chromatic variations (CMX)
- `add_param` returns the name of the parameter (useful for numbered parameters)
### Fixed
- Changed WAVE_OM units from 1/d to rad/d.
Expand Down
2 changes: 1 addition & 1 deletion src/pint/models/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
from pint.models.binary_dd import BinaryDD, BinaryDDS, BinaryDDGR, BinaryDDH
from pint.models.binary_ddk import BinaryDDK
from pint.models.binary_ell1 import BinaryELL1, BinaryELL1H, BinaryELL1k
from pint.models.chromatic_model import ChromaticCM
from pint.models.chromatic_model import ChromaticCM, ChromaticCMX
from pint.models.cmwavex import CMWaveX
from pint.models.dispersion_model import (
DispersionDM,
Expand Down
Loading
Loading