Skip to content

Commit

Permalink
Update Input.f90
Browse files Browse the repository at this point in the history
Correction of units in the error message which occurs when the electron temperature is smaller than the Fermi temperature in the plasma
  • Loading branch information
michaeltouati authored Mar 19, 2024
1 parent 76299f3 commit 85100ca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sources/Input.f90
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ subroutine read_init_parameters
write(*,*)'The plasma temperature T_ini must be greater than the Fermi temperature :'
if (Tmin_alert) write(*,*)'because the electrical resistivity is not yet implemented for this plasma'
if (Tmin_alert2) write(*,*)'because the electrical resistivity is not yet implemented for this tracer'
write(*,*) 'T_ini =',T_ini,'eV while T_F = ',Tfermi(Z0, ni0)/eV,' eV'
write(*,*) 'T_ini =',T_ini/eV,'eV while T_F = ',Tfermi(Z0, ni0)/eV,' eV'
stop
end if

Expand Down Expand Up @@ -394,4 +394,4 @@ function get_char(str)
return
end function get_char

end module input
end module input

0 comments on commit 85100ca

Please sign in to comment.