diff --git a/src/modules/init/moduleInput.f90 b/src/modules/init/moduleInput.f90 index eb8bde5..93bb51f 100644 --- a/src/modules/init/moduleInput.f90 +++ b/src/modules/init/moduleInput.f90 @@ -969,17 +969,20 @@ MODULE moduleInput select case(bType) case ("dirichlet") - ! Allocate boundary edge allocate(boundaryEMDirichlet:: self) CALL initDirichlet(self, config, object) case ("dirichlettime") - ! Allocate boundary edge allocate(boundaryEMDirichletTime:: self) call initDirichletTime(self, config, object) + case ("floating") + allocate(boundaryEMFloating:: self) + + call initFloating(self, config, object) + case default call criticalError('Boundary type ' // bType // ' not supported', 'readBoundaryEM')