Changeset 1572 for trunk/LMDZ.TITAN/libf/phytitan
- Timestamp:
- Jul 11, 2016, 9:35:35 AM (8 years ago)
- Location:
- trunk/LMDZ.TITAN/libf/phytitan
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.TITAN/libf/phytitan/physiq_mod.F
r1549 r1572 67 67 & cell_area, dx, dy 68 68 use cpdet_mod, only: cpdet, t2tpot 69 USE mod_phys_lmdz_para, only : is_parallel,jj_nb 69 USE mod_phys_lmdz_para, only : is_parallel,jj_nb, 70 & is_north_pole_phy, 71 & is_south_pole_phy 70 72 USE phys_state_var_mod ! Variables sauvegardees de la physique 71 73 USE iophy … … 372 374 c reservoir de surface 373 375 REAL,save,allocatable :: reservoir(:) 376 377 c cell_area for outputs in hist* 378 REAL cell_area_out(klon) 374 379 375 380 c Declaration des constantes et des fonctions thermodynamiques -
trunk/LMDZ.TITAN/libf/phytitan/write_histday.h
r1543 r1572 14 14 15 15 call histwrite_phy(nid_day,.false.,"phis",itau_w,pphis) 16 call histwrite_phy(nid_day,.false.,"aire",itau_w,cell_area) 16 c call histwrite_phy(nid_day,.false.,"aire",itau_w,cell_area) 17 cell_area_out(:)=cell_area(:) 18 if (is_north_pole_phy) cell_area_out(1)=cell_area(1)/nbp_lon 19 if (is_south_pole_phy) cell_area_out(klon)=cell_area(klon)/nbp_lon 20 call histwrite_phy(nid_day,.false.,"aire",itau_w,cell_area_out) 17 21 18 22 ccccccc axe Ls ... Faudrait le reduire a axe temporel seulement... -
trunk/LMDZ.TITAN/libf/phytitan/write_histins.h
r1543 r1572 14 14 15 15 call histwrite_phy(nid_ins,.false.,"phis",itau_w,pphis) 16 call histwrite_phy(nid_ins,.false.,"aire",itau_w,cell_area) 16 c call histwrite_phy(nid_ins,.false.,"aire",itau_w,cell_area) 17 cell_area_out(:)=cell_area(:) 18 if (is_north_pole_phy) cell_area_out(1)=cell_area(1)/nbp_lon 19 if (is_south_pole_phy) cell_area_out(klon)=cell_area(klon)/nbp_lon 20 call histwrite_phy(nid_ins,.false.,"aire",itau_w,cell_area_out) 17 21 18 22 ccccccc axe Ls ... Faudrait le reduire a axe temporel seulement... -
trunk/LMDZ.TITAN/libf/phytitan/write_histmth.h
r1543 r1572 11 11 12 12 call histwrite_phy(nid_mth,.false.,"phis",itau_w,pphis) 13 call histwrite_phy(nid_mth,.false.,"aire",itau_w,cell_area) 13 c call histwrite_phy(nid_mth,.false.,"aire",itau_w,cell_area) 14 cell_area_out(:)=cell_area(:) 15 if (is_north_pole_phy) cell_area_out(1)=cell_area(1)/nbp_lon 16 if (is_south_pole_phy) cell_area_out(klon)=cell_area(klon)/nbp_lon 17 call histwrite_phy(nid_mth,.false.,"aire",itau_w,cell_area_out) 14 18 15 19 ccccccc axe Ls ... Faudrait le reduire a axe temporel seulement...
Note: See TracChangeset
for help on using the changeset viewer.