Skip to content
Snippets Groups Projects
Commit 296c4252 authored by Pierre Augier's avatar Pierre Augier
Browse files

More small corrections fluiddyn and fig_simul_obj.dio.

parent 698aac61
No related branches found
No related tags found
No related merge requests found
......@@ -851,7 +851,8 @@
interesting.}.
%
It seems that a very important aspect in the future will be interoperability
between coexisting tools.
between coexisting tools\footnote{See for example the cross-language development
platform \href{https://arrow.apache.org/}{Apache Arrow}.}.
So what about Python? As already mentioned, it is today the language with the
strongest dynamics in science, data analysis and much more. Several students
......@@ -1164,8 +1165,8 @@
The scientific Python ecosystem is now very mature, robust, well documented and
fully integrated. Many of this components are supported by professional
developers paid by companies or research institutes, for example \pack{Numba}
(Anaconda, Nvidia), \pack{TensorFlow} (Google), \pack{PyTorch} (Facebook,
Twitter), Scikit-learn (INRIA), Mercurial (Facebook).
(Anaconda, Nvidia), \pack{TensorFlow} (Google), \pack{PyTorch} (Facebook, Twitter,
Nvidia), Scikit-learn (INRIA), Mercurial (Facebook).
%
The support by the Python community is both very reactive and of very good
level (for example in Stack Overflow, and issues page on major repositories)
......@@ -1309,7 +1310,7 @@
when they work on these programs, they work (often, for free) for the company that
sells the proprietary tool?
Some real open-source codes have emerged, for example
Some proper open-source codes have emerged, for example
\href{https://nek5000.mcs.anl.gov/}{NEK5000} (Fortran),
\href{https://www.openfoam.com/}{OpenFOAM} (C++),
\href{http://basilisk.fr}{Basilisk} (C) and
......@@ -1322,7 +1323,7 @@
2006\footnote{\url{https://www.nas.nasa.gov/assets/pdf/ams/%
2014/AMS_20141202_Othmer.pdf}}.
%
EDF, the main French electric utility company has also a very interesting
EDF, the main French electric utility company has also a interesting
\href{http://linuxfr.org/news/strat\%C3\%A9gie-open-source-\%C3\%A0-edf-rd}{%
open-source strategy}. It has produced many programs and in particular the CFD
solver \href{https://www.code-saturne.org}{Code\_Saturn}.
......@@ -1397,9 +1398,8 @@
Now, FluidDyn project hosts a number of specialized packages, namely:
\begin{itemize}
\item \fluidpack{dyn}: The base package which contains pure-python code that
can be reused in scripts or in specialized FluidDyn packages. It also contains
codes for miscellaneous command-line utilities useful for a typical fluid
dynamics user.
\item \fluidpack{dyn}: The base package which contains pure-python code that can
be reused in scripts or in specialized FluidDyn packages. It also contains codes
for miscellaneous command-line utilities useful for a typical fluid dynamics user.
The code of this package is presented in further detail in its documentation
......@@ -1404,5 +1404,5 @@
The code of this package is presented in further detail in its documentation
(\url{https://fluiddyn.readthedocs.io}) and some prominent features are
presented in the following subsection.
(\url{https://fluiddyn.readthedocs.io}) and some prominent features are presented
in the following subsection.
......@@ -1408,8 +1408,8 @@
\item \fluidpack{fft}~\cite[see the companion paper][]{fluidfft}: a package
which provides C++ and Python classes unifying various libaries to perform Fast
Fourier Transform (FFT) in sequential and in parallel.
\item \fluidpack{fft}~\cite[see the companion paper][]{fluidfft}: a package which
provides C++ and Python classes unifying various libaries to perform Fast Fourier
Transform (FFT) in sequential and in parallel.
\item \fluidpack{sim}~\cite[see the companion paper][]{fluidsim}: Numerically
oriented framework to run sequential and parallel Computational Fluid Dynamics
(CFD) simulations and on-the-fly post-processing for a variety of problems
......@@ -1412,8 +1412,8 @@
\item \fluidpack{sim}~\cite[see the companion paper][]{fluidsim}: Numerically
oriented framework to run sequential and parallel Computational Fluid Dynamics
(CFD) simulations and on-the-fly post-processing for a variety of problems
(Navier-Stokes, Shallow Water, F\"oppl von K\'arm\'an equations, to name a
few). A study using \fluidpack{sim} has just been published in Physics of
Fluids \cite[]{LindborgMohanan2017}.
(Navier-Stokes, Shallow Water, F\"oppl von K\'arm\'an equations, to name a few).
A study using \fluidpack{sim} has just been published in Physics of Fluids
\cite[]{LindborgMohanan2017}.
......@@ -1419,7 +1419,7 @@
\item \fluidpack{lab}: Package to handle laboratory experiments. Primarily used
to communicate with various hardware devices such as motors and pumps, to
handle I/O between sensors, and to store data.
\item \fluidpack{lab}: Package to handle laboratory experiments. Primarily used to
communicate with various hardware devices such as motors and pumps, to handle I/O
between sensors, and to store data.
%
Experiments using \fluidpack{lab} have been carried out in the DAMTP fluid
laboratory \cite[Cambridge,
......@@ -1437,11 +1437,11 @@
\item \fluidpack{foam}: Small package to load OpenFoam data and plot them.
\item \fluidpack{coriolis}: Small package used to carry out experiments in the
\href{http://www.legi.grenoble-inp.fr/web/spip.php?article757}{Coriolis
platform} (a large rotating platform participating in the European consortiums
Euhit and Hydralab) and open the data obtained \cite[see, for
example,][]{ISSF2016}. One of the motivations behind creating this package is
to study how to use open-source to create open-data.
\href{http://www.legi.grenoble-inp.fr/web/spip.php?article757}{Coriolis platform}
(a large rotating platform participating in the European consortiums Euhit and
Hydralab) and open the data obtained \cite[see, for example,][]{ISSF2016}. One of
the motivations behind creating this package is to study how to use open-source to
create and share open-data.
\end{itemize}
......@@ -1503,17 +1503,16 @@
\subsubsection*{Module \codeinline{fluiddyn.util.serieofarrays}}
This modules provides classes to iterate over files. It is a common task in
data processing to understand how to organized a \textit{serie} of files its
from filenames and formats. Then one has to form smaller set of arrays
contained in the files. For example, we can have such \textit{serie}:
\codeinline{im1\_1.png, im1\_2.png, im1\_3.png, im2\_1.png, im2\_2.png,
im2\_3.png} and we could create subsets like \codeinline{((im1\_1.png,
im1\_2.png, im1\_2.png), (im2\_1.png, im2\_2.png, im2\_3.png))}. From the same
\textit{serie} of images, we can also create other subsets
\codeinline{((im1\_1.png, im2\_1.png), (im1\_2.png, im2\_2.png), (im1\_3.png,
im2\_3.png))}.
This modules provides classes to iterate over files. It is a common task in data
processing to understand how to organized a \textit{serie} of files from filenames
and formats. Then one has to form smaller sets of arrays contained in the
files. For example, we can have such \textit{serie}: \codeinline{im1\_1.png,
im1\_2.png, im1\_3.png, im2\_1.png, im2\_2.png, im2\_3.png} and we could create
subsets like \codeinline{((im1\_1.png, im1\_2.png, im1\_2.png), (im2\_1.png,
im2\_2.png, im2\_3.png))}. From the same \textit{serie} of images, we can also
create other subsets \codeinline{((im1\_1.png, im2\_1.png), (im1\_2.png,
im2\_2.png), (im1\_3.png, im2\_3.png))}.
The classes of this module allows one to do it with a quite simple and general
API as shown in
\href{http://fluiddyn.readthedocs.io/en/latest/ipynb/tuto_serieofarrays.html}{%
......@@ -1516,8 +1515,8 @@
The classes of this module allows one to do it with a quite simple and general
API as shown in
\href{http://fluiddyn.readthedocs.io/en/latest/ipynb/tuto_serieofarrays.html}{%
the tutorial on this module}.
the tutorial on the module}.
\subsubsection*{Module \codeinline{fluiddyn.util.mpi}}
......@@ -1545,7 +1544,7 @@
\item \codeinline{fluidinfo}
Displays all important information related to software and hardware. It
Displays important information related to software and hardware. It
includes detailed information such as currently installed FluidDyn packages,
other third-party packages, C compiler, MPI and \Numpy configuration.
......@@ -1600,7 +1599,7 @@
landing page of the Bitbucket repository.
We also try to follow a consistent code style as recomended by PEP (Python
enhancement proposals) --- 8 and 257. This is also inspected using lint checkers
enhancement proposals) 8 and 257. This is also inspected using lint checkers
such as \codeinline{flake8} and \codeinline{pylint} among the developers. The
code is regularly cleaned up using the Python code formatter \codeinline{black}.
......
<mxfile userAgent="Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.0" version="8.6.4" editor="www.draw.io" type="device"><diagram id="d488cd5c-f9a3-7452-a3ba-77e4ba35fda0" name="Page-1">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</diagram></mxfile>
\ No newline at end of file
<mxfile userAgent="Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.0" version="8.6.4" editor="www.draw.io" type="device"><diagram id="d488cd5c-f9a3-7452-a3ba-77e4ba35fda0" name="Page-1">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</diagram></mxfile>
\ No newline at end of file
No preview for this file type
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment