Changeset 1572 for trunk/LMDZ.VENUS/libf/phyvenus
- Timestamp:
- Jul 11, 2016, 9:35:35 AM (9 years ago)
- Location:
- trunk/LMDZ.VENUS/libf/phyvenus
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.VENUS/libf/phyvenus/physiq_mod.F
r1549 r1572 66 66 & longitude_deg,latitude_deg, ! in degrees 67 67 & cell_area,dx,dy 68 USE mod_phys_lmdz_para, only : is_parallel,jj_nb 68 USE mod_phys_lmdz_para, only : is_parallel,jj_nb, 69 & is_north_pole_phy, 70 & is_south_pole_phy 69 71 USE phys_state_var_mod ! Variables sauvegardees de la physique 70 72 USE write_field_phy … … 385 387 REAL mangtot ! moment cinetique total 386 388 389 c cell_area for outputs in hist* 390 REAL cell_area_out(klon) 391 387 392 c Declaration des constantes et des fonctions thermodynamiques 388 393 c -
trunk/LMDZ.VENUS/libf/phyvenus/write_histday.h
r1543 r1572 12 12 13 13 call histwrite_phy(nid_day,.false.,"phis",itau_w,pphis) 14 call histwrite_phy(nid_day,.false.,"aire",itau_w,cell_area) 14 c call histwrite_phy(nid_day,.false.,"aire",itau_w,cell_area) 15 cell_area_out(:)=cell_area(:) 16 if (is_north_pole_phy) cell_area_out(1)=cell_area(1)/nbp_lon 17 if (is_south_pole_phy) cell_area_out(klon)=cell_area(klon)/nbp_lon 18 call histwrite_phy(nid_day,.false.,"aire",itau_w,cell_area_out) 19 15 20 call histwrite_phy(nid_day,.false.,"tsol",itau_w,ftsol) 16 21 call histwrite_phy(nid_day,.false.,"psol",itau_w,paprs(:,1)) -
trunk/LMDZ.VENUS/libf/phyvenus/write_histins.h
r1543 r1572 12 12 13 13 call histwrite_phy(nid_ins,.false.,"phis",itau_w,pphis) 14 call histwrite_phy(nid_ins,.false.,"aire",itau_w,cell_area) 14 c call histwrite_phy(nid_ins,.false.,"aire",itau_w,cell_area) 15 cell_area_out(:)=cell_area(:) 16 if (is_north_pole_phy) cell_area_out(1)=cell_area(1)/nbp_lon 17 if (is_south_pole_phy) cell_area_out(klon)=cell_area(klon)/nbp_lon 18 call histwrite_phy(nid_ins,.false.,"aire",itau_w,cell_area_out) 19 15 20 call histwrite_phy(nid_ins,.false.,"tsol",itau_w,ftsol) 16 21 call histwrite_phy(nid_ins,.false.,"psol",itau_w,paprs(:,1)) -
trunk/LMDZ.VENUS/libf/phyvenus/write_histmth.h
r1543 r1572 12 12 13 13 call histwrite_phy(nid_mth,.false.,"phis",itau_w,pphis) 14 call histwrite_phy(nid_mth,.false.,"aire",itau_w,cell_area) 14 c call histwrite_phy(nid_mth,.false.,"aire",itau_w,cell_area) 15 cell_area_out(:)=cell_area(:) 16 if (is_north_pole_phy) cell_area_out(1)=cell_area(1)/nbp_lon 17 if (is_south_pole_phy) cell_area_out(klon)=cell_area(klon)/nbp_lon 18 call histwrite_phy(nid_mth,.false.,"aire",itau_w,cell_area_out) 19 15 20 call histwrite_phy(nid_mth,.false.,"tsol",itau_w,ftsol) 16 21 call histwrite_phy(nid_mth,.false.,"psol",itau_w,paprs(:,1))
Note: See TracChangeset
for help on using the changeset viewer.