Changeset 927


Ignore:
Timestamp:
06/21/19 00:55:59 (5 years ago)
Author:
dubos
Message:

devel : quiet down write_field.f90

File:
1 edited

Legend:

Unmodified
Added
Removed
  • codes/icosagcm/devel/src/output/write_field.f90

    r883 r927  
    292292     FieldIndex(NbField)=1 
    293293      
    294      PRINT *, 'Creating header for writefield : ', TRIM(FieldName(NbField)), ndomain, ind_b, ind_e ! FIXME 
    295      PRINT *, mesh_glo%ndomain, SIZE(mesh_glo%primal_own) 
     294!     PRINT *, 'Creating header for writefield : ', TRIM(FieldName(NbField)), ndomain, ind_b, ind_e ! FIXME 
     295!     PRINT *, mesh_glo%ndomain, SIZE(mesh_glo%primal_own) 
    296296     SELECT CASE(Field(ind_b)%field_type) 
    297297     CASE(field_T) 
    298         PRINT *, '    field_type == field_T' ! FIXME 
     298!        PRINT *, '    field_type == field_T' ! FIXME 
    299299        IF(single) THEN ! include halos 
    300300           cells => mesh_glo%primal_all 
     
    303303        END IF 
    304304     CASE(field_Z) 
    305         PRINT *, '    field_type == field_Z' ! FIXME 
     305!        PRINT *, '    field_type == field_Z' ! FIXME 
    306306        IF(single) THEN ! include halos 
    307307           cells => mesh_glo%dual_all 
     
    311311     END SELECT 
    312312      
    313      PRINT *, 'writefield : ind_b, ind_e :', ind_b, ind_e 
     313!     PRINT *, 'writefield : ind_b, ind_e :', ind_b, ind_e 
    314314 
    315315     ncell=0 
     
    318318        ncell = ncell + cells(ind)%ncell 
    319319     END DO 
    320      PRINT *, 'writefield : found ',ncell, ' cells.' ! FIXME 
     320!     PRINT *, 'writefield : found ',ncell, ' cells.' ! FIXME 
    321321      
    322322     status = NF90_CREATE(TRIM(ADJUSTL(name))//'.nc', NF90_CLOBBER, ncid) 
     
    416416     DO ind=ind_b,ind_e 
    417417        n_end = n_begin + cells(ind)%ncell 
    418         PRINT *, 'create_header_gen ', n_begin, n_end, SHAPE(cells(ind)%bnds_lon), SHAPE(bounds_lon) 
     418!        PRINT *, 'create_header_gen ', n_begin, n_end, SHAPE(cells(ind)%bnds_lon), SHAPE(bounds_lon) 
    419419        lat(n_begin+1:n_end) = cells(ind)%lat(:) *180./Pi 
    420420        lon(n_begin+1:n_end) = cells(ind)%lon(:) *180./Pi 
Note: See TracChangeset for help on using the changeset viewer.