Skip to content

Commit

Permalink
use definition of SUSY scale in terms of stop(1) * stop(2)
Browse files Browse the repository at this point in the history
This addresses Reviewer 1 comment 2.
  • Loading branch information
Alexander Voigt committed Oct 23, 2014
1 parent 28e69cc commit c286072
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 20 deletions.
3 changes: 1 addition & 2 deletions doc/flexiblesusy-paper-response-1.tex
Expand Up @@ -40,8 +40,7 @@ \subsubsection{Comment 1}
\subsubsection{Comment 2}
\remark{addressed by Jae-hyeon}
\begin{lstlisting}
SUSYScale = Sqrt[ Product[ M[Su[i]]^(Abs[ZU[i,3]]^2 +
Abs[ZU[i,6]]^2), {i,6} ] ]
SUSYScale = Sqrt[Product[M[Su[i]]^(Abs[ZU[i,3]]^2 + Abs[ZU[i,6]]^2), {i,6}]];
\end{lstlisting}

\subsubsection{Comment 3}
Expand Down
39 changes: 21 additions & 18 deletions doc/flexiblesusy-paper.tex
Expand Up @@ -679,7 +679,7 @@ \section{Setting up a FlexibleSUSY model}
{MassG, m12}
};

SUSYScale = Sqrt[M[Su[1]]*M[Su[6]]];
SUSYScale = Sqrt[Product[M[Su[i]]^(Abs[ZU[i,3]]^2 + Abs[ZU[i,6]]^2), {i,6}]];

SUSYScaleFirstGuess = Sqrt[m0^2 + 4 m12^2];

Expand Down Expand Up @@ -780,12 +780,16 @@ \section{Setting up a FlexibleSUSY model}
\item \emph{SUSY-scale constraint:} The SUSY-scale is the typical mass
scale of the SUSY particle spectrum. At this scale \fs imposes the
EWSB conditions and calculates the pole mass spectrum. The
SUSY-scale, $M_S$, is usually defined as $M_S =
\sqrt{m_{\tilde{t}_1}m_{\tilde{t}_2}}$. However, in the example
above, where sfermion flavour violation is enabled, it has the value
$M_S = \sqrt{m_{\tilde{u}_1}m_{\tilde{u}_6}}$, where
$m_{\tilde{u}_1}$ and $m_{\tilde{u}_6}$ are the \DRbar\ masses of
the lightest and heaviest up-type squark, respectively.
SUSY-scale, $M_S$, is defined as
\begin{align}
M_S = \sqrt{\prod_{i=1}^6 m_{\tilde{u}_i}^{|(Z_u)_{i3}|^2 + |(Z_u)_{i6}|^2}} ,
\label{eq:definition_of_MS}
\end{align}
where $m_{\tilde{u}_i}$ is the \DRbar\ mass of the $i$th up-type
squark and $Z_u$ is the up-type squark mixing matrix. The
definition \eqref{eq:definition_of_MS} is equivalent to the usual
choice $M_S = \sqrt{m_{\tilde{t}_1}m_{\tilde{t}_2}}$ without squark
flavour mixing.
%
\item \emph{Low-scale constraint:} The low-scale constraint is the
constraint where the SUSY model is matched to the Standard Model.
Expand Down Expand Up @@ -1149,14 +1153,13 @@ \subsection{Boundary conditions}
\item The \emph{SUSY-scale constraint} is intended to set boundary
conditions at the mass scale $M_S$ of the SUSY particles. The value
of $M_S$ is defined by the model file variable \code{SUSYScale}. In
the example model file in \secref{sec:modfile} it is defined to be
$\sqrt{m_{\tilde{u}_1} m_{\tilde{u}_6}}$, where $m_{\tilde{u}_1}$ is
the mass of the lightest, and $m_{\tilde{u}_6}$ is the mass of the
heaviest up-type squark. The \code{apply()} function for this
constraint sets the model parameters to the values defined in
\code{SUSYScaleInput}. Afterwards, \code{apply()} solves the EWSB
equations at the loop level by adjusting the parameters given in
of $M_S$ is defined in the model file variable \code{SUSYScale}. In
the example model file in \secref{sec:modfile} it is given by the
expression written in Eq.~\eqref{eq:definition_of_MS}. The
\code{apply()} function for this constraint sets the model
parameters to the values defined in \code{SUSYScaleInput}.
Afterwards, \code{apply()} solves the EWSB equations at the loop
level by adjusting the parameters given in
\code{EWSBOutputParameters} such that the effective Higgs potential
is minimized. See \secref{sec:ewsb} for a more detailed description
of the EWSB in \fs.
Expand Down Expand Up @@ -1687,10 +1690,10 @@ \subsection{Two-scale fixed point iteration}
\item Calculate the \DRbar\ mass spectrum.
\item Recalculate the SUSY-scale $M_S$ as
\begin{align}
M_S = \sqrt{m_{\tilde{u}_1}m_{\tilde{u}_6}},
M_S = \sqrt{\prod_{i=1}^6 m_{\tilde{u}_i}^{|(Z_u)_{i3}|^2 + |(Z_u)_{i6}|^2}} ,
\end{align}
where $m_{\tilde{u}_1}$ and $m_{\tilde{u}_6}$ are the lightest and
heaviest up-type squarks, respectively.
where $m_{\tilde{u}_i}$ is the \DRbar\ mass of the $i$th up-type
squark.
\item Impose the SUSY-scale constraint (\code{SUSYScaleInput}). In
the example above, this step is trivial since
\code{SUSYScaleInput} is set to be empty.
Expand Down

0 comments on commit c286072

Please sign in to comment.