Changeset 1433
- Timestamp:
- May 28, 2015, 2:50:02 PM (10 years ago)
- Location:
- trunk/LMDZ.MARS/libf
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.MARS/libf/dynlonlat_phylonlat/phymars/iniphysiq.F90
r1431 r1433 11 11 klon_mpi_begin ! start indes of columns (on local mpi grid) 12 12 13 !use comgeomphy, only : initcomgeomphy, &14 !airephy, & ! physics grid area (m2)15 !cuphy, & ! cu coeff. (u_covariant = cu * u)16 !cvphy, & ! cv coeff. (v_covariant = cv * v)17 !rlond, & ! longitudes18 !rlatd ! latitudes13 use comgeomphy, only : initcomgeomphy, & 14 airephy, & ! physics grid area (m2) 15 cuphy, & ! cu coeff. (u_covariant = cu * u) 16 cvphy, & ! cv coeff. (v_covariant = cv * v) 17 rlond, & ! longitudes 18 rlatd ! latitudes 19 19 use infotrac, only : nqtot ! number of advected tracers 20 20 use comgeomfi_h, only: ini_fillgeom … … 116 116 117 117 118 ! !$OMP PARALLEL119 ! !Now generate local lon/lat/cu/cv/area arrays120 !call initcomgeomphy121 ! 122 !!!! !$OMP PARALLEL PRIVATE(ibegin,iend)123 !!! !$OMP+ SHARED(parea,pcu,pcv,plon,plat)124 !125 !offset=klon_mpi_begin-1126 !airephy(1:klon_omp)=airefi(offset+klon_omp_begin:offset+klon_omp_end)127 !cuphy(1:klon_omp)=cufi(offset+klon_omp_begin:offset+klon_omp_end)128 !cvphy(1:klon_omp)=cvfi(offset+klon_omp_begin:offset+klon_omp_end)129 !rlond(1:klon_omp)=lonfi(offset+klon_omp_begin:offset+klon_omp_end)130 !rlatd(1:klon_omp)=latfi(offset+klon_omp_begin:offset+klon_omp_end)118 !$OMP PARALLEL 119 ! Now generate local lon/lat/cu/cv/area arrays 120 call initcomgeomphy 121 122 !!!!$OMP PARALLEL PRIVATE(ibegin,iend) 123 !!!$OMP+ SHARED(parea,pcu,pcv,plon,plat) 124 125 offset=klon_mpi_begin-1 126 airephy(1:klon_omp)=airefi(offset+klon_omp_begin:offset+klon_omp_end) 127 cuphy(1:klon_omp)=cufi(offset+klon_omp_begin:offset+klon_omp_end) 128 cvphy(1:klon_omp)=cvfi(offset+klon_omp_begin:offset+klon_omp_end) 129 rlond(1:klon_omp)=lonfi(offset+klon_omp_begin:offset+klon_omp_end) 130 rlatd(1:klon_omp)=latfi(offset+klon_omp_begin:offset+klon_omp_end) 131 131 132 132 ! copy some fundamental parameters to physics … … 134 134 call phys_state_var_init(klon_omp,nlayer,nqtot, & 135 135 punjours,ptimestep,prad,pg,pr,pcpp) 136 !call ini_fillgeom(klon_omp,rlatd,rlond,airephy)136 call ini_fillgeom(klon_omp,rlatd,rlond,airephy) 137 137 call conf_phys(klon_omp,nlayer,nqtot) 138 138 -
trunk/LMDZ.MARS/libf/dynlonlat_phylonlat/phymars/newstart.F
r1431 r1433 29 29 use phyredem, only: physdem0, physdem1 30 30 use iostart, only: open_startphy 31 !use comgeomphy, only: initcomgeomphy31 use comgeomphy, only: initcomgeomphy 32 32 ! use planete_h 33 33 use dimradmars_mod, only: tauscaling … … 182 182 ! initialize "serial/parallel" related stuff 183 183 CALL init_phys_lmdz(iim,jjp1,llm,1,(/(jjm-1)*iim+2/)) 184 !call initcomgeomphy184 call initcomgeomphy 185 185 186 186 ! Load tracer number and names: -
trunk/LMDZ.MARS/libf/dynlonlat_phylonlat/phymars/start2archive.F
r1431 r1433 23 23 use surfdat_h, only: ini_surfdat_h, qsurf 24 24 use comsoil_h, only: ini_comsoil_h 25 !use comgeomphy, only: initcomgeomphy25 use comgeomphy, only: initcomgeomphy 26 26 use filtreg_mod, only: inifilr 27 27 use control_mod, only: planet_type … … 118 118 ! initialize "serial/parallel" related stuff 119 119 CALL init_phys_lmdz(iim,jjp1,llm,1,(/(jjm-1)*iim+2/)) 120 !call initcomgeomphy120 call initcomgeomphy 121 121 planet_type='mars' 122 122 -
trunk/LMDZ.MARS/libf/phymars/dyn1d/testphys1d.F
r1431 r1433 13 13 use control_mod, only: day_step 14 14 use phyredem, only: physdem0,physdem1 15 !use comgeomphy, only: initcomgeomphy15 use comgeomphy, only: initcomgeomphy 16 16 use planete_h, only: year_day, periheli, aphelie, peri_day, 17 17 & obliquit, emin_turb, lmixmin … … 117 117 ! CALL init_phys_lmdz(iim,jjp1,llm,1,(/(jjm-1)*iim+2/)) 118 118 CALL init_phys_lmdz(iim,jjm+1,llm,1,(/(jjm-1)*iim+2/)) 119 !call initcomgeomphy119 call initcomgeomphy 120 120 121 121 c ------------------------------------------------------
Note: See TracChangeset
for help on using the changeset viewer.