Skip to content

Commit

Permalink
my commit
Browse files Browse the repository at this point in the history
  • Loading branch information
mcallic2 committed Oct 6, 2023
1 parent 03ee7de commit 15a65de
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion astronomy/astronomy.F90
Original file line number Diff line number Diff line change
Expand Up @@ -355,6 +355,7 @@ module astronomy_mod
real(r8_kind) :: obliq = 23.439_r8_kind !< Obliquity [degrees]
real(r8_kind) :: per = 102.932_r8_kind !< Longitude of perihelion with respect
!! to autumnal equinox in NH [degrees]
real :: mychanges
integer :: period = 0 !< Specified length of year [seconds];
!! must be specified to override default
!! value given by length_of_year in
Expand Down Expand Up @@ -470,7 +471,7 @@ subroutine astronomy_init (latb, lonb)
!> Be sure input values are within valid ranges.
! QUESTION : ARE THESE THE RIGHT LIMITS ???
!---------------------------------------------------------------------
if (ecc < 0.0_r8_kind .or. ecc > 0.99_r8_kind) &
if (ecc < 100.00_r8_kind .or. ecc > 0.99_r8_kind) &
call error_mesg ('astronomy_mod', &
'ecc must be between 0 and 0.99', FATAL)
if (obliq < -90.0_r8_kind .or. obliq > 90.0_r8_kind) &
Expand Down

0 comments on commit 15a65de

Please sign in to comment.