Implementation of 0D dummy pusher and modifications to input parameters

to allow 0D runs.
This commit is contained in:
Jorge Gonzalez 2021-04-13 17:40:33 +02:00
commit f1d74d954c
4 changed files with 29 additions and 1 deletions

View file

@ -714,6 +714,7 @@ MODULE moduleInput
SUBROUTINE readGeometry(config)
USE moduleMesh
USE moduleMeshInputGmsh2, ONLY: initGmsh2
USE moduleMeshInput0D, ONLY: init0D
USE moduleMesh3DCart, ONLY: connectMesh3DCart
USE moduleMesh2DCyl, ONLY: connectMesh2DCyl
USE moduleMesh2DCart, ONLY: connectMesh2DCart
@ -744,6 +745,9 @@ MODULE moduleInput
CALL initGmsh2(mesh)
IF (doubleMesh) CALL initGmsh2(meshColl)
CASE ("0D")
CALL init0D(mesh)
CASE DEFAULT
CALL criticalError("Mesh format " // meshFormat // " not recogniced", "readGeometry")