Changeset 3369
- Timestamp:
- Jul 12, 2018, 12:22:08 PM (6 years ago)
- Location:
- LMDZ6/trunk/libf/phylmd/cosp2
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ6/trunk/libf/phylmd/cosp2/cosp_output_mod.F90
r3358 r3369 231 231 SUBROUTINE cosp_output_open(Nlevlmdz, Ncolumns, presnivs, dtime, freq_cosp, & 232 232 ok_mensuelCOSP, ok_journeCOSP, ok_hfCOSP, ok_all_xml, & 233 ecrit_mth, ecrit_day, ecrit_hf, vgrid)233 ecrit_mth, ecrit_day, ecrit_hf, use_vgrid, vgrid) 234 234 use MOD_COSP_INTERFACE_v1p4, only : cosp_vgrid 235 235 ! use MOD_COSP … … 258 258 real,dimension(Nlevlmdz) :: presnivs 259 259 real :: dtime, freq_cosp, ecrit_day, ecrit_hf, ecrit_mth 260 logical :: use_vgrid 260 261 logical :: ok_mensuelCOSP, ok_journeCOSP, ok_hfCOSP, ok_all_xml 261 262 type(cosp_vgrid) :: vgrid ! Information on vertical grid of stats … … 414 415 CALL histvert(cosp_nidfiles(iff),"sza","solar_zenith_angle","degrees",PARASOL_NREFL,PARASOL_SZA,nvertp(iff)) 415 416 416 CALL histvert(cosp_nidfiles(iff),"pressure2","pressure","mb",7, ISCCP_PC,nvertisccp(iff),"down")417 CALL histvert(cosp_nidfiles(iff),"pressure2","pressure","mb",7,pres_binCenters,nvertisccp(iff),"down") 417 418 418 419 CALL histvert(cosp_nidfiles(iff),"column","column","count",Ncolumns,column_ax,nvertcol(iff)) !DBUG … … 420 421 CALL histvert(cosp_nidfiles(iff),"temp","temperature","C",LIDAR_NTEMP,LIDAR_PHASE_TEMP,nverttemp(iff)) 421 422 422 CALL histvert(cosp_nidfiles(iff),"cth","altitude","m", MISR_N_CTH,MISR_CTH,nvertmisr(iff))423 CALL histvert(cosp_nidfiles(iff),"cth","altitude","m",numMISRHgtBins,misr_histHgtCenters,nvertmisr(iff)) 423 424 424 425 CALL histvert(cosp_nidfiles(iff),"ReffIce","Effective_particle_size_Ice","microns",numMODISReffIceBins, reffICE_binCenters, & … … 432 433 CALL histvert(cosp_nidfiles(iff),"scatratio","backscattering_ratio","1",SR_BINS,sratio_ax,nvertsratio(iff)) 433 434 434 CALL histvert(cosp_nidfiles(iff),"tau","cloud optical depth","1",7, ISCCP_TAU,nverttau(iff))435 CALL histvert(cosp_nidfiles(iff),"tau","cloud optical depth","1",7,tau_binCenters,nverttau(iff)) 435 436 436 437 !!! Valeur indefinie en cas IOIPSL -
LMDZ6/trunk/libf/phylmd/cosp2/phys_cosp2.F90
r3364 r3369 410 410 call cosp_output_open(Nlevlmdz, Ncolumns, presnivs, dtime, freq_cosp, & 411 411 ok_mensuelCOSP, ok_journeCOSP, ok_hfCOSP, ok_all_xml, & 412 ecrit_mth, ecrit_day, ecrit_hf, vgrid)412 ecrit_mth, ecrit_day, ecrit_hf, use_vgrid, vgrid) 413 413 !$OMP END MASTER 414 414 !$OMP BARRIER
Note: See TracChangeset
for help on using the changeset viewer.