Implementation of 0D dummy pusher and modifications to input parameters
to allow 0D runs.
This commit is contained in:
parent
d2b36632c9
commit
f1d74d954c
4 changed files with 29 additions and 1 deletions
|
|
@ -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")
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue