Changeset 4127 for LMDZ6/trunk/libf/phylmd
- Timestamp:
- Apr 20, 2022, 11:01:09 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ6/trunk/libf/phylmd/physiq_mod.F90
r4120 r4127 34 34 USE FLOTT_GWD_rando_m, only: FLOTT_GWD_rando 35 35 USE fonte_neige_mod, ONLY : fonte_neige_get_vars 36 USE geometry_mod, ONLY: cell_area, latitude_deg, longitude_deg 36 USE geometry_mod, ONLY: cell_area, latitude_deg, longitude_deg, longitude,latitude, & 37 boundslon,boundslat, dx, dy, ind_cell_glo 37 38 USE ioipsl, only: histbeg, histvert, histdef, histend, histsync, & 38 39 histwrite, ju2ymds, ymds2ju, getin … … 55 56 USE phystokenc_mod, ONLY: offline, phystokenc 56 57 USE phys_cal_mod, only: year_len, mth_len, days_elapsed, jh_1jan, & 57 year_cur, mth_cur,jD_cur, jH_cur, jD_ref, day_cur, hour 58 year_cur, mth_cur,jD_cur, jH_cur, jD_ref, day_cur, hour, calend 58 59 !! USE phys_local_var_mod, ONLY : a long list of variables 59 60 !! ==> see below, after "CPP Keys" section … … 70 71 USE surface_data, ONLY : type_ocean, ok_veget, landice_opt 71 72 USE time_phylmdz_mod, only: annee_ref, current_time, day_ini, day_ref, & 72 day_step_phy, itau_phy, pdtphys, raz_date, start_time, update_time 73 day_step_phy, itau_phy, pdtphys, raz_date, start_time, update_time, ndays 73 74 USE tracinca_mod, ONLY: config_inca 74 75 USE tropopause_m, ONLY: dyn_tropopause … … 2028 2029 WRITE(lunout,*) 'initial time chemini', days_elapsed, calday 2029 2030 2030 CALL chemini( & 2031 rg, & 2032 ra, & 2033 cell_area, & 2031 call init_const_lmdz( & 2032 ndays, nbsrf, is_oce,is_sic, is_ter,is_lic, calend, & 2033 config_inca) 2034 2035 CALL init_inca_geometry( & 2036 longitude, latitude, & 2037 boundslon, boundslat, & 2038 dx, dy, cell_area, ind_cell_glo) 2039 2040 2041 CALL chemini( pplay, & 2042 nbp_lon, nbp_lat, & 2034 2043 latitude_deg, & 2035 2044 longitude_deg, & … … 5083 5092 pphis, & 5084 5093 zx_rh, & 5085 aps, bps, ap, bp )5094 aps, bps, ap, bp, lafin) 5086 5095 5087 5096 CALL VTe(VTinca) … … 5345 5354 #ifdef CPP_XIOS 5346 5355 IF (is_omp_master) CALL xios_context_finalize 5356 5357 #ifdef INCA 5358 if (type_trac == 'inca' ) then 5359 IF (is_omp_master .and. grid_type==unstructured) THEN 5360 CALL finalize_inca 5361 ENDIF 5362 endif 5363 #endif 5364 5347 5365 #endif 5348 5366 WRITE(lunout,*) ' physiq fin, nombre de steps ou cvpas = 1 : ', Ncvpaseq1
Note: See TracChangeset
for help on using the changeset viewer.