First off, please take care on how you input math formulas: there are really many errors in
$T_a$=$\sqrt{3}$.$T_s$.$\frac{V_r}{U_{dc}}$.sin($\frac{\pi}{3}$-$\gamma$)
It should be a single formula, using \sin for the sine function; the low period never stands for multiplication in mathematics. Either use \cdot or, even better, nothing at all; however, a thin space is good between a “square root of 3” factor and the following term:
$T_a=\sqrt{3}\,T_s\frac{V_r}{U_{dc}}\sin(\frac{\pi}{3}-\gamma)$
Compare the two outputs.

Now let's consider the table. There is no need to vertically center the sector numbers: a small space between two groups is sufficient; actually the table looks a bit odd with the centered numbers. Anyhow, if you really want it, use \multirow. Never use \\ for adding vertical space between rows: \addlinespace is what you want.
The expressions should be left aligned: they have slightly different widths and centering them would create a jagged column.
Next, a devious trick: since all formulas have a common factor, define a macro for it, which eases input and also allows for adding a phantom that will avoid clashes between the fractions (a \Big bar). This macro is only defined in the particular table environment.
\documentclass{article}
\usepackage{booktabs}
\begin{document}
\begin{table}
\centering
\caption{Expressions des instants de commutation pour chaque secteur}
\newcommand{\commonfactor}{%
\vphantom{\Big|}%
\sqrt{3}\,T_s\frac{V_r}{U_{dc}}%
}
\begin{tabular}{@{} c l @{}}
\toprule
Sector & \multicolumn{1}{c}{Expressions des instants} \\
number & \multicolumn{1}{c}{de commutation} \\
\midrule
1 & $T_a=\commonfactor\sin(\frac{\pi}{3}-\gamma)$ \\
& $T_b=\commonfactor\sin(\gamma)$ \\
\addlinespace
2 & $T_a=\commonfactor\sin(\frac{2\pi}{3}-\gamma)$ \\
& $T_b=\commonfactor\sin(\gamma-\frac{\pi}{3})$ \\
\addlinespace
3 & $T_a=\commonfactor\sin(\pi-\gamma)$ \\
& $T_b=\commonfactor\sin(\gamma-\frac{2\pi}{3})$ \\
\addlinespace
4 & $T_a=\commonfactor\sin(\frac{4\pi}{3}-\gamma)$ \\
& $T_b=\commonfactor\sin(\gamma-\pi)$ \\
\addlinespace
5 & $T_a=\commonfactor\sin(\frac{5\pi}{3}-\gamma)$ \\
& $T_b=\commonfactor\sin(\gamma-\frac{4\pi}{3})$ \\
\addlinespace
6 & $T_a=\commonfactor\sin(2\pi-\gamma)$\\
& $T_b=\commonfactor\sin(\gamma-\frac{5\pi}{3})$ \\
\bottomrule
\end{tabular}
\end{table}
\end{document}

If you don't have space constraints (two column typesetting), you can do even better:
\documentclass{article}
\usepackage{booktabs}
\begin{document}
\begin{table}
\centering
\caption{Expressions des instants de commutation pour chaque secteur}
\newcommand{\commonfactor}{%
% \vphantom{\Big|}%
\sqrt{3}\,T_s\frac{V_r}{U_{dc}}%
}
\begin{tabular}{@{} c l l @{}}
\toprule
Sector & \multicolumn{2}{c}{Expressions des instants de commutation} \\
\midrule
1 & $T_a=\commonfactor\sin(\frac{\pi}{3}-\gamma)$
& $T_b=\commonfactor\sin(\gamma)$ \\
\addlinespace
2 & $T_a=\commonfactor\sin(\frac{2\pi}{3}-\gamma)$
& $T_b=\commonfactor\sin(\gamma-\frac{\pi}{3})$ \\
\addlinespace
3 & $T_a=\commonfactor\sin(\pi-\gamma)$
& $T_b=\commonfactor\sin(\gamma-\frac{2\pi}{3})$ \\
\addlinespace
4 & $T_a=\commonfactor\sin(\frac{4\pi}{3}-\gamma)$
& $T_b=\commonfactor\sin(\gamma-\pi)$ \\
\addlinespace
5 & $T_a=\commonfactor\sin(\frac{5\pi}{3}-\gamma)$
& $T_b=\commonfactor\sin(\gamma-\frac{4\pi}{3})$ \\
\addlinespace
6 & $T_a=\commonfactor\sin(2\pi-\gamma)$
& $T_b=\commonfactor\sin(\gamma-\frac{5\pi}{3})$ \\
\bottomrule
\end{tabular}
\end{table}
\end{document}

As you see, I commented out the \vphantom{\Big|} in the definition, because here it's not needed.
\documentclass{...}, the required\usepackage's,\begin{document}, and\end{document}. – Ruixi Zhang Jul 28 '18 at 19:19$T_a = c \cdot \sin\alpha$ and $T_b = c \cdot \sin\beta$ with $c=...$and then having columns just for the different arguments of sine? – nox Jul 28 '18 at 19:56