mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-12-28 03:37:59 +00:00
Adds overset discretisation to selected physics: - diffusion : overLaplacianDyMFoam - incompressible steady : overSimpleFoam - incompressible transient : overPimpleDyMFoam - compressible transient: overRhoPimpleDyMFoam - two-phase VOF: overInterDyMFoam The overset method chosen is a parallel, fully implicit implementation whereby the interpolation (from donor to acceptor) is inserted as an adapted discretisation on the donor cells, such that the resulting matrix can be solved using the standard linear solvers. Above solvers come with a set of tutorials, showing how to create and set-up simple simulations from scratch.
18 lines
309 B
Bash
Executable File
18 lines
309 B
Bash
Executable File
#!/bin/sh
|
|
. $WM_PROJECT_DIR/bin/tools/RunFunctions
|
|
|
|
runApplication blockMesh
|
|
|
|
# Select cellSets
|
|
runApplication -s 1 topoSet
|
|
|
|
runApplication subsetMesh box -patch hole -overwrite
|
|
|
|
# Select cellSets
|
|
runApplication -s 2 topoSet
|
|
|
|
rm -rf 0 && cp -r 0.org 0
|
|
|
|
# Use cellSets to write zoneID
|
|
runApplication setFields
|