Skip to content
Snippets Groups Projects
Commit fbed054c authored by Nicolas Essing's avatar Nicolas Essing
Browse files

Writing out 'degrees' instead of using degree sign for output of bfields.

The sign can apparently not be printed by every terminal or text editor.
parent 31cd4cea
No related branches found
No related tags found
No related merge requests found
......@@ -249,9 +249,9 @@ contains
write(*,'(79("#"))')
write(*,'(16X,A)') 'external non-collinear magnetic fields'
write(*,'(79("#"))')
write(*,'(2X,A4,4X,A10,6X,A8,6X,A11)') 'atom', 'theta [°]', 'phi [°]', 'bfield [Ry]'
write(*,'(2X,A4,2X,A15,2X,A13,4X,A11)') 'atom', 'theta [degrees]', 'phi [degrees]', 'bfield [Ry]'
do iatom = 1, number_of_atoms
write(*,'(2X,I4,2(2X,F12.8),2X,E15.8)') iatom, theta(iatom), phi(iatom), strength(iatom)
write(*,'(2X,I4,2X,2(3X,F12.8),2X,E15.8)') iatom, theta(iatom), phi(iatom), strength(iatom)
end do
write(*,'(79("#"))')
else if (verbosity >= 2) then
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment