code_aster is an open-source software for finite element simulation in structural mechanics.
4.1K
This repository provides Docker images for running code_aster in a reproducible and portable environment. It is intended for command-line use and batch simulation workflows.
The currently available images are :
simvia/code_aster:stable – corresponding to the latest stable version of code_aster, i.e. 16.8.0simvia/code_aster:testing – corresponding to the current development version, i.e. 17.3.1The container directly exposes the run_aster command.
To launch a simulation:
(host) $ docker run --rm -it \
--mount type=bind,source=$(pwd),target=/home/user/data \
simvia/code_aster:stable
(code_aster) $ cd data
(code_aster) $ run_aster calcul.export
This assumes your current directory contains a valid .export file and the corresponding input files. All files will be accessible under /home/user inside the container.
In order to simplify the integration of code_aster in your environment you can define the following function in your .bashrc or .zshrc
function run_aster() {
docker run --rm -it \
-v "$(pwd)":/home/user/data \
-w /home/user/data \
simvia/code_aster:stable \
bash -i -c 'run_aster "$@"' bash "$@"
}
--mount.These images are maintained by the Simvia team !
Content type
Image
Digest
sha256:4629a21a1…
Size
1.5 GB
Last updated
3 months ago
docker pull simvia/code_aster:18.1.0