Skip to content

Commit

Permalink
Made erad logscale in the table
Browse files Browse the repository at this point in the history
  • Loading branch information
daminton committed Dec 12, 2016
1 parent 10db508 commit c8a6445
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/io/io_ejecta_table.f90
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ subroutine io_ejecta_table(crater,domain,ejb,ejtble,filename)
write(LUN,'(A63)') '# "r (m)" "h (m)" "v (m/s)" "ang (deg)" "erad (m)"'
do k=1,ejtble
write(LUN,'(5(ES13.5E3,1X))') exp(ejb(k)%lrad),exp(ejb(k)%thick),sqrt(ejb(k)%vesq),ejb(k)%angle/DEG2RAD, &
ejb(k)%erad
exp(ejb(k)%erad)
end do
close(LUN)

Expand Down

0 comments on commit c8a6445

Please sign in to comment.