Rename of procedures in boundaries

This commit is contained in:
Jorge Gonzalez 2026-03-14 20:28:03 +01:00
commit 818f9fe37b
3 changed files with 61 additions and 55 deletions

View file

@ -864,7 +864,7 @@ MODULE moduleInput
CALL config%get(object // '.specificHeat', cw, found)
IF (.NOT. found) CALL criticalError("specificHeat not found for wallTemperature boundary type", 'readBoundary')
CALL initWallTemperature(bound, Tw, cw)
CALL wallTemperature_init(bound, Tw, cw)
CASE('ionization')
!Neutral parameters
@ -882,10 +882,10 @@ MODULE moduleInput
CALL config%get(object // '.electronSecondary', electronSecondary, found)
IF (found) THEN
electronSecondaryID = speciesName2Index(electronSecondary)
CALL initIonization(bound, me/m_ref, m0, n0, v0, T0, &
CALL ionization_init(bound, me/m_ref, m0, n0, v0, T0, &
speciesID, effTime, crossSection, eThreshold, electronSecondaryID)
ELSE
CALL initIonization(bound, me/m_ref, m0, n0, v0, T0, &
CALL ionization_init(bound, me/m_ref, m0, n0, v0, T0, &
speciesID, effTime, crossSection, eThreshold)
END IF