Changeset 2454 for LMDZ5/trunk/libf/phylmd
- Timestamp:
- Feb 25, 2016, 6:39:37 PM (9 years ago)
- Location:
- LMDZ5/trunk/libf/phylmd
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ5/trunk/libf/phylmd/ini_paramLMDZ_phy.h
r2399 r2454 10 10 ! 11 11 zstophy = pdtphys 12 zout = mth_len*un_jour12 zout = -1 13 13 ! 14 14 idayref = day_ref … … 33 33 "Excentricite","-", & 34 34 1,1,nhori, 1,1,1, -99, 32, & 35 "ave ", zstophy,zout)35 "ave(X)", zstophy,zout) 36 36 ! 37 37 CALL histdef(nid_ctesGCM, "R_peri", & 38 38 "Equinoxe","-", & 39 39 1,1,nhori, 1,1,1, -99, 32, & 40 "ave ", zstophy,zout)40 "ave(X)", zstophy,zout) 41 41 ! 42 42 CALL histdef(nid_ctesGCM, "R_incl", & 43 43 "Inclinaison","deg", & 44 44 1,1,nhori, 1,1,1, -99, 32, & 45 "ave ", zstophy,zout)45 "ave(X)", zstophy,zout) 46 46 ! 47 47 CALL histdef(nid_ctesGCM, "solaire", & 48 48 "Constante solaire","W/m2", & 49 49 1,1,nhori, 1,1,1, -99, 32, & 50 "ave ", zstophy,zout)50 "ave(X)", zstophy,zout) 51 51 ! 52 52 CALL histdef(nid_ctesGCM, "co2_ppm", & … … 75 75 "ave(X)", zstophy,zout) 76 76 ! 77 CALL histdef(nid_ctesGCM, "bils", &78 "Surface total heat flux", "W m-2", &79 1,1,nhori, 1,1,1, -99, 32, &80 "ave", zstophy,zout)81 !82 CALL histdef(nid_ctesGCM, "evap", &83 "Evaporation", "kg m-2 s-1", &84 1,1,nhori, 1,1,1, -99, 32, &85 "ave", zstophy,zout)86 !87 CALL histdef(nid_ctesGCM, "evap_land", &88 "Land evaporation", "kg m-2 s-1", &89 1,1,nhori, 1,1,1, -99, 32, &90 "ave", zstophy,zout)91 !92 CALL histdef(nid_ctesGCM, "flat", &93 "Latent heat flux", "W m-2", &94 1,1,nhori, 1,1,1, -99, 32, &95 "ave", zstophy,zout)96 !97 CALL histdef(nid_ctesGCM, "nettop0", &98 "Clear sky net downward radiatif flux at TOA", &99 "W m-2", &100 1,1,nhori, 1,1,1, -99, 32, &101 "ave", zstophy,zout)102 !103 CALL histdef(nid_ctesGCM, "nettop", &104 "Net downward radiatif flux at TOA", "W m-2", &105 1,1,nhori, 1,1,1, -99, 32, &106 "ave", zstophy,zout)107 !108 CALL histdef(nid_ctesGCM, "precip", &109 "Total precipitation (liq+sol)", "kg m-2 s-1", &110 1,1,nhori, 1,1,1, -99, 32, &111 "ave", zstophy,zout)112 !113 CALL histdef(nid_ctesGCM, "tsol", &114 "Surface temperature", "K", &115 1,1,nhori, 1,1,1, -99, 32, &116 "ave", zstophy,zout)117 !118 CALL histdef(nid_ctesGCM, "t2m", &119 "Temperature at 2m", "K", &120 1,1,nhori, 1,1,1, -99, 32, &121 "ave", zstophy,zout)122 !123 CALL histdef(nid_ctesGCM, "prw", &124 "Precipitable water", "kg m-2", &125 1,1,nhori, 1,1,1, -99, 32, &126 "ave", zstophy,zout)127 77 !================================================================= 128 78 ! -
LMDZ5/trunk/libf/phylmd/write_paramLMDZ_phy.h
r2351 r2454 1 !2 ! calcul moyennes globales3 !4 zx_tmp_fi2d=bils*cell_area5 CALL global_mean(zx_tmp_fi2d,cell_area,.TRUE.,gbils)6 zx_tmp_fi2d=evap*cell_area7 CALL global_mean(zx_tmp_fi2d,cell_area,.TRUE.,gevap)8 zx_tmp_fi2d(:)=fevap(:, is_ter)*cell_area(:)9 CALL global_mean(zx_tmp_fi2d,cell_area,.TRUE.,gevapt)10 zx_tmp_fi2d=zxfluxlat*cell_area11 CALL global_mean(zx_tmp_fi2d,cell_area,.TRUE.,glat)12 zx_tmp_fi2d=(topsw0-toplw0)*cell_area13 CALL global_mean(zx_tmp_fi2d,cell_area,.TRUE.,gnet0)14 zx_tmp_fi2d=(topsw-toplw)*cell_area15 CALL global_mean(zx_tmp_fi2d,cell_area,.TRUE.,gnet)16 zx_tmp_fi2d=(rain_fall+snow_fall)*cell_area17 CALL global_mean(zx_tmp_fi2d,cell_area,.TRUE.,grain)18 zx_tmp_fi2d=zxtsol*cell_area19 CALL global_mean(zx_tmp_fi2d,cell_area,.TRUE.,gtsol)20 zx_tmp_fi2d=zt2m*cell_area21 CALL global_mean(zx_tmp_fi2d,cell_area,.TRUE.,gt2m)22 zx_tmp_fi2d=prw*cell_area23 CALL global_mean(zx_tmp_fi2d,cell_area,.TRUE.,gprw)24 1 ! 25 2 !$OMP MASTER … … 68 45 ! 69 46 !================================================================= 70 ! moyennes globales71 !72 CALL histwrite(nid_ctesGCM,"bils",itau_w, &73 gbils,np,ndex2d)74 CALL histwrite(nid_ctesGCM,"evap",itau_w, &75 gevap,np,ndex2d)76 CALL histwrite(nid_ctesGCM,"evap_land",itau_w, &77 gevapt,np,ndex2d)78 CALL histwrite(nid_ctesGCM,"flat",itau_w, &79 glat,np,ndex2d)80 CALL histwrite(nid_ctesGCM,"nettop0",itau_w, &81 gnet0,np,ndex2d)82 CALL histwrite(nid_ctesGCM,"nettop",itau_w, &83 gnet,np,ndex2d)84 CALL histwrite(nid_ctesGCM,"precip",itau_w, &85 grain,np,ndex2d)86 CALL histwrite(nid_ctesGCM,"tsol",itau_w, &87 gtsol,np,ndex2d)88 CALL histwrite(nid_ctesGCM,"t2m",itau_w, &89 gt2m,np,ndex2d)90 CALL histwrite(nid_ctesGCM,"prw",itau_w, &91 gprw,np,ndex2d)92 !=================================================================93 47 ! 94 48 if (ok_sync) then
Note: See TracChangeset
for help on using the changeset viewer.