Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Clarify LEAPR card 4 documentation #109

Merged
merged 3 commits into from
Nov 19, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions src/leapr.f90
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ subroutine leapr
! card 4 - endf output control
! mat endf mat number
! za 1000*z+a for principal scatterer
! isabt sab type (0=s, 1=ss, def=0)
! isabt sab type (0=symmetric, 1=asymmetric, def=0)
! ilog log flag (0=s, 1=log10(s), def=0)
! smin minimum S(alpha, beta) stored in file (def=1e-75)
!
Expand Down Expand Up @@ -2415,7 +2415,7 @@ real(kr) function terpk(ska,nka,delta,be)
real(kr)::bt,btp

terpk=1
if (be.gt.nka*delta) return
if (be.gt.nka*delta) return
i=int(be/delta)
if (i.lt.nka-1) then
bt=i*delta
Expand Down Expand Up @@ -3584,4 +3584,3 @@ subroutine endout(ntempr,bragg,nedge,maxb,scr,mscr,isym,ilog)
end subroutine endout

end module leapm

4 changes: 2 additions & 2 deletions src/vers.f90
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module version
! These values are updated during the NJOY revision-control process.
implicit none
private
character(8),public::vers='2016.45'
character(8),public::vday='13Nov18'
character(8),public::vers='2016.46'
character(8),public::vday='19Nov18'
end module version