Skip to content

Commit

Permalink
Fix typo in SM.py (#150)
Browse files Browse the repository at this point in the history
* fix typo in SM.py

* Bump version number

---------

Co-authored-by: João Viana <[email protected]>
  • Loading branch information
lisabiermann and vollous authored Jun 26, 2024
1 parent 4b17e8a commit 96c6df2
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
cmake_minimum_required(VERSION 3.23)
project(
BSMPT
VERSION 3.0.2
VERSION 3.0.3
LANGUAGES C CXX
DESCRIPTION
"BSMPT - Beyond the Standard Model Phase Transitions : A C++ package for the computation of the EWPT in BSM models"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ SPDX-FileCopyrightText: 2021 Philipp Basler, Margarete Mühlleitner and Jonas M
SPDX-License-Identifier: GPL-3.0-or-later
-->

Program: BSMPT version 3.0.2
Program: BSMPT version 3.0.3

Released by: Philipp Basler, Lisa Biermann, Margarete Mühlleitner, Jonas Müller, Rui Santos and João Viana

Expand Down
20 changes: 10 additions & 10 deletions tools/ModelGeneration/sympy/SM.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
sigma0 = Matrix([[1,0],[0,1]])
sigma1 = Matrix([[0,1],[1,0]])
sigma2 = Matrix([[0,-I],[I,0]])
sigma3 = Matrix([[1,0],[0,-1]])
sigma3 = Matrix([[1,0],[0,-1]])
m_electron = symbols('C_MassElectron',real=True)
m_mu = symbols('C_MassMu',real=True)
m_tau = symbols('C_MassTau',real=True)
Expand Down Expand Up @@ -69,7 +69,7 @@
ER = symbols('eR muR tauR', real=True)
EL = symbols('eL muL tauL', real=True)

ye = sqrt(2)*m_electron/v
ye = sqrt(2)*m_electron/v
ymu = sqrt(2)*m_mu/v
ytau = sqrt(2)*m_tau/v

Expand All @@ -94,9 +94,9 @@
DR = symbols('dR sR bR', real=True)
QuarkBase = UL + DL + UR + DR

yb = sqrt(2)*m_bottom/v
yc = sqrt(2)*m_charm/v
yd = sqrt(2)*m_down/v
yb = sqrt(2)*m_bottom/v
yc = sqrt(2)*m_charm/v
yd = sqrt(2)*m_down/v
ys = sqrt(2)*m_strange/v
yt = sqrt(2)*m_top/v
yu = sqrt(2)*m_up/v
Expand All @@ -109,10 +109,10 @@
URVector = Matrix([[x] for x in UR])
DRVector = Matrix([[x] for x in DR])

VQuark = ULVector.transpose() * VCKM * DownCoupling * DRVector * phi[0]
VQuark+= DLVector.transpose() * DownCoupling * DRVector * phi[0]
VQuark = ULVector.transpose() * VCKM * DownCoupling * DRVector * phi[0]
VQuark+= DLVector.transpose() * DownCoupling * DRVector * phi[1]
VQuark+= ULVector.transpose() * UpCoupling * URVector * phi[1].conjugate()
VQuark+= -DLVector.transpose() * Dagger(VCKM)*UpCoupling*URVector*phi[1].conjugate()
VQuark+= -DLVector.transpose() * Dagger(VCKM)*UpCoupling*URVector*phi[0].conjugate()
VQuark = simplify(VQuark[0,0])


Expand Down Expand Up @@ -152,6 +152,6 @@

if method == 'treeSimpl':
toyModel.printTreeSimplified()

if method == 'CTSimpl':
toyModel.printVCTSimplified()
toyModel.printVCTSimplified()

0 comments on commit 96c6df2

Please sign in to comment.