New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
Changeset 15487 for NEMO/branches/UKMO/NEMO_4.0.4_generic_obs/src/OCE/OBS/obs_oper.F90 – NEMO

Ignore:
Timestamp:
2021-11-09T16:27:42+01:00 (3 years ago)
Author:
dford
Message:

Remove some comments and add some spaces.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • NEMO/branches/UKMO/NEMO_4.0.4_generic_obs/src/OCE/OBS/obs_oper.F90

    r15285 r15487  
    210210         zdaystp = 1.0 / REAL( kdaystp ) 
    211211         IF ( idayend == 0 ) THEN 
    212             IF (lwp) WRITE(numout,*) 'Calculating prodatqc%vdmean on time-step: ',kt 
     212            IF (lwp) WRITE(numout,*) 'Calculating prodatqc%vdmean on time-step: ', kt 
    213213            CALL FLUSH(numout) 
    214214            DO jk = 1, jpk 
     
    658658         ! Added kt == 0 test to catch restart case 
    659659         IF ( ( imeanend == 1 ) .OR. ( kt == 0 ) ) THEN 
    660             IF (lwp) WRITE(numout,*) 'Reset surfdataqc%vdmean on time-step: ',kt 
     660            IF (lwp) WRITE(numout,*) 'Reset surfdataqc%vdmean on time-step: ', kt 
    661661            DO jj = 1, jpj 
    662662               DO ji = 1, jpi 
     
    667667 
    668668         ! On each time-step, increment the field for computing time mean 
    669          IF (lwp) WRITE(numout,*)'Accumulating surfdataqc%vdmean on time-step: ',kt 
     669         IF (lwp) WRITE(numout,*)'Accumulating surfdataqc%vdmean on time-step: ', kt 
    670670         DO jj = 1, jpj 
    671671            DO ji = 1, jpi 
     
    678678         IF ( imeanend == 0 ) THEN 
    679679            zmeanstp = 1.0 / REAL( kmeanstp ) 
    680             IF (lwp) WRITE(numout,*)'Calculating surfdataqc%vdmean time mean on time-step: ',kt,' with weight: ',zmeanstp 
     680            IF (lwp) WRITE(numout,*) 'Calculating surfdataqc%vdmean time mean on time-step: ', & 
     681               &                     kt, ' with weight: ', zmeanstp 
    681682            DO jj = 1, jpj 
    682683               DO ji = 1, jpi 
     
    732733         zdaystp = 1.0 / REAL( kdaystp ) 
    733734         IF ( idayend == 0 ) THEN 
    734             IF (lwp) WRITE(numout,*) 'Calculating surfdataqc%vdmean on time-step: ',kt 
     735            IF (lwp) WRITE(numout,*) 'Calculating surfdataqc%vdmean on time-step: ', kt 
    735736            DO jj = 1, jpj 
    736737               DO ji = 1, jpi 
     
    817818         IF ( imeanend == 0 ) THEN 
    818819            ALLOCATE( zsurfm(imaxifp,imaxjfp,isurf) ) 
    819             IF (lwp) WRITE(numout,*)' Interpolating the time mean values on time step: ',kt 
     820            IF (lwp) WRITE(numout,*)' Interpolating the time mean values on time step: ', kt 
    820821            CALL obs_int_comm_2d( imaxifp, imaxjfp, isurf, kpi, kpj, & 
    821822               &                  igrdi, igrdj, surfdataqc%vdmean(:,:,kvar), zsurfm ) 
Note: See TracChangeset for help on using the changeset viewer.