Skip to content

Commit

Permalink
fix long lines gfortran
Browse files Browse the repository at this point in the history
  • Loading branch information
Benjamin Tessore committed Nov 20, 2023
1 parent 961b1a7 commit 9dab295
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/gas/atom_transfer.f90
Original file line number Diff line number Diff line change
Expand Up @@ -1224,7 +1224,8 @@ subroutine init_dust_temperature()
!or set the atomic gas temperature to 0 in dust regions ?
if (any(icompute_atomRT>0)) then
write(*,*) "T:", real(maxval(T,icompute_atomRT>0)), real(minval(T,icompute_atomRT>0))
write(*,*) "T (rho_dust = 0):", real(maxval(T,(icompute_atomRT>0).and..not.ldust)), real(minval(T,(icompute_atomRT>0).and..not.ldust))
write(*,*) "T (rho_dust = 0):", real(maxval(T,(icompute_atomRT>0).and..not.ldust)), &
real(minval(T,(icompute_atomRT>0).and..not.ldust))
else
call warning("(init_dust_temperature) The (atomic) gas is all transparent !")
endif
Expand Down

0 comments on commit 9dab295

Please sign in to comment.