-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
PMFv1912 : Multi-species transport and timestep managing
- Loading branch information
Showing
455 changed files
with
12,129 additions
and
2,893 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 |
---|---|---|
|
@@ -2,6 +2,7 @@ | |
*.dep | ||
*~ | ||
*.pyc | ||
\#* | ||
linux64GccDPOpt/ | ||
linux64GccDPInt32Opt/ | ||
lnInclude/ |
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,12 @@ | ||
# Developers | ||
Pierre Horgue (phorgue@imft.fr) | ||
Jacques Franc | ||
Gabriel Gerlero | ||
|
||
# Bug track/fix and beta tester | ||
avlmachado (github) | ||
Mohammed Elwardi Fadeli | ||
Romain Guibert | ||
Lachlan Mason | ||
François Renard | ||
Cyprien Soulaine |
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,64 +1,72 @@ | ||
************************************************************************** | ||
************* PorousMultiphaseFoam (PMF) for OpenFOAM ******************** | ||
************************************************************************** | ||
|
||
* General Informations | ||
|
||
- The current branches (last version of the toolbox) | ||
|
||
- branch "openfoam-v1812" > PMFv1906 | ||
- branch "openfoam-v6" > PMFv1906 | ||
|
||
- Old branches not updated | ||
|
||
- branch "openfoam-v5" > PMFv1809 | ||
- branch "foam-extend-4.0" > PMFv1809 | ||
- branch "openfoam-v1806" > PMFv1809 | ||
- branch "openfoam-v1712" > PMFv1805 | ||
|
||
- Older version (no branches) | ||
|
||
- OpenFOAM 4.0 PMFv1.4.1 | ||
- OpenFOAM 3.0 PMFv1.2 | ||
|
||
- version no supported: | ||
- OpenFOAM 2.4 and older | ||
- foam-extend 3.2 and older | ||
- OpenFOAM v1706 and older | ||
|
||
- This toolbox needs only a standard OpenFOAM installation (see www.openfoam.org | ||
or openfoam.com) | ||
|
||
- Please cite the related paper in the "doc" folder if you are using this toolbox. | ||
|
||
- Read the COPYING_OPENFOAM file for information about OpenFOAM and this toolbox Copyrights. | ||
|
||
* Installation instructions : | ||
|
||
- First, source the OpenFOAM configuration file, i.e. (example for ubuntu version) : | ||
source /opt/openfoamv6/etc/bashrc | ||
|
||
- then in the "porousMultiphaseFoam" directory, run : | ||
|
||
./Allwmake | ||
|
||
to install the package. | ||
|
||
- Dynamic libraries, "libporousBoundaryConditions.so" and "libporousModels.so" | ||
are compiled in the standard OpenFOAM user directory : $FOAM_USER_LIBBIN; | ||
|
||
- The executable solver "impesFoam" is placed in the standard OpenFOAM user | ||
directory $FOAM_USER_APPBIN. | ||
|
||
- Each tutorial directory contains "run" and "clean" files to test installation | ||
and validate the solver. | ||
|
||
- A python script runTutorials.py can be used to test all components. | ||
|
||
- To remove compilation and temporary files, run : | ||
|
||
./Allwclean | ||
|
||
- see the ReleaseNotes.txt file for detailed information about the toolbox. | ||
|
||
************************************************************************** | ||
************************************************************************** | ||
************* PorousMultiphaseFoam (PMF) for OpenFOAM ******************** | ||
************************************************************************** | ||
|
||
* General Informations | ||
|
||
- The current branches (last version of the toolbox) | ||
|
||
- branch "openfoam-v1906" > PMFv1912 | ||
- branch "openfoam-v7" > PMFv1912 | ||
|
||
- Old branches not updated | ||
|
||
- branch "openfoam-v1812" > PMFv1906 | ||
- branch "openfoam-v6" > PMFv1906 | ||
- branch "openfoam-v5" > PMFv1809 | ||
- branch "foam-extend-4.0" > PMFv1809 | ||
- branch "openfoam-v1806" > PMFv1809 | ||
- branch "openfoam-v1712" > PMFv1805 | ||
|
||
- Older version (no branches) | ||
|
||
- OpenFOAM 4.0 PMFv1.4.1 | ||
- OpenFOAM 3.0 PMFv1.2 | ||
|
||
- version not supported: | ||
|
||
- OpenFOAM 2.4 and older | ||
- foam-extend 3.2 and older | ||
- OpenFOAM v1706 and older | ||
|
||
- This toolbox needs only a standard OpenFOAM installation | ||
(see www.openfoam.org or openfoam.com) | ||
|
||
- Please cite the related paper in the "doc" folder if you are using this | ||
toolbox. | ||
|
||
- Read the COPYING_OPENFOAM file for information about OpenFOAM and this | ||
toolbox Copyrights. | ||
|
||
* Installation instructions : | ||
|
||
- First, source the OpenFOAM configuration file, i.e. (example for ubuntu | ||
version) : | ||
|
||
source /opt/openfoamv6/etc/bashrc | ||
|
||
- then in the "porousMultiphaseFoam" directory, run : | ||
|
||
./Allwmake | ||
|
||
to install the package. | ||
|
||
- Dynamic libraries are compiled in the standard OpenFOAM user directory : | ||
|
||
$FOAM_USER_LIBBIN | ||
|
||
- The executable solver "impesFoam" is placed in the standard OpenFOAM user | ||
directory $FOAM_USER_APPBIN. | ||
|
||
- Each tutorial directory contains "run" and "clean" files to test installation | ||
and validate the solver. | ||
|
||
- A python script runTutorials.py can be used to test all components. | ||
|
||
- To remove compilation and temporary files, run : | ||
|
||
./Allwclean | ||
|
||
- see the ReleaseNotes.txt file for detailed information about the toolbox. | ||
|
||
******************************************************************************** |
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.