https://github.com/alphaparrot/ExoPlaSim
Revision 2a28a2e1c06544420fc9ea806a4c83ff758121c5 authored by Frank on 20 February 2015, 09:43:33 UTC, committed by Frank on 20 February 2015, 09:43:33 UTC
bug fix in rainmod: zrhbeta -> rhbeta

this bug should not have been a big problem in most cases, since rhbeta=0.
in the standard version. 

1 parent c22a3e6
Raw File
Tip revision: 2a28a2e1c06544420fc9ea806a4c83ff758121c5 authored by Frank on 20 February 2015, 09:43:33 UTC
Larry 20.2.15:
Tip revision: 2a28a2e
f90check.f90
program f90check
integer :: i = 258
real    :: r = 1.0
open(21,file='F90_INTEGER',form='unformatted')
write (21) i
close(21)
open(21,file='F90_REAL',form='unformatted')
write (21) r
close(21)
!call csub(i,r)
stop
end program f90check
back to top