The gray longwave component in climt had a tendency which did not define its dims. Since this property is available in the input_properties of the component, one would imagine that this is ok. However,
since the code for output_properties in TendencyStepper does not pass the input properties to combine_component_properties, we get an InvalidPropertyDictError.
This is in the line
|
output_properties = combine_component_properties( |
This occurs when I try to create a timestepper with gray gas radiation alone.
I have fixed the issue by adding a dims property to the component. However, I wanted to check if this is expected behaviour.
The gray longwave component in climt had a tendency which did not define its dims. Since this property is available in the input_properties of the component, one would imagine that this is ok. However,
since the code for output_properties in TendencyStepper does not pass the input properties to
combine_component_properties, we get an InvalidPropertyDictError.This is in the line
sympl/sympl/_core/tendencystepper.py
Line 84 in 3277b7b
This occurs when I try to create a timestepper with gray gas radiation alone.
I have fixed the issue by adding a dims property to the component. However, I wanted to check if this is expected behaviour.