- Timestamp:
- Aug 3, 2024, 2:56:58 PM (4 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ6/branches/Amaury_dev/libf/phylmd/cosp2/phys_cosp2.F90
r5158 r5160 286 286 !+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 287 287 ! AI mars 2017 288 ! print*, 'Allocating memory for gridbox type...'288 ! PRINT *, 'Allocating memory for gridbox type...' 289 289 290 290 ! Surafce emissivity … … 303 303 !+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 304 304 305 ! print*, 'Populating input structure...'305 ! PRINT *, 'Populating input structure...' 306 306 gbx%longitude = lon 307 307 gbx%latitude = lat … … 387 387 ! Define new vertical grid 388 388 !+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 389 ! print*, 'Defining new vertical grid...'389 ! PRINT *, 'Defining new vertical grid...' 390 390 call construct_cosp_vgrid(gbx,Nlr,use_vgrid,csat_vgrid,vgrid) 391 391 print*,'Nlvgrid,use_vgrid,csat_vgrid ',Nlr,use_vgrid,csat_vgrid … … 394 394 ! Allocate memory for other types 395 395 !+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 396 ! print*, 'Allocating memory for other types...'396 ! PRINT *, 'Allocating memory for other types...' 397 397 call construct_cosp_subgrid(Npoints, Ncolumns, Nlevels, sgx) 398 398 if (cfg%Lradar_sim) call construct_cosp_sgradar(Npoints,Ncolumns,Nlevels,N_HYDRO,sgradar) … … 409 409 if (debut_cosp) then 410 410 !$OMP MASTER 411 print*, ' Open outpts files and define axis'411 PRINT *, ' Open outpts files and define axis' 412 412 call cosp_output_open(Nlevlmdz, Ncolumns, presnivs, dtime, freq_cosp, & 413 413 ok_mensuelCOSP, ok_journeCOSP, ok_hfCOSP, ok_all_xml, & … … 428 428 !!!!!!!!!!!!!!!!!! Ecreture des sorties Cosp !!!!!!!!!!!!!!r!!!!!!:!!!!! 429 429 430 print*, 'Calling write output'430 PRINT *, 'Calling write output' 431 431 call cosp_output_write(Nlevlmdz, Npoints, Ncolumns, itap, dtime, freq_COSP, missing_val, & 432 432 cfg, gbx, vgrid, sglidar, sgradar, stlidar, stradar, & … … 435 435 ! Deallocate memory in derived types 436 436 !+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 437 print*, 'Deallocating memory...'437 PRINT *, 'Deallocating memory...' 438 438 call free_cosp_gridbox(gbx) 439 print*, 'free_cosp_gridbox'439 PRINT *, 'free_cosp_gridbox' 440 440 call free_cosp_subgrid(sgx) 441 print*, 'ffree_cosp_subgrid'441 PRINT *, 'ffree_cosp_subgrid' 442 442 call free_cosp_vgrid(vgrid) 443 print*, 'free_cosp_vgrid'443 PRINT *, 'free_cosp_vgrid' 444 444 if (cfg%Lradar_sim) call free_cosp_sgradar(sgradar) 445 445 if (cfg%Lradar_sim) call free_cosp_radarstats(stradar) … … 450 450 if (cfg%Lmodis_sim) call free_cosp_modis(modis) 451 451 if (cfg%Lrttov_sim) call free_cosp_rttov(rttov) 452 print*, 'End phys_cosp2'452 PRINT *, 'End phys_cosp2' 453 453 !+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 454 454 ! Time in s. Only for testing purposes 455 455 ! call system_clock(t1,count_rate,count_max) 456 ! print*,(t1-t0)*1.0/count_rate456 ! PRINT *,(t1-t0)*1.0/count_rate 457 457 458 458 end subroutine phys_cosp2
Note: See TracChangeset
for help on using the changeset viewer.