Organizing things

Move the array of pointers to the nodes to moduleMesh.
This commit is contained in:
Jorge Gonzalez 2024-07-13 12:35:42 +02:00
commit 6f185c4188
2 changed files with 7 additions and 8 deletions

View file

@ -4,14 +4,6 @@ MODULE moduleEM
USE moduleTable
IMPLICIT NONE
! Array of pointers to nodes.
!TODO: This is probably better in moduleMesh as multiple modules could use this.
TYPE:: meshNodePointer
CLASS(meshNode), POINTER:: obj
CONTAINS
END TYPE meshNodePointer
! Generic type for electromagnetic boundary conditions
TYPE, PUBLIC, ABSTRACT:: boundaryEMGeneric
INTEGER:: nNodes