-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
51 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
from typing import List | ||
|
||
from feynml.leg import Leg | ||
|
||
from feynamp import sympy | ||
from feynamp.leg import color_vector_to_casimir, get_color_vector, get_leg_momentum | ||
|
||
|
||
def assert_spincorrelation(sympy_expr, fd, legs: List[Leg], model): | ||
assert 1 == 1 |
41 changes: 41 additions & 0 deletions
41
tests/form/qcd/2_to_2/spincorrelation/test_spincorrelation_ee_qq.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
import logging | ||
|
||
import equation_database.isbn_9780511628788 as ref | ||
import sympy | ||
from feynml.interface.qgraf import style | ||
from feynmodel.interface.qgraf import feynmodel_to_qgraf | ||
from feynmodel.interface.ufo import load_ufo_model | ||
from pyfeyn2.feynmandiagram import FeynML | ||
from pyqgraf import qgraf | ||
from xsdata.formats.dataclass.parsers import XmlParser | ||
|
||
from feynamp.form import compute_squared | ||
from feynamp.test.colorcorrelation import assert_colorcorrelation | ||
from feynamp.test.spincorrelation import assert_spincorrelation | ||
|
||
logger = logging.getLogger("feynamp") | ||
logger.setLevel(logging.DEBUG) | ||
|
||
|
||
def test_colorcorrelation_ee_qq(): | ||
fm = load_ufo_model("ufo_sm") | ||
qfm = feynmodel_to_qgraf(fm, True, False) | ||
|
||
qgraf.install() | ||
xml_string = qgraf.run( | ||
"e_minus[p1], e_plus[p2]", | ||
"u[p3], u_bar[p4]", | ||
loops=0, | ||
loop_momentum="l", | ||
model=qfm, | ||
style=style, | ||
) | ||
|
||
parser = XmlParser() | ||
fml = parser.from_string(xml_string, FeynML) | ||
fds = [fml.diagrams[0]] | ||
born = compute_squared(fds, fm) | ||
cc = compute_squared(fds, fm, spincorrelated=True) | ||
assert (cc / born).simplify().equals(sympy.parse_expr("0")) | ||
|
||
assert_spincorrelation(cc / born, fds[0], fds[0].legs, fm) |