Package resizegather can resize equations, especially the equations from environment gather of package amsmath.
But tiny font sizes are difficult to read, thus I have added a version with line breaks:
\documentclass{article}
\usepackage{amsmath}
\usepackage{resizegather}
\begin{document}
\noindent A\hfill Z
\begin{gather}
\varphi_{ij}^q(t) =
2\left[
\dfrac{S_a}{L_a^2}
e^{ -(\Vert x_j(t) - x_i(t) - \Delta_{ij}^q\Vert^2/L_a^2)}
- \dfrac{S_r}{L_r^2}
e^{ -(\Vert x_j(t) - x_i(t) - \Delta_{ij}^q\Vert^2/L_r^2)}
+ \left( \dfrac{S_r}{L_r^2} + \dfrac{S_r}{L_a^2} \right)
e^{(- 1/L_r^2 + 1/L_a^2)
(\Vert x_j(t) - x_i(t) - \Delta_{ij}^q\Vert^2)}
\right]
\label{eq6}\\
\begin{aligned}
\varphi_{ij}^q(t) =
2\bigg[&
\dfrac{S_a}{L_a^2}
e^{ -(\Vert x_j(t) - x_i(t) - \Delta_{ij}^q\Vert^2/L_a^2)}
\\&
- \dfrac{S_r}{L_r^2}
e^{ -(\Vert x_j(t) - x_i(t) - \Delta_{ij}^q\Vert^2/L_r^2)}
\\&
+ \left( \dfrac{S_r}{L_r^2} + \dfrac{S_r}{L_a^2} \right)
e^{(- 1/L_r^2 + 1/L_a^2)
(\Vert x_j(t) - x_i(t) - \Delta_{ij}^q\Vert^2)}
\bigg]
\label{eq7}
\end{aligned}
\end{gather}
\end{document}

\setlength{\textwidth}{241pt}
In such a narrow column resizegather has to scale both equations down:
Package resizegather Warning: Equation line 1 is too large by 267.77846pt
(resizegather) in environment `gather' on input line 35.
Package resizegather Warning: Equation line 2 is too large by 20.76895pt
(resizegather) in environment `gather' on input line 35.
Thus I moved the second and third line in the second equation a little to the left:
\documentclass{article}
\usepackage{amsmath}
\usepackage{resizegather}
\setlength{\textwidth}{241pt}
\begin{document}
\noindent A\hfill Z
\begin{gather}
\varphi_{ij}^q(t) =
2\left[
\dfrac{S_a}{L_a^2}
e^{ -(\Vert x_j(t) - x_i(t) - \Delta_{ij}^q\Vert^2/L_a^2)}
- \dfrac{S_r}{L_r^2}
e^{ -(\Vert x_j(t) - x_i(t) - \Delta_{ij}^q\Vert^2/L_r^2)}
+ \left( \dfrac{S_r}{L_r^2} + \dfrac{S_r}{L_a^2} \right)
e^{(- 1/L_r^2 + 1/L_a^2)
(\Vert x_j(t) - x_i(t) - \Delta_{ij}^q\Vert^2)}
\right]
\label{eq6}\\
\begin{split}
\varphi_{ij}^q(t) &=
2\bigg[
\dfrac{S_a}{L_a^2}
e^{ -(\Vert x_j(t) - x_i(t) - \Delta_{ij}^q\Vert^2/L_a^2)}
\\&
- \dfrac{S_r}{L_r^2}
e^{ -(\Vert x_j(t) - x_i(t) - \Delta_{ij}^q\Vert^2/L_r^2)}
\\&
+ \left( \dfrac{S_r}{L_r^2} + \dfrac{S_r}{L_a^2} \right)
e^{(- 1/L_r^2 + 1/L_a^2)
(\Vert x_j(t) - x_i(t) - \Delta_{ij}^q\Vert^2)}
\bigg]
\label{eq7}
\end{split}
\end{gather}
\end{document}

241ptas thewidthargument of the\resizeboxas described in the accepted answer to the linked question. – Paul Gessler Feb 23 '14 at 08:05\resizeboxit did not work i wrote it as\resizebox{\textwidth}{!}{<content>}? – MohamedSayed Feb 23 '14 at 08:26