Changeset 3688


Ignore:
Timestamp:
Mar 17, 2025, 3:18:04 PM (5 months ago)
Author:
afalco
Message:

Pluto: xios: added missing fields.
added explanation of newstart folder in deftank.
AF

Location:
trunk/LMDZ.PLUTO
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LMDZ.PLUTO/deftank/README.md

    r3550 r3688  
    1111In the 3D/ folder, TBD
    1212
     13- newstart:
     14    Examples of def files for newstart
     15    - newstart_to_hybrid.sh:
     16        uses run.def_ini and run.def_new to change start files to hybrid coordinates
  • trunk/LMDZ.PLUTO/deftank/xios/context_pcm_physics.xml

    r3508 r3688  
    117117            <scalar scalar_ref="scalar" />
    118118        </grid>
     119        <grid id="altitude_grid" >
     120            <axis axis_ref="altitude" />
     121        </grid>
    119122        <!-- output grids -->
    120123        <grid id="grid_3D_out">
  • trunk/LMDZ.PLUTO/libf/phypluto/physiq_mod.F90

    r3685 r3688  
    21292129      call write_output("ps","Surface pressure","Pa",ps)
    21302130      call write_output("emis","Emissivity","",emis)
    2131       !if (grid_type == regular_lonlat) then
    2132       !     call write_output("area","Mesh area","m2", &
    2133       !                      cell_area_for_lonlat_outputs)
    2134       !   else ! unstructured grid (e.g. dynamico)
    2135       !     call write_output("area","Mesh area","m2",cell_area)
    2136       !endif
     2131      if (grid_type == regular_lonlat) then
     2132          call write_output("area","Mesh area","m2", &
     2133                           cell_area_for_lonlat_outputs)
     2134        else ! unstructured grid (e.g. dynamico)
     2135          call write_output("area","Mesh area","m2",cell_area)
     2136      endif
    21372137
    21382138      if (fast) then
Note: See TracChangeset for help on using the changeset viewer.