Skip to content

Commit f2d42cc

Browse files
committed
fixed small mistake
1 parent cff056a commit f2d42cc

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

model/atmosphere/dycore/src/icon4py/model/atmosphere/dycore/stencils/compute_cell_diagnostics_for_dycore.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,8 @@ def _compute_perturbed_quantities_and_interpolation(
117117
ddz_of_temporal_extrapolation_of_perturbed_exner_on_model_levels: fa.CellKField[ta.vpfloat],
118118
d2dz2_of_temporal_extrapolation_of_perturbed_exner_on_model_levels: fa.CellKField[ta.vpfloat],
119119
temporal_extrapolation_of_perturbed_exner: fa.CellKField[ta.vpfloat],
120+
perturbed_rho_at_cells_on_model_levels: fa.CellKField[ta.wpfloat],
121+
perturbed_theta_v_at_cells_on_model_levels: fa.CellKField[ta.wpfloat],
120122
igradp_method: gtx.int32,
121123
nflatlev: gtx.int32,
122124
surface_level: gtx.int32,
@@ -175,8 +177,8 @@ def _compute_perturbed_quantities_and_interpolation(
175177
reference_theta_at_cells_on_model_levels,
176178
),
177179
(
178-
temporal_extrapolation_of_perturbed_exner,
179-
perturbed_exner_at_cells_on_model_levels,
180+
perturbed_rho_at_cells_on_model_levels,
181+
perturbed_theta_v_at_cells_on_model_levels,
180182
),
181183
)
182184

@@ -490,6 +492,8 @@ def compute_perturbed_quantities_and_interpolation(
490492
ddz_of_temporal_extrapolation_of_perturbed_exner_on_model_levels=ddz_of_temporal_extrapolation_of_perturbed_exner_on_model_levels,
491493
d2dz2_of_temporal_extrapolation_of_perturbed_exner_on_model_levels=d2dz2_of_temporal_extrapolation_of_perturbed_exner_on_model_levels,
492494
temporal_extrapolation_of_perturbed_exner=temporal_extrapolation_of_perturbed_exner,
495+
perturbed_rho_at_cells_on_model_levels=perturbed_rho_at_cells_on_model_levels,
496+
perturbed_theta_v_at_cells_on_model_levels=perturbed_theta_v_at_cells_on_model_levels,
493497
igradp_method=igradp_method,
494498
nflatlev=nflatlev,
495499
surface_level=surface_level,

0 commit comments

Comments
 (0)