Skip to content

Commit

Permalink
Merge pull request #6 from clfnd/develop
Browse files Browse the repository at this point in the history
correct Rodrigues vector output format
  • Loading branch information
marcdegraef authored Jun 20, 2024
2 parents 59206df + 1010fdd commit f1c6f5c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/EMsoftOOLib/mod_so3.f90
Original file line number Diff line number Diff line change
Expand Up @@ -2342,9 +2342,9 @@ recursive subroutine writeOrientationstoFile_(self, filename, mode, list)
case('ro')
io_real(1:4) = FZtmp%rod%r_copyd()
if (io_real(4).eq.inftyd()) then
call Message%WriteValue('', io_real, 3, frm="(2(F17.9,' '),'infinity')",redirect=53)
call Message%WriteValue('', io_real, 3, frm="(3(F17.9,' '),'infinity')",redirect=53)
else
call Message%WriteValue('', io_real, 4, frm="(2(F17.9,' '),F17.9)",redirect=53)
call Message%WriteValue('', io_real, 4, frm="(3(F17.9,' '),F17.9)",redirect=53)
end if
case('om')
o = FZtmp%qu%qo()
Expand Down

0 comments on commit f1c6f5c

Please sign in to comment.