Changeset 4274 for palm/trunk
- Timestamp:
- Oct 28, 2019 9:07:08 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/UTIL/combine_plot_fields.f90
r3241 r4274 26 26 ! ----------------- 27 27 ! $Id$ 28 ! bugfix for processing data from atmosphere-ocean coupled runs (only atmosphere data were 29 ! processed, but twice) 30 ! 31 ! 3241 2018-09-12 15:02:00Z raasch 28 32 ! unused variables removed 29 33 ! … … 141 145 INTEGER(iwp), DIMENSION(0:1,1000) :: id_var, levels 142 146 143 LOGICAL :: found, nest3d, netcdf_output, netcdf_parallel, netcdf_0, &147 LOGICAL :: found, found_ao, nest3d, netcdf_output, netcdf_parallel, netcdf_0, & 144 148 netcdf_1, vnest 145 149 … … 156 160 ! 157 161 !-- Find out if a coupled or nested run has been carried out 158 INQUIRE( FILE='COUPLING_PORT_OPENED', EXIST=found )162 INQUIRE( FILE='COUPLING_PORT_OPENED', EXIST=found_ao ) 159 163 INQUIRE( FILE='VNESTING_PORT_OPENED', EXIST=vnest ) 160 164 INQUIRE( FILE='3DNESTING', EXIST=nest3d ) 161 IF ( found ) THEN165 IF ( found_ao ) THEN 162 166 models = 2 163 167 PRINT*, ' coupled run' … … 191 195 ! 192 196 !-- Set the model string used to identify the filenames 193 IF ( found .OR. vnest ) THEN197 IF ( found_ao .OR. vnest ) THEN 194 198 PRINT*, '' 195 199 IF ( model == 2 ) THEN
Note: See TracChangeset
for help on using the changeset viewer.