Changeset 2408 for LMDZ5/branches/testing/libf/phylmd/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/phylmd/phyaqua_mod.F90
r2298 r2408 5 5 CONTAINS 6 6 7 SUBROUTINE iniaqua(nlon, latfi, lonfi,iflag_phys)7 SUBROUTINE iniaqua(nlon, iflag_phys) 8 8 9 9 ! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! … … 19 19 ! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 20 20 21 USE comgeomphy, ONLY: rlatd, rlond22 21 USE dimphy, ONLY: klon 22 USE geometry_mod, ONLY : latitude 23 23 USE surface_data, ONLY: type_ocean, ok_veget 24 24 USE pbl_surface_mod, ONLY: pbl_surface_init 25 25 USE fonte_neige_mod, ONLY: fonte_neige_init 26 26 USE phys_state_var_mod 27 USE control_mod, ONLY: dayref, nday, iphysiq 27 USE time_phylmdz_mod, ONLY: day_ref, ndays, pdtphys, & 28 day_ini,day_end 28 29 USE indice_sol_mod 29 30 USE nrtype, ONLY: pi 30 31 USE ioipsl 31 32 IMPLICIT NONE 32 33 33 include "dimensions.h" 34 ! #include "dimphy.h" 35 ! #include "YOMCST.h" 36 include "comconst.h" 34 include "YOMCST.h" 37 35 include "clesphys.h" 38 36 include "dimsoil.h" 39 include "temps.h"40 37 41 38 INTEGER, INTENT (IN) :: nlon, iflag_phys 42 39 ! IM ajout latfi, lonfi 43 REAL, INTENT (IN) :: lonfi(nlon), latfi(nlon)40 ! REAL, INTENT (IN) :: lonfi(nlon), latfi(nlon) 44 41 45 42 INTEGER type_profil, type_aqua … … 120 117 INTEGER l, ierr, aslun 121 118 122 REAL longitude, latitude119 ! REAL longitude, latitude 123 120 REAL paire 124 121 125 DATA latitude, longitude/48., 0./122 ! DATA latitude, longitude/48., 0./ 126 123 127 124 ! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! … … 152 149 153 150 ! IM ajout latfi, lonfi 154 rlatd = latfi155 rlond = lonfi156 rlat = rlatd*180./pi157 rlon = rlond*180./pi151 ! rlatd = latfi 152 ! rlond = lonfi 153 ! rlat = rlatd*180./pi 154 ! rlon = rlond*180./pi 158 155 159 156 ! ----------------------------------------------------------------------- … … 161 158 ! ----------------------------------------------------------------------- 162 159 163 day_ini = day ref164 day_end = day_ini + nday 165 airefi = 1.166 zcufi = 1.167 zcvfi = 1.160 day_ini = day_ref 161 day_end = day_ini + ndays 162 ! airefi = 1. 163 ! zcufi = 1. 164 ! zcvfi = 1. 168 165 !$OMP MASTER 169 166 nbapp_rad_omp = 24 … … 263 260 END DO 264 261 ! IM calcul profil sst 265 CALL profil_sst(nlon, rlatd, type_profil, phy_sst)262 CALL profil_sst(nlon, latitude, type_profil, phy_sst) 266 263 267 264 CALL writelim(klon, phy_nat, phy_alb, phy_sst, phy_bil, phy_rug, phy_ice, & … … 276 273 ! Ecriture etat initial physique 277 274 278 timestep = dtvr*float(iphysiq)279 radpas = nint( daysec/timestep/float(nbapp_rad))275 timestep = pdtphys 276 radpas = nint(rday/timestep/float(nbapp_rad)) 280 277 281 278 DO i = 1, longcles … … 492 489 USE mod_phys_lmdz_transfert_para, ONLY: gather 493 490 IMPLICIT NONE 494 ! #include "dimensions.h"495 ! #include "dimphy.h"496 491 include "netcdf.inc" 497 492
Note: See TracChangeset
for help on using the changeset viewer.