From f60dccd7c99d31d419adcf10098b51d91f27ac72 Mon Sep 17 00:00:00 2001 From: Mohammed Karim Date: Tue, 10 Mar 2026 09:19:00 -0700 Subject: [PATCH] chnaged the atmosphere_water__liquid_equivalent_precipitation_rate_out value to match with atmosphere_water__liquid_equivalent_precipitation_rate --- src/bmi_topmodel.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bmi_topmodel.c b/src/bmi_topmodel.c index 54f3256..6e1aa22 100755 --- a/src/bmi_topmodel.c +++ b/src/bmi_topmodel.c @@ -810,8 +810,8 @@ static int Get_value_ptr(Bmi *self, const char *name, void **dest) { if (strcmp(name, "atmosphere_water__liquid_equivalent_precipitation_rate_out") == 0) { topmodel_model *topmodel; topmodel = (topmodel_model *)self->data; - *dest = (void *)&topmodel->p; - //*dest = (void*)&topmodel->rain[1]; Note: these are the same ==, either would work + //*dest = (void *)&topmodel->p;//Note: these are the same ==, either would work + *dest = (void*)&topmodel->rain[1]; return BMI_SUCCESS; // ep }