Skip to content

Commit

Permalink
initialize cpl_scalar field when created
Browse files Browse the repository at this point in the history
  • Loading branch information
DeniseWorthen committed Jul 8, 2024
1 parent b32aea7 commit 8d05f39
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions config_src/drivers/nuopc_cap/mom_cap.F90
Original file line number Diff line number Diff line change
Expand Up @@ -2370,6 +2370,11 @@ subroutine SetScalarField(field, rc)
ungriddedLBound=(/1/), ungriddedUBound=(/scalar_field_count/), gridToFieldMap=(/2/), rc=rc)
if (ChkErr(rc,__LINE__,u_FILE_u)) return

! initialize fldptr to zero
call ESMF_FieldGet(field, farrayPtr=fldptr2d, rc=rc)
if (ChkErr(rc,__LINE__,u_FILE_u)) return
fldptr2d(:,:) = 0.0

end subroutine SetScalarField

end subroutine MOM_RealizeFields
Expand Down

0 comments on commit 8d05f39

Please sign in to comment.