Input for floating boundary

This commit is contained in:
Jorge Gonzalez 2026-04-07 09:37:10 +02:00
commit 2291236efb

View file

@ -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')