OpenFOAM: Difference between revisions
No edit summary |
No edit summary |
||
(2 intermediate revisions by one other user not shown) | |||
Line 1: | Line 1: | ||
[[Category:software-faq]] | |||
Both openFOAM repositories (org & com) are available on the LWP. Instructions on how to install packages on the LWP can be found [[install packages| here]]. Students do not have permission to install software, because the PCs in the computer rooms need to diverge as little as possible, but you can send us a request to install it on your system, by using the "support request" icon on the desktop or selecting it from the menu. | Both openFOAM repositories (org & com) are available on the LWP. Instructions on how to install packages on the LWP can be found [[install packages| here]]. Students do not have permission to install software, because the PCs in the computer rooms need to diverge as little as possible, but you can send us a request to install it on your system, by using the "support request" icon on the desktop or selecting it from the menu. | ||
Line 8: | Line 10: | ||
$ sudo apt install openfoam2112 openfoam2112-dev | $ sudo apt install openfoam2112 openfoam2112-dev | ||
''' | '''Requirements for openFOAM''': | ||
cd ~ | cd ~ | ||
mkdir foam | mkdir foam | ||
Line 18: | Line 20: | ||
'''Installing foam-extend-4.1''':<br> | '''Installing foam-extend-4.1''':<br> | ||
If you've skipped the | If you've skipped the "Requirements" part then run the following commands first: | ||
source /usr/lib/openfoam/openfoam2112/etc/bashrc | source /usr/lib/openfoam/openfoam2112/etc/bashrc | ||
fe41 | |||
cd ~/foam/ | cd ~/foam/ | ||
Line 34: | Line 37: | ||
'''Installing OlaFlow''':<br> | '''Installing OlaFlow''':<br> | ||
If you've skipped the | If you've skipped the "Requirements" part then run the following command first: | ||
source /usr/lib/openfoam/openfoam2112/etc/bashrc | source /usr/lib/openfoam/openfoam2112/etc/bashrc | ||
Line 43: | Line 46: | ||
'''Installing solids4foam''':<br> | '''Installing solids4foam''':<br> | ||
If you've skipped the | If you've skipped the "Requirements" part then run the following command first: | ||
source /usr/lib/openfoam/openfoam2112/etc/bashrc | source /usr/lib/openfoam/openfoam2112/etc/bashrc | ||
Line 50: | Line 53: | ||
cd $FOAM_RUN/.. | cd $FOAM_RUN/.. | ||
git clone https://bitbucket.org/philip_cardiff/solids4foam-release.git | git clone https://bitbucket.org/philip_cardiff/solids4foam-release.git | ||
cd solids4foam-release | |||
./Allwmake -j8 | ./Allwmake -j8 |
Latest revision as of 10:00, 28 February 2023
Both openFOAM repositories (org & com) are available on the LWP. Instructions on how to install packages on the LWP can be found here. Students do not have permission to install software, because the PCs in the computer rooms need to diverge as little as possible, but you can send us a request to install it on your system, by using the "support request" icon on the desktop or selecting it from the menu.
Since there are quite a few versions of openFOAM(com/org) and it's extensions floating around, installing a version on a system can cause conflicts for other users on that system. Thankfully it's possible to install a version or extensions into your own home directory without requiring elevated privileges. This way multiple users on the same system can use their own versions and extensions. Compilation of some of these will take some time.
The FOAM extensions described here have been verified to work for unprivileged users.
Install (or request we install if you login with a S#) the following packages on your system:
$ sudo apt install openfoam2112 openfoam2112-dev
Requirements for openFOAM:
cd ~ mkdir foam cd foam echo "source /usr/lib/openfoam/openfoam2112/etc/bashrc" >> ~/.bashrc source ~/.bashrc openfoam2112 exit
Installing foam-extend-4.1:
If you've skipped the "Requirements" part then run the following commands first:
source /usr/lib/openfoam/openfoam2112/etc/bashrc fe41
cd ~/foam/ git clone git://git.code.sf.net/p/foam-extend/foam-extend-4.1 cd foam-extend-4.1 source etc/bashrc echo "alias fe41='. ~/foam/foam-extend-4.1/etc/bashrc'" >> ~/.bashrc ./Allwmake.firstInstall -j8 # the -j<number> refers to the number of CPU cores to use for compiling the software (more = faster) # You will be asked to proceed WITHOUT compiling Paraview; Choose yes. The supplied version is much older then the one currently installed. Proceed without compiling ParaView [Y/n] y
To use the latest version of Paraview, follow the instructions here
Installing OlaFlow:
If you've skipped the "Requirements" part then run the following command first:
source /usr/lib/openfoam/openfoam2112/etc/bashrc
cd ~/foam/ git clone https://github.com/phicau/olaFlow.git cd olaFlow ./allMake -j8
Installing solids4foam:
If you've skipped the "Requirements" part then run the following command first:
source /usr/lib/openfoam/openfoam2112/etc/bashrc
cd ~/foam/ mkdir -p $FOAM_RUN cd $FOAM_RUN/.. git clone https://bitbucket.org/philip_cardiff/solids4foam-release.git cd solids4foam-release ./Allwmake -j8