Ignore:
Timestamp:
Aug 3, 2024, 2:56:58 PM (4 months ago)
Author:
abarral
Message:

Put .h into modules

File:
1 edited

Legend:

Unmodified
Added
Removed
  • LMDZ6/branches/Amaury_dev/libf/phylmd/cosp2/phys_cosp2.F90

    r5158 r5160  
    286286!+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    287287! AI mars 2017
    288 !        print *, 'Allocating memory for gridbox type...'
     288!        PRINT *, 'Allocating memory for gridbox type...'
    289289
    290290! Surafce emissivity
     
    303303!+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    304304
    305 !        print *, 'Populating input structure...'
     305!        PRINT *, 'Populating input structure...'
    306306        gbx%longitude = lon
    307307        gbx%latitude = lat
     
    387387        ! Define new vertical grid
    388388!+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    389 !        print *, 'Defining new vertical grid...'
     389!        PRINT *, 'Defining new vertical grid...'
    390390        call construct_cosp_vgrid(gbx,Nlr,use_vgrid,csat_vgrid,vgrid)
    391391        print*,'Nlvgrid,use_vgrid,csat_vgrid ',Nlr,use_vgrid,csat_vgrid
     
    394394       ! Allocate memory for other types
    395395!+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    396 !        print *, 'Allocating memory for other types...'
     396!        PRINT *, 'Allocating memory for other types...'
    397397        call construct_cosp_subgrid(Npoints, Ncolumns, Nlevels, sgx)
    398398        if (cfg%Lradar_sim) call construct_cosp_sgradar(Npoints,Ncolumns,Nlevels,N_HYDRO,sgradar)
     
    409409    if (debut_cosp) then
    410410      !$OMP MASTER
    411         print *, ' Open outpts files and define axis'
     411        PRINT *, ' Open outpts files and define axis'
    412412        call cosp_output_open(Nlevlmdz, Ncolumns, presnivs, dtime, freq_cosp, &
    413413                              ok_mensuelCOSP, ok_journeCOSP, ok_hfCOSP, ok_all_xml, &
     
    428428!!!!!!!!!!!!!!!!!! Ecreture des sorties Cosp !!!!!!!!!!!!!!r!!!!!!:!!!!!
    429429
    430        print *, 'Calling write output'
     430       PRINT *, 'Calling write output'
    431431        call cosp_output_write(Nlevlmdz, Npoints, Ncolumns, itap, dtime, freq_COSP, missing_val, &
    432432                               cfg, gbx, vgrid, sglidar, sgradar, stlidar, stradar, &
     
    435435        ! Deallocate memory in derived types
    436436!+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    437       print *, 'Deallocating memory...'
     437      PRINT *, 'Deallocating memory...'
    438438     call free_cosp_gridbox(gbx)
    439       print *, 'free_cosp_gridbox'
     439      PRINT *, 'free_cosp_gridbox'
    440440     call free_cosp_subgrid(sgx)
    441       print *, 'ffree_cosp_subgrid'
     441      PRINT *, 'ffree_cosp_subgrid'
    442442     call free_cosp_vgrid(vgrid)
    443       print *, 'free_cosp_vgrid'
     443      PRINT *, 'free_cosp_vgrid'
    444444     if (cfg%Lradar_sim) call free_cosp_sgradar(sgradar)
    445445     if (cfg%Lradar_sim) call free_cosp_radarstats(stradar)
     
    450450     if (cfg%Lmodis_sim) call free_cosp_modis(modis)
    451451     if (cfg%Lrttov_sim) call free_cosp_rttov(rttov)
    452      print *, 'End phys_cosp2'
     452     PRINT *, 'End phys_cosp2'
    453453!+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    454454  ! Time in s. Only for testing purposes
    455455!  call system_clock(t1,count_rate,count_max)
    456 print *,(t1-t0)*1.0/count_rate
     456PRINT *,(t1-t0)*1.0/count_rate
    457457 
    458458end subroutine phys_cosp2
Note: See TracChangeset for help on using the changeset viewer.