Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F90451678
manual-changelog.tex
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Fri, Nov 1, 19:44
Size
1 KB
Mime Type
text/x-tex
Expires
Sun, Nov 3, 19:44 (2 d)
Engine
blob
Format
Raw Data
Handle
20379965
Attached To
rAKA akantu
manual-changelog.tex
View Options
\chapter*{Changes, New Features, and Fixes}
\section*{Version 3.0.0}
\begin{itemize}
\item[\textbf{\texttt{c++14}}] Switch from C++ standard \code{2003} to \code{2014}\\
Example of changes implied by this:
\begin{cpp}
for (UInt g = _not_ghost; g <= _ghost; ++g) {
GhostType gt = (GhostType)g;
Mesh::type_iterator it = this->mesh.firstType(spatial_dimension, gt);
Mesh::type_iterator end = this->mesh.lastType(spatial_dimension, gt);
for (; it != end; ++it) {
ElementType & type = *it;
...
}
}
\end{cpp}
becomes
\begin{cpp}
for (auto ghost_type : ghost_types) {
for (auto type : mesh.elementTypes(spatial_dimension,
ghost_type) {
...
}
}
\end{cpp}
\item[\textbf{\texttt{feature}}] Parallel cohesive elements
\item[\textbf{\texttt{feature}}] Models using new interface for solvers
\begin{itemize}
\item Same configuration for all models
\item Solver can be configured in input file
\item PETSc interface temporary inactive
\item Periodic boundary condition temporary inactive
\end{itemize}
\item[\textbf{\texttt{feature}}] Element groups created by default for \code{``physical\_names''}
\item[\textbf{\texttt{feature}}] Named arguments for functions (e.g. \code{model.initFull(\_analysis\_method = \_static)})
\item[\textbf{\texttt{api}}] Only one function to solve a step \code{model.solveStep()}
\item[\textbf{\texttt{api}}] Simplification of the parallel simulation with the
\code{mesh.distribute()} function
\end{itemize}
%%% Local Variables:
%%% mode: latex
%%% TeX-master: "manual"
%%% End:
Event Timeline
Log In to Comment