Changeset 2365 for palm/trunk/UTIL
- Timestamp:
- Aug 21, 2017 2:59:59 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/UTIL/combine_plot_fields.f90
r1809 r2365 21 21 ! ----------------- 22 22 ! 23 ! 23 ! 24 24 ! Former revisions: 25 25 ! ----------------- 26 26 ! $Id$ 27 ! Vertical grid nesting implemented (SadiqHuq) 28 ! 29 ! 1809 2016-04-05 20:13:28Z raasch 27 30 ! 28 31 ! 1808 2016-04-05 19:44:00Z raasch … … 120 123 LOGICAL :: avs_output, compressed, found, iso2d_output, netcdf_output, & 121 124 netcdf_parallel, netcdf_0, netcdf_1 125 LOGICAL :: vnest 122 126 123 127 REAL(wp) :: cpu_start_time, cpu_end_time, dx, simulated_time … … 126 130 REAL(spk), DIMENSION(:,:,:), ALLOCATABLE :: pf3d, pf3d_tmp 127 131 132 133 128 134 PRINT*, '' 129 135 PRINT*, '' … … 133 139 !-- Find out if a coupled run has been carried out 134 140 INQUIRE( FILE='COUPLING_PORT_OPENED', EXIST=found ) 141 INQUIRE( FILE='VNESTING_PORT_OPENED', EXIST=vnest ) 135 142 IF ( found ) THEN 136 143 models = 2 137 144 PRINT*, ' coupled run' 145 ELSEIF ( vnest ) THEN 146 models = 2 147 PRINT*, ' Vertically nested grid coupling' 138 148 ELSE 139 149 models = 1 … … 160 170 PRINT*, '*** combine_plot_fields ***' 161 171 IF ( model == 2 ) THEN 162 model_string = '_O' 163 PRINT*, ' now combining ocean data' 164 PRINT*, ' ========================' 172 IF ( vnest ) THEN 173 model_string = '_N' 174 PRINT*, ' now combining FINE data' 175 PRINT*, ' ========================' 176 ELSE 177 model_string = '_O' 178 PRINT*, ' now combining ocean data' 179 PRINT*, ' ========================' 180 ENDIF 165 181 ELSE 166 PRINT*, ' now combining atmosphere data' 167 PRINT*, ' =============================' 182 IF ( vnest ) THEN 183 PRINT*, ' now combining COARSE data' 184 PRINT*, ' =============================' 185 ELSE 186 PRINT*, ' now combining atmosphere data' 187 PRINT*, ' =============================' 188 ENDIF 168 189 ENDIF 169 190 ENDIF
Note: See TracChangeset
for help on using the changeset viewer.