-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
**Major points:** * Removed the version numbers of the input file names (break compatibility with previous version). * Possibility to use finite pressure relaxation on UEq model for more than two phases. More information in: Schmidmayer _et al._ [https://doi.org/10.1002/fld.5142](https://doi.org/10.1002/fld.5142). * Possibility to initialize an unstructured simulation with the result of a previous simulation performed on a similar mesh and/or a different number of CPUs. This feature is particularly useful to fasten steady state convergence on a fine mesh using coarse mesh results. More information in: Cazé _et al._ (2023). Modelling and simulation of the cavitation phenomenon in space-engine turbopumps. [http://dx.doi.org/10.2139/ssrn.4479910](http://dx.doi.org/10.2139/ssrn.4479910). * PUEq phase-change model (handled through PTMu relaxation) does not require mass fraction threshold anymore to trigger mass transfer. Also more information in: Cazé _et al._ (2023). [http://dx.doi.org/10.2139/ssrn.4479910](http://dx.doi.org/10.2139/ssrn.4479910). * Add Moving Reference Frame coupling of a rotating region with a static one. Also more information in: Cazé _et al._ (2023). [http://dx.doi.org/10.2139/ssrn.4479910](http://dx.doi.org/10.2139/ssrn.4479910). * Renamed boundary condition names (break compatibility with previous version). * Immersed boundaries can be added in a Cartesian mesh domain (physicalEntity = -1). Similarly to: Trummler _et al._ [https://doi.org/10.1017/jfm.2020.432](https://doi.org/10.1017/jfm.2020.432). **Minor points:** * Option to record boundary quantities such as pressure forces and shear stress (useful for aerodynamic coefficient computation). * Possibility to display cells' reference length on XML output with unstructured mesh. * Add a tutorial on mesh mapping and low-Mach preconditionning options. * Add scripts related to droplet shock-induced cavitation. More information in: Biasiori-Poulanges & Schmidmayer (2023) [https://doi.org/10.1063/5.0127105](https://doi.org/10.1063/5.0127105) and Schmidmayer & Biasiori-Poulanges (2023) [https://doi.org/10.1063/5.0151404](https://doi.org/10.1063/5.0151404). * Improve variable name style for Gnuplot output. * Increase code coverage by nonreg. * Updated AMR refinement criteria to match the different modelling. * Always a little more source code translation from French to English. * A wall is now considered as a symmetry BC if viscosity is ignored. * Update of documentation. **Fixes:** * Fix the getTemperature() and copyPhase() methods for multiphase models. * Fix restart bug when using alphaNull on PUEq model. * Fix bug on simulation progress when using iteration control mode. * Fix a MPI data type that caused a crash during MPI_Allreduce on some compilers. * Minor fix for Euler-Korteweg model. * Correction on UEq BC for volume fraction flux, using sM instead of uStar to respect transport equation. * Update non-regression scripts to make them compatible with OS X. * Correction for phase change with a second-order method.
- Loading branch information
code-mphi
committed
Sep 15, 2023
1 parent
dd550d1
commit dab2c84
Showing
1,250 changed files
with
19,955 additions
and
8,287 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,3 +30,4 @@ venv | |
*.v12.suo | ||
*.ods | ||
error_* | ||
*.msh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,4 @@ | ||
ECOGEN is under GPLv3 or later license. Here is the name and contact information of contributors of the project. | ||
|
||
Contributors : S. Le Martelot, F. Petitpas, K. Schmidmayer, E. Daniel, B. Dorschner, J. Caze | ||
ECOGEN is under GPLv3 or later license. Here is the name and contact information of contributors of the project (from first to last to join). | ||
|
||
F. Petitpas | ||
----------- | ||
|
@@ -13,8 +11,8 @@ Expert enginneer turbopumps at CNES, France. | |
|
||
K. Schmidmayer | ||
-------------- | ||
Permanent researcher at Inria Sud Ouest, France. | ||
e-mail adress: kevin.schmidmayer@gmail.com | ||
Permanent researcher at Inria Center of the University of Bordeaux, France. Teaching at Université de Pau et des Pays de l'Adour. | ||
e-mail adress: kevin.schmidmayer@inria.fr | ||
Personal web page: https://kevinschmidmayer.github.io/ | ||
|
||
E. Daniel | ||
|
@@ -29,5 +27,14 @@ Personal web page: https://benedikt-dorschner.com/ | |
|
||
J. Caze | ||
------- | ||
Phd student at CNES / Aix Marseille Universite, France. | ||
Personal web page: https://joriscaze.github.io/website/ | ||
Senior developer at SII group. Was PhD student and postdoc at CNES / Aix Marseille Universite, France. | ||
Personal web page: https://joriscaze.github.io/ | ||
|
||
F. Gadiri | ||
--------- | ||
Was a Master student at Aix Marseille Universite, France. | ||
|
||
S. Schropff | ||
----------- | ||
PhD student at Aix Marseille Universite, France. | ||
e-mail adress: [email protected] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
# -- Dockerfile -- | ||
# This Dockerfile provides a simple way to build documentation | ||
# without requiring to install all dependencies locally | ||
|
||
# Pull Ubuntu latest version | ||
FROM ubuntu:20.04 | ||
|
||
# Minimal Python installation | ||
RUN apt-get update | ||
RUN apt-get upgrade -y | ||
RUN apt-get install -y python3 \ | ||
python3-pip | ||
|
||
# Install Sphinx | ||
RUN pip3 install sphinx sphinx_rtd_theme sphinx-numfig sphinxcontrib-bibtex | ||
|
||
# # Install LaTeX (to build PDF version of the doc) | ||
ENV DEBIAN_FRONTEND=noninteractive | ||
RUN apt-get install -y texlive \ | ||
texlive-latex-extra \ | ||
latexmk | ||
|
||
WORKDIR /home | ||
ENTRYPOINT ["make"] | ||
CMD ["html"] | ||
|
||
# -- User guide -- | ||
|
||
# To build the container image using this Dockerfile | ||
# docker image build -t ecogen/sphinx-doc . | ||
|
||
# To run the container | ||
# For HTML output | ||
# docker container run --mount type=bind,source=${PWD},target=/home ecogen/sphinx-doc | ||
# Or | ||
# docker container run --mount type=bind,source=${PWD},target=/home ecogen/sphinx-doc html | ||
# For PDF output | ||
# docker container run --mount type=bind,source=${PWD},target=/home ecogen/sphinx-doc pdf | ||
|
||
# To troubleshoot any bug it is also possible to run the container interactively | ||
# docker container run --mount type=bind,source=${PWD},target=/home -it -w /home --entrypoint /bin/bash ecogen/sphinx-doc | ||
# make html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.