Changeset 3457 for trunk


Ignore:
Timestamp:
Oct 11, 2024, 10:49:23 AM (6 weeks ago)
Author:
jbclement
Message:

PCM:
Modification of dimension detection for the variables written in "diagpem.nc": in particular for 'nb_str_max' which can evolve and match the value of other dimensions.
JBC

Location:
trunk/LMDZ.COMMON/libf/evolution
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/LMDZ.COMMON/libf/evolution/changelog.txt

    r3456 r3457  
    439439== 11/10/2024 == JBC
    440440Cleaning of the adsorption module to make the debugging easier.
     441
     442== 11/10/2024 == JBC
     443Modification of dimension detection for the variables written in "diagpem.nc": in particular for 'nb_str_max' which can evolve and match the value of other dimensions.
  • trunk/LMDZ.COMMON/libf/evolution/iostart_PEM.F90

    r3297 r3457  
    694694    IF (is_master) THEN
    695695
     696     IF (index(field_name,"stratif") == 0) then
    696697      IF (field_size==1) THEN
    697698        ! input is a 1D "surface field" array
     
    907908        endif ! of if (.not.present(time))
    908909
    909       ELSE IF (field_size == nb_str_max) THEN
     910      ELSE
     911        write(*,*) "Error phyredem(put_field_rgen) : wrong dimension for ",trim(field_name)
     912        write(*,*) "  field_size =",field_size
     913        CALL abort_physic("put_field_rgen","wrong field dimension",1)
     914      ENDIF
     915     ELSE
    910916        ! input is a 2D "stratification" array
    911917        if (.not.present(time)) then ! for a time-independent field
     
    949955
    950956        endif ! of if (.not.present(time))
    951 
    952       ELSE
    953         write(*,*) "Error phyredem(put_field_rgen) : wrong dimension for ",trim(field_name)
    954         write(*,*) "  field_size =",field_size
    955         CALL abort_physic("put_field_rgen","wrong field dimension",1)
    956       ENDIF
     957     ENDIF
    957958
    958959      ! Check the writting of field to file went OK
Note: See TracChangeset for help on using the changeset viewer.