Changeset 3078 for trunk/LMDZ.MARS/libf/phymars/physiq_mod.F
- Timestamp:
- Oct 10, 2023, 11:41:27 AM (17 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.MARS/libf/phymars/physiq_mod.F
r3042 r3078 50 50 & mlayer,layer ! soil mid layer depths 51 51 use geometry_mod, only: longitude, latitude, cell_area, 52 & longitude_deg52 & cell_area_for_lonlat_outputs,longitude_deg 53 53 use comgeomfi_h, only: sinlon, coslon, sinlat, coslat 54 54 use surfdat_h, only: phisfi, albedodat, zmea, zstd, zsig, zgam, … … 110 110 use wxios, only: wxios_context_init, xios_context_finalize 111 111 #endif 112 USE mod_grid_phy_lmdz, ONLY: grid_type, unstructured 112 USE mod_grid_phy_lmdz, ONLY: grid_type, unstructured, 113 & regular_lonlat 113 114 use ioipsl_getin_p_mod, only: getin_p 114 115 use comslope_mod, ONLY: nslope,def_slope,def_slope_mean, … … 3172 3173 call write_output("phisfi","Surface geopotential", 3173 3174 & "m2s-2",phisfi(:)) 3175 if (grid_type == regular_lonlat) then 3176 call write_output("area","Mesh area","m2", 3177 & cell_area_for_lonlat_outputs) 3178 else ! unstructured grid (e.g. dynamico) 3179 call write_output("area","Mesh area","m2",cell_area) 3180 endif 3174 3181 call write_output("tsurf","Surface temperature","K", 3175 3182 & tsurf(:,iflat))
Note: See TracChangeset
for help on using the changeset viewer.