Ignore:
Timestamp:
Dec 20, 2013, 4:04:56 PM (11 years ago)
Author:
emillour
Message:

Mars GCM:
Series of changes to enable running in parallel (using LMDZ.COMMON dynamics);
Current LMDZ.MARS can still notheless be compiled and run in serial mode
"as previously".
Summary of main changes:

  • Main programs (newstart, start2archive, xvik) that used to be in dyn3d have been moved to phymars.
  • dyn3d/control.h is now module control_mod.F90
  • rearanged input/outputs routines everywhere to handle serial/MPI cases. physdem.F => phyredem.F90 , phyetat0.F => phyetat0.F90 ; all read/write routines for startfi files are gathered in module iostart.F90
  • added parallelism related routines init_phys_lmdz.F90, comgeomphy.F90, dimphy.F90, iniphysiq.F90, mod_grid_phy_lmdz.F90, mod_phys_lmdz_mpi_data.F90, mod_phys_lmdz_mpi_transfert.F90, mod_phys_lmdz_omp_data.F90, mod_phys_lmdz_omp_transfert.F90, mod_phys_lmdz_para.F90, mod_phys_lmdz_transfert_para.F90 in phymars and mod_const_mpi.F90 in dyn3d (for compliance with parallel case)
  • created generic routines 'planetwide_maxval' and 'planetwide_minval', in module "planetwide_mod", that enable obtaining the min and max of a field over the whole planet.

EM

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/LMDZ.MARS/libf/dyn3d/lect_start_archive.F

    r1047 r1130  
    1717c
    1818c=======================================================================
    19       use infotrac, only: tnom
     19      use infotrac, only: tname
    2020      use comsoil_h, only: nsoilmx, layer, mlayer, volcapa, inertiedat
    2121      implicit none
     
    3232#include "comvert.h"
    3333#include "comgeom2.h"
    34 #include "control.h"
     34!#include "control.h"
    3535#include "logic.h"
    3636#include "description.h"
    3737#include "ener.h"
    3838#include "temps.h"
    39 #include "lmdstd.h"
     39!#include "lmdstd.h"
    4040#include "netcdf.inc"
    4141!#include "tracer.h"
     
    760760          write(txt,'(a5,i2.2)')'qsurf',iq
    761761        ELSE
    762           txt=trim(tnom(iq))//"_surf"
     762          txt=trim(tname(iq))//"_surf"
    763763          if (txt.eq."h2o_vap") then
    764764            ! There is no surface tracer for h2o_vap;
     
    948948          write(txt,'(a1,i2.2)')'q',iq
    949949        ELSE
    950           txt=tnom(iq)
     950          txt=tname(iq)
    951951        ENDIF
    952952        write(*,*)"lect_start_archive: loading tracer ",trim(txt)
Note: See TracChangeset for help on using the changeset viewer.