When the acronym package creates a footnote, it inserts the definition of the acronym provided with the acro macro.
I have a conflict whether to capitalize the definition or not, see the MWE.
\documentclass{article}
\usepackage[footnote]{acronym}
\usepackage{a4wide}
\title{Capitalization issues}
\author{Dohn Joe}
\begin{document}
\maketitle
\section*{My problem}
I would like the long form of the acronyms to be in lower case, since this
supports the use of the \verb+\acl+ macro. However, footnotes\footnote{Like
this example.} should start with a capital letter. \\[3ex]
%
Is there a way to enforce the capitalization of the first letter in a
footnote?\\[5ex]
%
A sentence containing \ac{CCM} and \acl{CCM}. \\[3ex]
%
Another sentence containing \ac{CFD} and \acl{CFD}.
\section*{Acronyms}
\begin{acronym}
\acro{CCM}{Computational continuum mechanics}
\acro{CFD}{computational fluid dynamics}
\end{acronym}
\end{document}
