Changeset 2408 for LMDZ5/branches/testing/libf/phydev/phyaqua_mod.F90
- Timestamp:
- Dec 14, 2015, 11:43:09 AM (9 years ago)
- Location:
- LMDZ5/branches/testing
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ5/branches/testing
- Property svn:mergeinfo changed
/LMDZ5/trunk merged: 2293-2295,2297,2299-2302,2305-2313,2315,2317-2380,2382-2396
- Property svn:mergeinfo changed
-
LMDZ5/branches/testing/libf/phydev/phyaqua_mod.F90
r1999 r2408 8 8 CONTAINS 9 9 10 SUBROUTINE iniaqua(nlon, latfi, lonfi,iflag_phys)10 SUBROUTINE iniaqua(nlon, iflag_phys) 11 11 12 12 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! … … 15 15 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 16 16 17 USE phys_state_var_mod, ONLY: rlat, rlon,phys_state_var_init17 USE phys_state_var_mod, ONLY: phys_state_var_init 18 18 USE mod_phys_lmdz_para, ONLY: klon_omp 19 USE comgeomphy, ONLY: rlond, rlatd20 19 IMPLICIT NONE 21 20 22 21 INTEGER,INTENT(IN) :: nlon,iflag_phys 23 REAL,INTENT(IN) :: lonfi(nlon),latfi(nlon)24 25 ! local variables26 REAL :: pi27 28 ! initializations:29 pi=2.*ASIN(1.)30 22 31 23 CALL phys_state_var_init() 32 33 rlat(1:klon_omp)=rlatd(1:klon_omp)*180./pi34 rlon(1:klon_omp)=rlond(1:klon_omp)*180./pi35 24 36 25
Note: See TracChangeset
for help on using the changeset viewer.