I found this solution to explain some details of some equations.
In the first case I added \begin{minipage}[h]{0.95\textwidth}.....
while the second case is taken from the previous discussion.
I'm not very sure if this is correct. could you give any suggestions? thanks
\documentclass[a4paper]{article}
\usepackage[T1]{fontenc}
\usepackage[italian]{babel}
\usepackage{amsmath}
%\usepackage{mathtools}
%\usepackage{capt-of}
\usepackage{graphicx,wrapfig}
\usepackage{mwe}
\usepackage{scalerel}
\newcommand\scale[2]{\vstretch{#1}{\hstretch{#1}{#2}}}
\newcommand\ssp[1]{#1^{\scale{.8}{\scriptstyle{\prime}}}} %% scala il simbolo prime
\newcommand\sspp[1]{#1^{\scale{.8}{\scriptstyle{\prime\prime}}}}
\newcommand*{\Fra}[2]{\frac{#1}{#2}}
\newcommand{\ccdot}{\,\mathrm{\!\cdot\!}}
\graphicspath{ {./img/} }
\begin{document}
\begin{minipage}[h]{0.95\textwidth}
In particolare possono essere evidenziati due casi:\\
\vspace{-25pt}
\begin{wrapfigure}{l}{.3\textwidth}
\begin{align}
F_{rd}^2 = \Fra{\Delta{U^2}}{g\,H\,\Fra{\Delta{\rho}}{\rho}}\tag{\ref{eq090}}
\end{align}
\end{wrapfigure}
\begin{enumerate}
\item in cui si abbiano due densità uguali, $\Delta{\rho}=0$ ed essendo a denominatore fa andare il valore del \emph{Numero di Froude} infinito;
\item quanto $\Delta{\rho}\rightarrow\infty$ ( caso impossibile) allora $Fr_{rd}^2\rightarrow 0$
\end{enumerate}
\end{minipage}\vspace{5pt}
Da questo si capisce che usare l'inverso di Froude al quadrato sarebbe più razionale, in particolare viene utilizzato all'interno del numero di Richardson.\\
\bigskip\bigskip\bigskip
\begin{wrapfigure}{l}{.3\textwidth}
\begin{align}
F_{rd}^2 = \Fra{\Delta{U^2}}{g\,H\,\Fra{\Delta{\rho}}{\rho}}\tag{\ref{eq090}}
\end{align}
\end{wrapfigure}
In particolare possono essere evidenziati due casi:
\begin{enumerate}
\item in cui si abbiano due densità uguali, $\Delta{\rho}=0$ ed essendo a denominatore fa andare il valore del \emph{Numero di Froude} infinito;
\item quanto $\Delta{\rho}\rightarrow\infty$ ( caso impossibile) allora $Fr_{rd}^2\rightarrow 0$
\end{enumerate}
\vspace{10pt}
Da questo si capisce che usare l'inverso di Froude al quadrato sarebbe più razionale, in particolare viene utilizzato all'interno del numero di Richardson.
\end{document}


\begin{minipage}[h]{0.95\textwidth}?minipagedoes not have ahoption, and this just indents everything by a paragraph indent and reduces the width of the text by 5% ? – David Carlisle Mar 06 '19 at 20:09