Implementation of 3D cartesian coordinates completed. Last commit before
testing.
This commit is contained in:
parent
682afaac0c
commit
7e5b78f72f
4 changed files with 223 additions and 2 deletions
|
|
@ -653,6 +653,7 @@ MODULE moduleInput
|
|||
!Read the geometry (mesh) for the case
|
||||
SUBROUTINE readGeometry(config)
|
||||
USE moduleMesh
|
||||
USE moduleMesh3DCartRead, ONLY: mesh3DCartGeneric
|
||||
USE moduleMesh2DCylRead, ONLY: mesh2DCylGeneric
|
||||
USE moduleMesh2DCartRead, ONLY: mesh2DCartGeneric
|
||||
USE moduleMesh1DCartRead, ONLY: mesh1DCartGeneric
|
||||
|
|
@ -670,6 +671,10 @@ MODULE moduleInput
|
|||
!Selects the type of geometry.
|
||||
CALL config%get('geometry.type', geometryType, found)
|
||||
SELECT CASE(geometryType)
|
||||
CASE ("3DCart")
|
||||
!Creates a 3D cylindrical mesh
|
||||
ALLOCATE(mesh3DCartGeneric:: mesh)
|
||||
|
||||
CASE ("2DCyl")
|
||||
!Creates a 2D cylindrical mesh
|
||||
ALLOCATE(mesh2DCylGeneric:: mesh)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue