Ignore:
Timestamp:
Jul 11, 2016, 9:35:35 AM (9 years ago)
Author:
emillour
Message:

All GCMs:
Further adaptations to keep up with changes in LMDZ5 concerning
physics/dynamics separation (up to rev r2500 of LMDZ5)

  • arch:
  • remove ifort debug option '-check all', replace it with '-check bounds,format,output_conversion,pointers,uninit' (i.e. get it to stop complaining about copying into temporary arrays)
  • dyn3d_common:
  • comconst_mod.F90 : add ngroup
  • dyn3d:
  • gcm.F90 : minor bug fix (arguments to a call_abort())
  • leapfrog.F90 : recompute geopotential for bilan_dyn outputs
  • conf_gcm.F90 : read "ngroup" from run.def
  • groupe.F , groupeun.F : ngroup no longer a local parameter
  • dyn3d_par:
  • conf_gcm.F90 : read "ngroup" from run.def
  • groupe_p.F , groupeun_p.F : ngroup no longer a local parameter
  • misc:
  • regr1_step_av_m.F90 : removed (not used)
  • phy_common:
  • mod_phys_lmdz_mpi_transfert.F90 , mod_phys_lmdz_mpi_data.F90 : change is_north_pole and is_south_pole to is_north_pole_dyn and is_south_pole_dyn
  • mod_phys_lmdz_omp_data.F90 : introduce is_nort_pole_phy and is_south_pole_phy
  • dynphy_lonlat:
  • mod_interface_dyn_phys.F90 : use is_north_pole_dyn and is_south_pole_dyn
  • calfis_p.F : use is_north_pole_dyn and is_south_pole_dyn
  • phyvenus:
  • physiq_mod , write_hist*.h : use is_north_pole_phy and is_south_pole_phy to correctly compute mesh area at poles to send to hist*nc files.
  • phytitan:
  • physiq_mod , write_hist*.h : use is_north_pole_phy and is_south_pole_phy to correctly compute mesh area at poles to send to hist*nc files.

EM

Location:
trunk/LMDZ.VENUS/libf/phyvenus
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/LMDZ.VENUS/libf/phyvenus/physiq_mod.F

    r1549 r1572  
    6666     &                       longitude_deg,latitude_deg, ! in degrees
    6767     &                       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
    6971      USE phys_state_var_mod ! Variables sauvegardees de la physique
    7072      USE write_field_phy
     
    385387      REAL mangtot            ! moment cinetique total
    386388
     389c cell_area for outputs in hist*
     390      REAL cell_area_out(klon)
     391     
    387392c Declaration des constantes et des fonctions thermodynamiques
    388393c
  • trunk/LMDZ.VENUS/libf/phyvenus/write_histday.h

    r1543 r1572  
    1212
    1313      call histwrite_phy(nid_day,.false.,"phis",itau_w,pphis)
    14       call histwrite_phy(nid_day,.false.,"aire",itau_w,cell_area)
     14c      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
    1520      call histwrite_phy(nid_day,.false.,"tsol",itau_w,ftsol)
    1621      call histwrite_phy(nid_day,.false.,"psol",itau_w,paprs(:,1))
  • trunk/LMDZ.VENUS/libf/phyvenus/write_histins.h

    r1543 r1572  
    1212
    1313      call histwrite_phy(nid_ins,.false.,"phis",itau_w,pphis)
    14       call histwrite_phy(nid_ins,.false.,"aire",itau_w,cell_area)
     14c      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
    1520      call histwrite_phy(nid_ins,.false.,"tsol",itau_w,ftsol)
    1621      call histwrite_phy(nid_ins,.false.,"psol",itau_w,paprs(:,1))
  • trunk/LMDZ.VENUS/libf/phyvenus/write_histmth.h

    r1543 r1572  
    1212
    1313      call histwrite_phy(nid_mth,.false.,"phis",itau_w,pphis)
    14       call histwrite_phy(nid_mth,.false.,"aire",itau_w,cell_area)
     14c      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
    1520      call histwrite_phy(nid_mth,.false.,"tsol",itau_w,ftsol)
    1621      call histwrite_phy(nid_mth,.false.,"psol",itau_w,paprs(:,1))
Note: See TracChangeset for help on using the changeset viewer.