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

phys: implement symbolic Dalitz phase space #139

Merged
merged 6 commits into from
Apr 26, 2022
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
12 changes: 12 additions & 0 deletions .cspell.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@
"breit",
"compwa",
"conda",
"Dalitz",
"defaultdict",
"eval",
"flatté",
Expand All @@ -73,6 +74,7 @@
"helicity",
"itertools",
"kwargs",
"Källén",
"lambdification",
"lambdified",
"lambdifies",
Expand Down Expand Up @@ -115,13 +117,15 @@
"astype",
"autolaunch",
"autonumbering",
"autoscale",
"autoupdate",
"axhline",
"axvline",
"azim",
"bdist",
"bgcolor",
"boldsymbol",
"byckling",
"cbff",
"celltoolbar",
"clim",
Expand Down Expand Up @@ -155,13 +159,15 @@
"filterwarnings",
"fontcolor",
"fontsize",
"framealpha",
"getitem",
"getsource",
"graphviz",
"gridspec",
"hasattr",
"heatmap",
"histtype",
"hspace",
"imag",
"infty",
"iplt",
Expand All @@ -179,6 +185,7 @@
"kutschke",
"lambdifier",
"lambdifygenerated",
"lightgray",
"linecap",
"linejoin",
"linestyle",
Expand All @@ -198,6 +205,7 @@
"maxsize",
"meshgrid",
"multiline",
"nansum",
"nbconvert",
"nbformat",
"nbmake",
Expand Down Expand Up @@ -233,6 +241,7 @@
"quadpy",
"rankdir",
"redeboer",
"relim",
"repr",
"richman",
"rpartition",
Expand All @@ -241,6 +250,8 @@
"rtfd",
"rules's",
"savefig",
"scalex",
"scaley",
"scimath",
"sdist",
"seealso",
Expand All @@ -265,6 +276,7 @@
"venv",
"vmax",
"vmin",
"wspace",
"xdata",
"xlabel",
"xlim",
Expand Down
10 changes: 10 additions & 0 deletions docs/bibliography.bib
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,16 @@ @book{beckTestDrivenDevelopmentExample2003
lccn = {QA76.76.T48 B43 2003}
}

@book{bycklingParticleKinematics1973,
title = {Particle {{Kinematics}}},
author = {Byckling, Eero and Kajantie, Keijo},
year = {1973},
publisher = {{Wiley}},
address = {{London, New York}},
isbn = {978-0-471-12885-4},
lccn = {QC794.6.K5 B95}
}

@article{chungPartialWaveAnalysis1995,
title = {{Partial wave analysis in 𝐾-matrix formalism}},
author = {Chung, Suh-Urk and Brose, J. and Hackmann, R. and Klempt, E. and Spanier, S. and Strassburger, C.},
Expand Down
1 change: 1 addition & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -279,6 +279,7 @@ def get_minor_version(package_name: str) -> str:
"report/014*",
"report/015*",
"report/016*",
"report/017*",
]
nb_output_stderr = "remove"
nb_render_priority = {
Expand Down
Loading