Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixes #3242 #3243

Merged
merged 2 commits into from
Dec 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading