Add vertically smoothing stencil operator
Open
enhancement
- Dominant language
- Julia
- Stars
- 117
- Forks
- 19
- Avg merge
- 3d 5h
- Merged PRs (30d)
- 36
Description
Found in the atmos radiation callback, we should probably provide an interface for doing the following:
```julia
for i in 2:Spaces.nlevels(axes(ᶜq_tot))
level = Fields.field_values(Spaces.level(ᶜq_tot, i))
prev_level = Fields.field_values(Spaces.level(ᶜq_tot, i - 1))
@. level = min(level, prev_level)
end
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.