Skip to content

Commit

Permalink
Fixed format statement to allow for more space for big numers
Browse files Browse the repository at this point in the history
  • Loading branch information
daminton committed Oct 23, 2023
1 parent 77e8740 commit 8ac3810
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/crater/crater_populate.f90
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ subroutine crater_populate(user,surf,crater,domain,prod,production_list,vdist,nt
! generate random crater
call crater_generate(user,crater,domain,prod,production_list,vdist,surf)
if (user%testflag) then
write(message,'("Dc=",F8.1," Dt=",F8.1)') crater%fcrat, crater%rad*2
write(message,'("Dc=",F9.1," Dt=",F9.1)') crater%fcrat, crater%rad*2
call io_updatePbar(message)
end if
if (crater%fcrat > domain%biggest_crater) then ! End the run if the crater is too big
Expand Down

0 comments on commit 8ac3810

Please sign in to comment.