How would I use the Nomenclature to display a list of symbols sorted by the page number rather than symbol letter.
The code below was used to generate this List of Notations. However, I am trying to figure out how to sort by page number instead.

===
\documentclass[11pt,oneside,a4paper,onecolumn]{article}
\usepackage[left=1.5in,top=1.25in,bottom=1.25in,right=1.25in,papersize={8.50in,11.00in}]{geometry} % Sets the proper margins.
\usepackage{amsmath, amssymb, amsthm,mathtools} % AMS packages
\usepackage{hyperref}
\usepackage{appendix}
\usepackage[refpage]{nomencl}
\renewcommand{\nomname}{List of Notations}
\renewcommand*{\pagedeclaration}[1]{\unskip\dotfill\hyperpage{#1}}
\makenomenclature
\usepackage{makeidx}
\makeindex
\begin{document}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% Begin List of Notation Page
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\phantomsection % Create a phantom section such that the 'List of Notation' may be properly added to the table of contents.
\addcontentsline{toc}{section}{List of Notation}
\printnomenclature[1.5cm] % This command automatically generates the list of tables based on tables in the document.
\pagebreak[4]
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% End List of Notation Page
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{equation*}
F=ma
\end{equation*}
$\nomenclature{$F$}{Force}
$\nomenclature{$a$}{Acceleration}
\pagebreak[4]
\begin{equation*}
E=MC^2
\end{equation*}
$\nomenclature{$E$}{Energy}
$\nomenclature{$M$}{Mass}
$\nomenclature{$c$}{Speed of Light}
\end{document}
