Changeset 1204 for trunk/LMDZ.GENERIC/libf/phystd
- Timestamp:
- Mar 7, 2014, 4:53:30 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.GENERIC/libf/phystd/rings.F90
r1200 r1204 18 18 REAL :: rpol ! polar radius of the planet 19 19 REAL :: e ! shape excentricity of the planet : (1-e*e) = (1-f)*(1-f) 20 INTEGER, PARAMETER :: nb_a =4 ! number of subdivisions of the A ring21 INTEGER, PARAMETER :: nb_b =3 ! number of subdivisions of the B ring22 INTEGER, PARAMETER :: nb_c =3 ! number of subdivisions of the C ring20 INTEGER, PARAMETER :: nb_a = 4 ! number of subdivisions of the A ring 21 INTEGER, PARAMETER :: nb_b = 3 ! number of subdivisions of the B ring 22 INTEGER, PARAMETER :: nb_c = 3 ! number of subdivisions of the C ring 23 23 INTEGER, PARAMETER :: nb_ca = 2 ! number of subdivisions in the Cassini division 24 24 INTEGER :: i … … 109 109 110 110 tau_B(1) = 1.29 111 tau_B(2) = 5.13 112 tau_B(3) = 2.84 111 tau_B(2) = 5.13 112 tau_B(3) = 2.84 113 113 114 114 tau_C(1) = 0.06 … … 176 176 enddo 177 177 178 do i=1, nb_ca 179 where(r(:) .ge. Ca_Rint(i) .and. r(:) .le. Ca_Rext(i) .and. eclipse(:) .ne. 1000.) 180 eclipse(:) = 1. - exp(-tau_Ca(i)/abs(sin(declin))) 181 end where 182 enddo 183 178 184 ! At the other places and the excluded ones, eclipse is 0. 179 185 where(eclipse(:) .eq. 2000. .or. eclipse(:) .eq. 1000.)
Note: See TracChangeset
for help on using the changeset viewer.