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

Fix two output conversion errors #378

Merged
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
4 changes: 2 additions & 2 deletions columnphysics/icepack_fsd.F90
Original file line number Diff line number Diff line change
Expand Up @@ -228,8 +228,8 @@ subroutine icepack_init_fsd_bounds(nfsd, &
floe_rad(n) = floe_rad_h(n)
! Save character string to write to history file
write (c_nf, '(i2)') n
write (c_fsd1, '(f6.3)') floe_rad(n-1)
write (c_fsd2, '(f6.3)') floe_rad(n)
write (c_fsd1, '(f7.3)') floe_rad(n-1)
write (c_fsd2, '(f7.3)') floe_rad(n)
c_fsd_range(n)=c_fsd1//'m < fsd Cat '//c_nf//' < '//c_fsd2//'m'
enddo

Expand Down
4 changes: 2 additions & 2 deletions columnphysics/icepack_itd.F90
Original file line number Diff line number Diff line change
Expand Up @@ -1953,8 +1953,8 @@ subroutine icepack_init_itd_hist (ncat, hin_max, c_hi_range)
write (c_nc, '(i2)') n

! Write hin_max to character string
write (c_hinmax1, '(f6.3)') hin_max(n-1)
write (c_hinmax2, '(f6.3)') hin_max(n)
write (c_hinmax1, '(f7.3)') hin_max(n-1)
write (c_hinmax2, '(f7.3)') hin_max(n)

! Save character string to write to history file
c_hi_range(n)=c_hinmax1//'m < hi Cat '//c_nc//' < '//c_hinmax2//'m'
Expand Down