Add new elements to point containers is now more general

This commit is contained in:
Jorge Gonzalez 2026-02-20 11:03:11 +01:00
commit 70f6db0883
12 changed files with 109 additions and 108 deletions

View file

@ -1137,6 +1137,20 @@ MODULE moduleInput
END IF
! If needed, add nodes and edges to boundary models
! Particle boundaries
do b = 1, nBoundariesParticle
select type(bound => boundariesParticle(b)%obj)
type is(boundaryQuasiNeutrality)
! Loop over all physical surfaces
do ps = 1, nPhysicalSurfaces
do s = 1, nSpecies
if (associated(physicalSurfaces(ps)%particles(s), bound)) then
end select
end do
END SUBROUTINE readGeometry
SUBROUTINE readProbes(config)