Page 1 of 1

RunRGEs.m file

Posted: 14. Jan 2017, 17:37
by sgurruti
Hello,
I am calculating the RGEs for a new model which contains a Majorana mass matrix (Mn) and an additional Yukawa interaction parametrized by a non-diagonal Yukawa matrix (Yn). When I see the RGE for Mn (typing BetaMuij in Mathematica) I get

Code: Select all

{Mn[i1, i2], MatMul[Mn, conj[Yn], Tp[Yn]][i1, i2] + MatMul[Yn, Adj[Yn], Mn][i1, i2],0}
but when I look the RunRGEs.m file (following http://stauby.de/sarah_wiki/index.php?t ... athematica) I only find diagonal terms, for instance:

Code: Select all

Derivative[1][Mn[1, 1]][t] == (Log[10]*Mn[1, 1][t]*Yn[1, 1][t]^2)/(8*Pi^2)
Derivative[1][Mn[2, 2]][t] == (Log[10]*Mn[2, 2][t]*Yn[2, 2][t]^2)/(8*Pi^2)
Derivative[1][Mn[3, 3]][t] == (Log[10]*Mn[3, 3][t]*Yn[3, 3][t]^2)/(8*Pi^2)
Is there a way to re-generate RunRGEs.m including the non-diagonal terms, or something similar to solve those equations in Mathematica?

Best regards,
Sebastian

Re: RunRGEs.m file

Posted: 14. Jan 2017, 19:21
by FStaub

Re: RunRGEs.m file

Posted: 15. Jan 2017, 00:01
by sgurruti
Thank you!