Changeset 1543 for trunk/LMDZ.GENERIC/libf/phystd
- Timestamp:
- Apr 22, 2016, 9:02:11 AM (9 years ago)
- Location:
- trunk/LMDZ.GENERIC/libf/phystd
- Files:
-
- 1 added
- 2 deleted
- 12 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.GENERIC/libf/phystd/condense_co2.F90
r1542 r1543 11 11 use aerosol_mod, only : iaero_co2 12 12 USE surfdat_h, only: emisice, emissiv 13 USE comgeomphy, only: latitude ! in radians13 USE geometry_mod, only: latitude ! in radians 14 14 USE tracer_h, only: noms, rho_co2 15 15 use comcstfi_mod, only: g, r, cpp -
trunk/LMDZ.GENERIC/libf/phystd/dyn1d/rcm1d.F
r1542 r1543 3 3 ! to use 'getin' 4 4 use ioipsl_getincom, only: getin 5 use dimphy, only : init_dimphy 6 use mod_grid_phy_lmdz, only : regular_lonlat 5 7 use infotrac, only: nqtot, tname 6 8 use surfdat_h, only: albedodat, phisfi, dryness, watercaptag, … … 9 11 & dtemisice 10 12 use comdiurn_h, only: sinlat, coslat, sinlon, coslon 11 ! use comsaison_h12 13 use comsoil_h, only: nsoilmx, layer, mlayer, inertiedat, volcapa 13 14 use phyredem, only: physdem0,physdem1 14 use comgeomphy, only: initcomgeomphy, cell_area15 use geometry_mod, only: init_geometry 15 16 use slab_ice_h, only: noceanmx 16 17 use planete_mod, only: apoastr,periastr,year_day,peri_day, … … 27 28 use regular_lonlat_mod, only: init_regular_lonlat 28 29 use planete_mod, only: ini_planete_mod 30 use physics_distribution_mod, only: init_physics_distribution 31 use regular_lonlat_mod, only: init_regular_lonlat 32 use mod_interface_dyn_phys, only: init_interface_dyn_phys 29 33 use inifis_mod, only: inifis 30 34 implicit none … … 133 137 character*20,allocatable :: nametrac(:) ! name of the tracer (no need for adv trac common) 134 138 135 real :: latitude(1), longitude(1) 139 real :: latitude(1), longitude(1), cell_area(1) 136 140 137 141 c======================================================================= … … 140 144 ! initialize "serial/parallel" related stuff 141 145 ! CALL init_phys_lmdz(iim,jjm+1,llm,1,(/(jjm-1)*iim+2/)) 142 CALL init_phys_lmdz(1,1,llm,1,(/1/))143 call initcomgeomphy146 ! CALL init_phys_lmdz(1,1,llm,1,(/1/)) 147 ! call initcomgeomphy 144 148 145 149 !! those are defined in surfdat_h.F90 … … 490 494 491 495 ! initializations, as with iniphysiq.F90 for the 3D GCM 496 call init_physics_distribution(regular_lonlat,4, 497 & 1,1,1,nlayer,1) 498 call init_interface_dyn_phys 492 499 CALL init_regular_lonlat(1,1,longitude,latitude, 493 500 & (/0.,0./),(/0.,0./)) 494 501 call init_geometry(1,longitude,latitude, 502 & (/0.,0.,0.,0./),(/0.,0.,0.,0./), 503 & cell_area) 504 call init_dimphy(1,nlayer) ! Initialize dimphy module 495 505 call ini_planete_mod(nlayer,preff,ap,bp) 496 506 -
trunk/LMDZ.GENERIC/libf/phystd/hydrol.F90
r1542 r1543 10 10 USE surfdat_h 11 11 use comdiurn_h 12 USE comgeomphy, only: cell_area12 USE geometry_mod, only: cell_area 13 13 USE tracer_h 14 14 use slab_ice_h -
trunk/LMDZ.GENERIC/libf/phystd/phyredem.F90
r1542 r1543 10 10 ! create physics restart file and write time-independent variables 11 11 use comsoil_h, only: volcapa, mlayer 12 use comgeomphy, only: cell_area12 use geometry_mod, only: cell_area 13 13 use surfdat_h, only: zmea, zstd, zsig, zgam, zthe, & 14 14 emisice, emissiv, & -
trunk/LMDZ.GENERIC/libf/phystd/physiq.F90
r1542 r1543 19 19 use comsaison_h, only: mu0, fract, dist_star, declin, right_ascen 20 20 use comsoil_h, only: nsoilmx, layer, mlayer, inertiedat 21 use comgeomphy, only: latitude, longitude, cell_area21 use geometry_mod, only: latitude, longitude, cell_area 22 22 USE comgeomfi_h, only: totarea, totarea_planet 23 23 USE tracer_h, only: noms, mmol, radius, rho_q, qext, & -
trunk/LMDZ.GENERIC/libf/phystd/rings.F90
r1542 r1543 5 5 6 6 use comdiurn_h, only: sinlat, sinlon, coslat, coslon 7 use comgeomphy, only: latitude ! (rad)7 use geometry_mod, only: latitude ! (rad) 8 8 9 9 implicit none -
trunk/LMDZ.GENERIC/libf/phystd/soil.F
r1542 r1543 8 8 use time_phylmdz_mod, only: daysec 9 9 use planete_mod, only: year_day 10 use comgeomphy, only: longitude, latitude ! in radians10 use geometry_mod, only: longitude, latitude ! in radians 11 11 12 12 implicit none -
trunk/LMDZ.GENERIC/libf/phystd/surface_nature.F
r1542 r1543 4 4 USE surfdat_h 5 5 USE comsoil_h 6 USE comgeomphy, ONLY: cell_area6 USE geometry_mod, ONLY: cell_area 7 7 USE tracer_h 8 8 -
trunk/LMDZ.GENERIC/libf/phystd/writediagfi.F
r1542 r1543 40 40 !================================================================= 41 41 use surfdat_h, only: phisfi 42 use comgeomphy, only: cell_area42 use geometry_mod, only: cell_area 43 43 use time_phylmdz_mod, only: ecritphy, day_step, iphysiq, day_ini 44 44 USE mod_phys_lmdz_para, only : is_parallel, is_mpi_root, -
trunk/LMDZ.GENERIC/libf/phystd/writediagsoil.F90
r1542 r1543 13 13 14 14 use comsoil_h, only: nsoilmx, inertiedat 15 use comgeomphy, only: cell_area15 use geometry_mod, only: cell_area 16 16 use time_phylmdz_mod, only: ecritphy, day_step, iphysiq 17 17 use mod_phys_lmdz_para, only : is_mpi_root, is_master, gather -
trunk/LMDZ.GENERIC/libf/phystd/writediagspecIR.F
r1542 r1543 43 43 ! Addition by RW (2010) to allow OLR to be saved in .nc format 44 44 use radinc_h, only : L_NSPECTI 45 use comgeomphy, only: cell_area45 use geometry_mod, only: cell_area 46 46 use mod_phys_lmdz_para, only : is_mpi_root, is_master, gather 47 47 use mod_grid_phy_lmdz, only : klon_glo, Grid1Dto2D_glo, -
trunk/LMDZ.GENERIC/libf/phystd/writediagspecVI.F
r1542 r1543 43 43 ! Addition by RW (2010) to allow OSR to be saved in .nc format 44 44 use radinc_h, only : L_NSPECTV 45 use comgeomphy, only: cell_area45 use geometry_mod, only: cell_area 46 46 use mod_phys_lmdz_para, only : is_mpi_root, is_master, gather 47 47 use mod_grid_phy_lmdz, only : klon_glo, Grid1Dto2D_glo,
Note: See TracChangeset
for help on using the changeset viewer.