Changeset 1573 for trunk/LMDZ.COMMON/libf/dynphy_lonlat
- Timestamp:
- Jul 12, 2016, 3:17:48 PM (8 years ago)
- Location:
- trunk/LMDZ.COMMON/libf/dynphy_lonlat
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.COMMON/libf/dynphy_lonlat/inigeomphy_mod.F90
r1564 r1573 6 6 nbp, communicator, & 7 7 rlatu,rlatv,rlonu,rlonv,aire,cu,cv) 8 USE dimphy, ONLY: init_dimphy9 8 USE mod_grid_phy_lmdz, ONLY: klon_glo, & ! number of atmospheric columns (on full grid) 10 9 regular_lonlat, & ! regular longitude-latitude grid type … … 15 14 klon_mpi_begin ! start indes of columns (on local mpi grid) 16 15 USE geometry_mod, ONLY : init_geometry 17 ! USE comgeomphy, ONLY: initcomgeomphy, &18 ! airephy, & ! physics grid area (m2)19 ! cuphy, & ! cu coeff. (u_covariant = cu * u)20 ! cvphy, & ! cv coeff. (v_covariant = cv * v)21 ! rlond, & ! longitudes22 ! rlatd ! latitudes23 16 USE physics_distribution_mod, ONLY : init_physics_distribution 24 17 USE regular_lonlat_mod, ONLY : init_regular_lonlat, & … … 220 213 airefi,cufi,cvfi) 221 214 222 223 ! Initialize dimphy module224 CALL init_dimphy(klon_omp,nlayer)225 226 215 !$OMP END PARALLEL 227 216 -
trunk/LMDZ.COMMON/libf/dynphy_lonlat/phytitan/iniphysiq_mod.F90
r1564 r1573 17 17 USE inigeomphy_mod, ONLY: inigeomphy 18 18 USE control_mod, ONLY: nday 19 USE dimphy, ONLY: init_dimphy 20 USE mod_phys_lmdz_para, ONLY: klon_omp ! number of columns (on local omp grid) 19 21 IMPLICIT NONE 20 22 … … 54 56 !------------------------------------------ 55 57 ! --> initialize physics distribution, global fields and geometry 58 ! (i.e. things in phy_common or dynphy_lonlat) 56 59 CALL inigeomphy(ii,jj,nlayer, & 57 60 nbp, communicator, & … … 60 63 airedyn,cudyn,cvdyn) 61 64 62 ! the distinct part for all planetary physics 65 ! the distinct part for all planetary physics (ie. things in phytitan) 63 66 !------------------------------------------ 64 67 65 68 !$OMP PARALLEL 69 70 ! Initialize dimphy module 71 call init_dimphy(klon_omp,nlayer) 66 72 67 73 ! Initialize some physical constants -
trunk/LMDZ.COMMON/libf/dynphy_lonlat/phyvenus/iniphysiq_mod.F90
r1564 r1573 16 16 USE time_phylmdz_mod, ONLY: init_time 17 17 USE inigeomphy_mod, ONLY: inigeomphy 18 USE dimphy, ONLY: init_dimphy 19 USE mod_phys_lmdz_para, ONLY: klon_omp ! number of columns (on local omp grid) 18 20 IMPLICIT NONE 19 21 … … 53 55 !------------------------------------------ 54 56 ! --> initialize physics distribution, global fields and geometry 57 ! (i.e. things in phy_common or dynphy_lonlat) 55 58 CALL inigeomphy(ii,jj,nlayer, & 56 59 nbp, communicator, & … … 59 62 airedyn,cudyn,cvdyn) 60 63 61 ! the distinct part for all planetary physics 64 ! the distinct part for all planetary physics (ie. things in phyvenus) 62 65 !------------------------------------------ 63 66 64 67 !$OMP PARALLEL 68 69 ! Initialize dimphy module 70 call init_dimphy(klon_omp,nlayer) 65 71 66 72 ! Initialize some physical constants
Note: See TracChangeset
for help on using the changeset viewer.