CLUBB's `sat_mixrat_ice_k` (saturation.F90) declares
`real( kind = core_rknd ), dimension(7), parameter :: a = 100._core_rknd * (/ 6.09868993_core_rknd, 0.499320233_core_rknd, ... /)`.
The translation emits a `NotImplementedError` for the whole subprogram: `local parameter a (literal '6.09868993_core_rknd' was never hoisted, so it has no name to emit)` (`recast.transform.numpy.names`). A bare constructor is handled (`_array_elements`); a constant expression over one is not, and its literals never reach the hoisting pass.
Found 2026-09-03 on the recast-clubb tier-1 units.
CLUBB's `sat_mixrat_ice_k` (saturation.F90) declares
`real( kind = core_rknd ), dimension(7), parameter :: a = 100._core_rknd * (/ 6.09868993_core_rknd, 0.499320233_core_rknd, ... /)`.
The translation emits a `NotImplementedError` for the whole subprogram: `local parameter a (literal '6.09868993_core_rknd' was never hoisted, so it has no name to emit)` (`recast.transform.numpy.names`). A bare constructor is handled (`_array_elements`); a constant expression over one is not, and its literals never reach the hoisting pass.
Found 2026-09-03 on the recast-clubb tier-1 units.