-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Issue#27: Add references to projection note #28
Conversation
@@ -113,7 +113,7 @@ \subsection{Vector form} | |||
\nabla \cdot \mathbf{v}=0 \label{e:continuity_vec} | |||
\end{align} | |||
% | |||
\section{Projection algorithm} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
References should be added in paragraphs instead of section headers.
@@ -113,7 +113,7 @@ \subsection{Vector form} | |||
\nabla \cdot \mathbf{v}=0 \label{e:continuity_vec} | |||
\end{align} | |||
% | |||
\section{Projection algorithm} | |||
\section{Projection algorithm \cite{ferziger_cfd_2019}} | |||
Velocity at $n^{th}$ time-step is denoted as $\mathbf{v}^n$. Convection term is |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please write something about the numerical method you are employing in this note. Conventionally we (scientists and engineers) call them numerical methods, not algorithms. The term algorithm is mostly used by programmers.
…odify the content from 3-step projection method to 4-step projection method.
Solve for $\mathbf{v}^{n+1}$, we need to decide $\mathbf{P}$ beforehand. Projection | ||
algorithm is implemented with intermediate term $\mathbf{v}^{*}$, the momentum | ||
equation is split into 2 parts: | ||
Projection method\cite{ferziger_cfd_2019} split eq (\ref{e:momentum_pj}) into |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Conventionally we add citation at the end of a sentence. But at the time being it is OK to leave it here. We can come back here to change later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
And I wonder if you can pin-point to the original paper for the Projection Method?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sure, we can change it later; yes, this sounds more reasonable to me. Should they be included in a new issue?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sounds like a plan. Could you file an issue for yourself?
@EN-Chou I updated your permission and you should be able to merge the PR yourself. Could you please give it a try? |
This commit works on issue #27, add references to projection note.