Correct input

This commit is contained in:
Jorge Gonzalez 2026-03-14 20:03:17 +01:00
commit c325e12553
3 changed files with 11 additions and 5 deletions

View file

@ -901,7 +901,12 @@ MODULE moduleInput
call quasiNeutrality_init(bound, s_incident)
CASE('outflowAdaptive')
call outflowAdaptive_init(bound)
call config%get(object // '.incident', speciesName, found)
if (.not. found) call criticalError("Incident species name not found for quasiNeutrality boundary model", 'readBoundary')
s_incident = speciesName2Index(speciesName)
call outflowAdaptive_init(bound, s_incident)
CASE DEFAULT
CALL criticalError('Boundary type ' // bType // ' undefined', 'readBoundary')