Skip to content

Commit

Permalink
Merge pull request #3243 from GEOS-ESM/feature/bmauer/fixes-#3242
Browse files Browse the repository at this point in the history
fixes #3242
  • Loading branch information
bena-nasa authored Dec 11, 2024
2 parents 4dbc5e3 + f97ca09 commit 6ef3cfe
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changed

- Increased formatting width of time index in ExtData2G diagnostic print

### Fixed

### Removed
Expand Down
4 changes: 2 additions & 2 deletions gridcomps/ExtData2G/ExtDataGridCompNG.F90
Original file line number Diff line number Diff line change
Expand Up @@ -1360,7 +1360,7 @@ subroutine IOBundle_Add_Entry(IOBundles,item,entry_num,rc)
io_bundle = ExtDataNG_IOBundle(MAPL_ExtDataLeft, entry_num, current_file, time_index, item%trans, item%fracval, item%file_template, &
item%pfioCollection_id,item%iclient_collection_id,itemsL,on_tiles,_RC)
call IOBundles%push_back(io_bundle)
call extdata_lgr%info('%a updated L bracket with: %a at time index %i3 ',item%name, current_file, time_index)
call extdata_lgr%info('%a updated L bracket with: %a at time index %i0 ',item%name, current_file, time_index)
end if
end if
call item%modelGridFields%comp1%get_parameters('R',update=update,file=current_file,time_index=time_index)
Expand All @@ -1370,7 +1370,7 @@ subroutine IOBundle_Add_Entry(IOBundles,item,entry_num,rc)
io_bundle = ExtDataNG_IOBundle(MAPL_ExtDataRight, entry_num, current_file, time_index, item%trans, item%fracval, item%file_template, &
item%pfioCollection_id,item%iclient_collection_id,itemsR,on_tiles,_RC)
call IOBundles%push_back(io_bundle)
call extdata_lgr%info('%a updated R bracket with: %a at time index %i3 ',item%name,current_file, time_index)
call extdata_lgr%info('%a updated R bracket with: %a at time index %i0 ',item%name,current_file, time_index)
end if
end if

Expand Down

0 comments on commit 6ef3cfe

Please sign in to comment.