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

DiracOrder does not support lightcone components of Dirac matrices and Feynman #293

Open
CalunVier opened this issue Dec 31, 2024 · 1 comment

Comments

@CalunVier
Copy link

  • Your Mathematica version

14.0.0 for Microsoft Windows (64-bit) (December 13, 2023)

  • Your FeynCalc version

10.1.0

  • Did you try to reinstall FeynCalc (stable version) using the automatic installer to make sure that you have the latest bugfixes?

Yes

  • Does your Mathematica initialization file contain statements that might influence the behavior of FeynCalc? Sometimes external packages may modify `init.m` in unusual ways, causing troubles for other codes.

(** User Mathematica initialization file **)

  • Please provide a minimal working example that illustrates the problem and works on a fresh kernel. The example should be provided either by writing the code (as `InputForm`!) directly in the issue text or by attaching a Mathematica notebook. Please do not post code samples as screenshots, PDF files etc.: Those essentially require us to retype everything by hand, which is annoying and also time consuming. Please explain the difference between the current behavior and the expected behavior.
AntiCommutator[GSD[nb], GALRD[\[Nu], n, nb]] = 0
GSD[nb] . GALRD[\[Nu], n, nb] // DiracOrder[#, {\[Nu], nb}] &

output

0
GSD[nb] . GALRD[\[Nu], n, nb]

I was expecting nb and nu to swap places but no.

@vsht
Copy link
Member

vsht commented Jan 8, 2025

It works, if you disable DiracTrick.

FCClearScalarProducts[]
ScalarProduct[n] = 0;
ScalarProduct[nb] = 0;
ScalarProduct[n, nb] = 2;
GSD[nb] . GALRD[\[Nu], n, nb] // 
 DiracOrder[#, {\[Nu], nb}, DiracTrick -> False] &

There must be some standard ordering between the LC-components, and the currently chosen one is n,nb,perp. It's hard-coded here

diracologyDDimFinalOrdering[ b___,DiracGamma[LightConePerpendicularComponent[c_, n_Momentum, nb_Momentum], dim_],

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants