Changeset 3516 for palm/trunk/SOURCE/netcdf_data_input_mod.f90
- Timestamp:
- Nov 12, 2018 3:49:39 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/netcdf_data_input_mod.f90
r3498 r3516 25 25 ! ----------------- 26 26 ! $Id$ 27 ! bugfix: - difference in z coordinate between file and PALM must be <1e-6 28 ! - output of error 553 for all PEs 29 ! 30 ! 3498 2018-11-07 10:53:03Z gronemeier 27 31 ! Bugfix: print error message by processor which encounters the error 28 32 ! … … 3967 3971 ENDIF 3968 3972 3969 IF ( ANY( buildings_f%z(0:buildings_f%nz-1) /=&3970 zu(0:buildings_f%nz-1) ) ) THEN3973 IF ( ANY( ABS( buildings_f%z(0:buildings_f%nz-1) - & 3974 zu(0:buildings_f%nz-1) ) > 1E-6_wp ) ) THEN 3971 3975 message_string = 'Reading 3D building data - vertical ' // & 3972 3976 'coordinate do not match numeric grid.' 3973 CALL message( 'netcdf_data_input_mod', 'PA0553', 2, 2, 0, 6, 0 )3977 CALL message( 'netcdf_data_input_mod', 'PA0553', 2, 2, myid, 6, 0 ) 3974 3978 ENDIF 3975 3979 ENDIF
Note: See TracChangeset
for help on using the changeset viewer.