Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/konradmalik/openfoam211-docker
This repo contains scripts to install and run OpenFoam 2.1.1 on docker.
https://github.com/konradmalik/openfoam211-docker
docker image of of211 openfoam openfoam211 ubuntu ubuntu1604
Last synced: about 8 hours ago
JSON representation
This repo contains scripts to install and run OpenFoam 2.1.1 on docker.
- Host: GitHub
- URL: https://github.com/konradmalik/openfoam211-docker
- Owner: konradmalik
- Created: 2017-12-17T19:16:55.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2021-09-26T15:58:05.000Z (about 3 years ago)
- Last Synced: 2023-10-20T21:02:48.447Z (about 1 year ago)
- Topics: docker, image, of, of211, openfoam, openfoam211, ubuntu, ubuntu1604
- Language: Shell
- Homepage: https://hub.docker.com/r/konradmalik/openfoam211/
- Size: 15.6 KB
- Stars: 1
- Watchers: 3
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: readme.MD
Awesome Lists containing this project
README
# OpenFoam 2.1.1 in docker
###### Please note that this repo reuses publicly available scripts and the following instruction created by OpenCFD. Scripts and the instruction were modified according to my needs and to run OpenFoam 2.1.1.### This instruction assumes that you have a working docker on your system.
## How-to
###### Note that you may need to mark the install and start scripts as executable.#### 1. Run the installOpenFOAM211 script.
This will download an image from my repo and setup a container.#### 2. To run OpenFoam run the "startOpenFOAM211" script.
#### 3. "Getting started" instruction from OpenFOAM website.
Use it to check if everything is working well.##### Getting Started
Create a project directory within the $HOME/OpenFOAM directory named -2.1.1 (e.g. chris-2.1.1 for user chris and OpenFOAM version 2.1.1) and create a directory named run within it, e.g. by typing:```bash
mkdir -p $FOAM_RUN
```
Copy across the backward facing step example, generate the mesh with blockMesh and run the steady flow, incompressible solver simpleFoam```bash
cd $FOAM_RUN
cp -r $FOAM_TUTORIALS/incompressible/simpleFoam/pitzDaily .
cd pitzDaily
blockMesh
simpleFoam
paraFoam
```