Changes between Version 459 and Version 460 of doc/app/errmsg
- Timestamp:
- Jul 4, 2017 9:33:41 AM (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
doc/app/errmsg
v459 v460 266 266 ||[=#PA0224 PA0224] || || message number is unused || 267 267 ||[=#PA0225 PA0225] ||x-direction: gridpoint number (...) is not an integral divisor of the number of processors (...) || The division of the number of grid points along the x-direction given by [../inipar#nx nx]+1 by the number of processors along the x-direction has a rest and is therefore not an integral divisor of the number of processors. To solve this problem you must ensure that the aforementioned division is without rest for example by setting the number of PEs in y-direction manually (see [../d3par#npex npex]) or by changing [../inipar#nx nx]. It might also be the case that you did not think about that [../inipar#nx nx]+1 is the total number of gridpoints along the x-direction instead of [../inipar#nx nx]. || 268 ||[=#PA0226 PA0226] ||x-direction: nx does not match the requirements given by the number of PEs used please use nx = ... instead of nx =... || ||268 ||[=#PA0226 PA0226] ||x-direction: nx does not match the requirements given by the number of PEs used please use nx = ... instead of nx =... || ** || 269 269 ||[=#PA0227 PA0227] ||y-direction: gridpoint number (...) is not an integral divisor of the number of processors (...) || The division of the number of grid points along the y-direction given by [../inipar#ny ny]+1 by the number of processors along the y-direction has a rest and is therefore not an integral divisor of the number of processors. To solve this problem you must ensure that the aforementioned division is without rest for example by setting the number of PEs in y-direction manually (see [../d3par#npey npey]) or by changing [../inipar#ny ny]. It might also be the case that you did not think about that [../inipar#ny ny]+1 is the total number of gridpoints along the y-direction instead of [../inipar#ny ny]. || 270 270 ||[=#PA0228 PA0228] ||y-direction: ny does not match the requirements given by the number of PEs used please use ny = ... instead of ny =... || || … … 274 274 ||[=#PA0232 PA0232] ||transposition y --> z: ny+1=... is not an integral divisor of pdims(1)=... ||Due to restrictions in data transposition, the division of [../inipar#ny ny]+1 by the number of processors in x-direction has to be without rest. Please ensure this by changing [../inipar#ny ny] or setting the number of gridpoints in x-direction (pdims(1)) manually by [../d3par#npex npex]. || 275 275 ||[=#PA0233 PA0233] ||transposition x --> y: ny+1=... is not an integral divisor of pdims(1)=... ||Due to restrictions in data transposition, the division of [../inipar#ny ny]+1 by the number of processors in x-direction has to be without rest. Please ensure this by changing [../inipar#ny ny] or setting the number of gridpoints in x-direction (pdims(1)) manually by [../d3par#npex npex]. || 276 ||[=#PA0234 PA0234] ||direct transposition z --> y (needed for spectra): nz=... is not an integral divisor of pdims(2)=... || ||276 ||[=#PA0234 PA0234] ||direct transposition z --> y (needed for spectra): nz=... is not an integral divisor of pdims(2)=... || ** || 277 277 ||[=#PA0235 PA0235] ||mg_switch_to_pe0_level out of range and reset to 0 || mg_switch_to_pe0_level was manually set out of range. It was reset to 0, so that the gathering level is determined automatically and displayed in file RUN_CONTROL. See [../inipar#mg_switch_to_pe0_level mg_switch_to_pe0_level] for details. || 278 278 ||[=#PA0236 PA0236] ||grid coarsening on subdomain level cannot be performed || The multigrid pressure solver halfs the number of grid points in each direction to get coarser grid levels. This is done for the subdomains on each PE until one of the directions cannot be divided by 2 without rest. If this is the case, the coarsest grid level of each subdomain are gathered on each PE for further coarsening. Before gathering, the coarsening must be done for the subdomain at least one time. You get this error messages for example with the following combination: \\ [../inipar#nx nx ] = 60, [../inipar#ny ny ] = 60, [../inipar#nz nz ] = 60, \\ [../d3par#npex npex ] = 4, [../d3par#npey npey ] = 2. \\ With this combination, the subdomain on each PE has the size: \\ nx = 15, ny = 30, nz = 60. \\ The number of grid points in the x-direction of the subdomain cannot be divided by 2 and no coarsening is possible for the subdomains in this example. \\\\ To avoid this error ensure that the number of grid points in each direction can be divided by 2 without rest on the subdomain of an PE at least one time. Therefor vary the number of grid points for the direction which does not fit by changing [../inipar#nx nx ], [../inipar#ny ny ] or [../inipar#nz nz ] or adjust the number of processors by modifying the parameters [../d3par#npex npex ] or [../d3par#npey npey ] in order to get other subdomain sizes. \\ In the example given above, you can avoid the error by changing nx or npex. For example setting [../inipar#nx nx ] = 64 leads to a subdomain of \\ nx = 16, ny = 30, nz = 60. \\ All numbers are now divisible by 2 without rest and the first coarser grid on the subdomain is then: \\ nx = 8, ny = 15, nz = 30. || … … 285 285 ||[=#PA0243 PA0243] ||unknown variable in inipar assignment: netcdf_precision(...)="..." || See [#PA0241 PA0241]. Allowed outputs are 'xy', 'xz', 'yz', '2d', '3d', 'pr', 'ts', 'sp', 'prt' or 'all'. || 286 286 ||[=#PA0244 PA0244] ||no grid defined for variable ... || All output quantities need a grid on which they are then output. See [../userint/output user-defined] output documentation for a detailed description on how to output your own quantities. || 287 ||[=#PA0245 PA0245] ||netCDF file for volume data ... from previous run found, but this file cannot be extended due to variable mismatch. New file is created instead. || ||288 ||[=#PA0246 PA0246] ||netCDF file for volume data ... from previous run found, but this file cannot be extended due to mismatch in number of vertical grid points (nz_do3d). New file is created instead. || ||289 ||[=#PA0247 PA0247] ||netCDF file for volume data ... from previous run found, but this file cannot be extended because the current output time is less or equal than the last output time on this file. New file is created instead. || ||290 ||[=#PA0248 PA0248] ||netCDF file for volume data ... from previous run found. This file will be extended. || ||291 ||[=#PA0249 PA0249] ||netCDF file for cross-sections ... from previous run found, but this file cannot be extended due to variable mismatch. New file is created instead. || ||292 ||[=#PA0250 PA0250] ||netCDF file for cross-sections ... from previous run found, but this file cannot be extended due to mismatch in number of cross sections. New file is created instead. || ||293 ||[=#PA0251 PA0251] ||netCDF file for cross-sections ... from previ uos run found but this file cannot be extended due to mismatch in cross section levels. New file is created instead. ||||294 ||[=#PA0252 PA0252] ||netCDF file for cross sections ... from previous run found, but this file cannot be extended because the current output time is less or equal than the last output time on this file. New file is created instead. || ||295 ||[=#PA0253 PA0253] ||netCDF file for cross-sections ... from previous run found. This file will be extended. || ||296 ||[=#PA0254 PA0254] ||netCDF file for vertical profiles from previous run found, but this file cannot be extended due to variable mismatch. New file is created instead. || ||297 ||[=#PA0255 PA0255] ||netCDF file for vertical profiles from previous run found, but this file cannot be extended because the current output time is less or equal than the last output time on this file. New file is created instead. || ||298 ||[=#PA0256 PA0256] ||netCDF file for vertical profiles from previous run found. This file will be extended. || ||299 ||[=#PA0257 PA0257] ||netCDF file for vertical profiles from previous run found. This file will be extended. || ||300 ||[=#PA0258 PA0258] ||netCDF file for time series from previous run found, but this file cannot be extended because the current output time is less or equal than the last output time on this file. New file is created instead. || ||301 ||[=#PA0259 PA0259] ||netCDF file for time series from previous run found. This file will be extended. || ||302 ||[=#PA0260 PA0260] ||netCDF file for spectra from previuos run found, but this file cannot be extended due to variable mismatch. New file is created instead. || ||303 ||[=#PA0261 PA0261] ||netCDF file for spectra from previuos run found, but this file cannot be extended due to mismatch in number of vertical levels. New file is created instead. || ||304 ||[=#PA0262 PA0262] ||netCDF file for spectra from previuos run found, but this file cannot be extended due to mismatch in heights of vertical levels. New file is created instead. || ||305 ||[=#PA0263 PA0263] ||netCDF file for spectra from previuos run found, but this file cannot be extended because the current output time is less or equal than the last output time on this file. New file is created instead. || ||306 ||[=#PA0264 PA0264] ||netCDF file for spectra from previous run found. This file will be extended. || ||307 ||[=#PA0265 PA0265] ||netCDF file for particles from previuos run found, but this file cannot be extended because the current output time is less or equal than the last output time on this file. New file is created instead. || ||308 ||[=#PA0266 PA0266] ||netCDF file for particles from previous run found. This file will be extended. || ||309 ||[=#PA0267 PA0267] ||netCDF file for particle time series from previuos run found, but this file cannot be extended due to variable mismatch. New file is created instead. || ||310 ||[=#PA0268 PA0268] ||netCDF file for particle time series from previuos run found, but this file cannot be extended because the current output time is less or equal than the last output time on this file. New file is created instead. || ||311 ||[=#PA0269 PA0269] ||netCDF file for particle time series from previous run found. This file will be extended. || ||312 ||[=#PA0270 PA0270] ||mode "..." not supported || ||287 ||[=#PA0245 PA0245] ||netCDF file for volume data ... from previous run found, but this file cannot be extended due to variable mismatch. New file is created instead. || ** || 288 ||[=#PA0246 PA0246] ||netCDF file for volume data ... from previous run found, but this file cannot be extended due to mismatch in number of vertical grid points (nz_do3d). New file is created instead. || ** || 289 ||[=#PA0247 PA0247] ||netCDF file for volume data ... from previous run found, but this file cannot be extended because the current output time is less or equal than the last output time on this file. New file is created instead. || ** || 290 ||[=#PA0248 PA0248] ||netCDF file for volume data ... from previous run found. This file will be extended. || ** || 291 ||[=#PA0249 PA0249] ||netCDF file for cross-sections ... from previous run found, but this file cannot be extended due to variable mismatch. New file is created instead. || ** || 292 ||[=#PA0250 PA0250] ||netCDF file for cross-sections ... from previous run found, but this file cannot be extended due to mismatch in number of cross sections. New file is created instead. || ** || 293 ||[=#PA0251 PA0251] ||netCDF file for cross-sections ... from previous run found but this file cannot be extended due to mismatch in cross section levels. New file is created instead. || ** || 294 ||[=#PA0252 PA0252] ||netCDF file for cross sections ... from previous run found, but this file cannot be extended because the current output time is less or equal than the last output time on this file. New file is created instead. || ** || 295 ||[=#PA0253 PA0253] ||netCDF file for cross-sections ... from previous run found. This file will be extended. || ** || 296 ||[=#PA0254 PA0254] ||netCDF file for vertical profiles from previous run found, but this file cannot be extended due to variable mismatch. New file is created instead. || ** || 297 ||[=#PA0255 PA0255] ||netCDF file for vertical profiles from previous run found, but this file cannot be extended because the current output time is less or equal than the last output time on this file. New file is created instead. || ** || 298 ||[=#PA0256 PA0256] ||netCDF file for vertical profiles from previous run found. This file will be extended. || ** || 299 ||[=#PA0257 PA0257] ||netCDF file for vertical profiles from previous run found. This file will be extended. || ** || 300 ||[=#PA0258 PA0258] ||netCDF file for time series from previous run found, but this file cannot be extended because the current output time is less or equal than the last output time on this file. New file is created instead. || ** || 301 ||[=#PA0259 PA0259] ||netCDF file for time series from previous run found. This file will be extended. || ** || 302 ||[=#PA0260 PA0260] ||netCDF file for spectra from previuos run found, but this file cannot be extended due to variable mismatch. New file is created instead. || ** || 303 ||[=#PA0261 PA0261] ||netCDF file for spectra from previuos run found, but this file cannot be extended due to mismatch in number of vertical levels. New file is created instead. || ** || 304 ||[=#PA0262 PA0262] ||netCDF file for spectra from previuos run found, but this file cannot be extended due to mismatch in heights of vertical levels. New file is created instead. || ** || 305 ||[=#PA0263 PA0263] ||netCDF file for spectra from previuos run found, but this file cannot be extended because the current output time is less or equal than the last output time on this file. New file is created instead. || ** || 306 ||[=#PA0264 PA0264] ||netCDF file for spectra from previous run found. This file will be extended. || ** || 307 ||[=#PA0265 PA0265] ||netCDF file for particles from previuos run found, but this file cannot be extended because the current output time is less or equal than the last output time on this file. New file is created instead. || ** || 308 ||[=#PA0266 PA0266] ||netCDF file for particles from previous run found. This file will be extended. || ** || 309 ||[=#PA0267 PA0267] ||netCDF file for particle time series from previuos run found, but this file cannot be extended due to variable mismatch. New file is created instead. || ** || 310 ||[=#PA0268 PA0268] ||netCDF file for particle time series from previuos run found, but this file cannot be extended because the current output time is less or equal than the last output time on this file. New file is created instead. || ** || 311 ||[=#PA0269 PA0269] ||netCDF file for particle time series from previous run found. This file will be extended. || ** || 312 ||[=#PA0270 PA0270] ||mode "..." not supported || ** || 313 313 ||[=#PA0271 PA0271] ||errors in &inipar or no &inipar-namelist found (CRAY-machines only) ||One possible explanation: An old, meanwhile modified variable has been used in &inipar (e.g. ws_vertical_gradient (old) instead of [../inipar#subs_vertical_gradient subs_vertical_gradient] (new)). Please carefully check your inipar-NAMELIST and compare parameters and their values with those given and explained in the [wiki:doc/app/inipar initialization]-section of the model steering parameters. || 314 314 ||[=#PA0272 PA0272] ||no &inipar-namelist found || Your parameter file must contain an &inipar-namelist. Parameters given in this namelist are required for model steering. Please take a look at this [/wiki/doc/tut/tec/control example parameter file] and appropriately correct your parameter file. One possible error might be a typo in the NAMELIST name, e.g. ''inpar'' instead of ''inipar''. || … … 336 336 ||[=#PA0294 PA0294] ||read_3d_binary: spectrum_y on restart file ignored because total numbers of grid points (ny) do not match || To avoid this message, make sure that [../inipar#ny ny] is the same in both the precursor and the main run. || 337 337 ||[=#PA0295 PA0295] ||unknown field named "..." found in data from prior run on PE ... || See [#PA0302 PA0302] || 338 ||[=#PA0296 PA0296] ||version mismatch concerning control variables version on file = "..." version on program = "..." || ||339 ||[=#PA0297 PA0297] ||numprocs not found in data from prior run on PE ... || ||340 ||[=#PA0298 PA0298] ||hor_index_bounds not found in data from prior run on PE ... || ||341 ||[=#PA0299 PA0299] ||nz not found in data from prior run on PE ... || ||342 ||[=#PA0300 PA0300] ||max_pr_user not found in data from prior run on PE ... || ||343 ||[=#PA0301 PA0301] ||statistic_regions not found in data from prior run on PE ... || ||338 ||[=#PA0296 PA0296] ||version mismatch concerning control variables version on file = "..." version on program = "..." || ** || 339 ||[=#PA0297 PA0297] ||numprocs not found in data from prior run on PE ... || ** || 340 ||[=#PA0298 PA0298] ||hor_index_bounds not found in data from prior run on PE ... || ** || 341 ||[=#PA0299 PA0299] ||nz not found in data from prior run on PE ... || ** || 342 ||[=#PA0300 PA0300] ||max_pr_user not found in data from prior run on PE ... || ** || 343 ||[=#PA0301 PA0301] ||statistic_regions not found in data from prior run on PE ... || ** || 344 344 ||[=#PA0302 PA0302] ||unknown variable named "..." found in data from prior run on PE ... || During the initial run, a variable was written to [../iofiles#BINOUT BINOUT], that is not recognized during read-in of the restart run. Note that user variables have to be written during [../userint/int#user_last_actions user_last_actions] (not to the part of [../iofiles#BINOUT BINOUT] where standard output is written). It has to be read accordingly in [../userint/int#user_read_restart_data user_read_restart_data]. Also see: [../userint/output#part_3 user output]. || 345 345 ||[=#PA0303 PA0303] ||nz not found in restart data file || nz is necessary for the main run to continue. This will happen if the [../inipar inipar] list was altered between precursor and main run. See documentation of [../examples/turbinf tubulent inflow] for detailed information on the use of restart data for precursor runs. Also check if you altered [../inipar#nz nz] between precursor and main run. || … … 349 349 ||[=#PA0307 PA0307] ||statistic_regions not found in restart data file || [../inipar#statistic_regions statistic_regions] are necessary for the main run to continue. This will happen if the [../inipar inipar] list was altered between precursor and main run. See documentation of [../examples/turbinf tubulent inflow] for detailed information on the use of restart data for precursor runs. || 350 350 ||[=#PA0308 PA0308] ||statistic regions on restart data file differ from the current run \\statistic regions on file = "..." \\statistic regions from run = "..." \\statistic data may be lost! || This message is informative, the run will continue nontheless. This will only happen in case the statistic [../inipar#statistic_regions regions] were changed from precursor to main run. See documentation of [../examples/turbinf tubulent inflow] for detailed information on the use of restart data for precursor runs. || 351 ||[=#PA0309 PA0309] ||inflow profiles not temporally averaged. Averaging will be done now using ... samples. || ||351 ||[=#PA0309 PA0309] ||inflow profiles not temporally averaged. Averaging will be done now using ... samples. || ** || 352 352 ||[=#PA0310 PA0310] ||remote model "..." terminated with terminate_coupled_remote = ... local model "..." has terminate_coupled = ... ||The remote model in a coupled run has been terminated. The reason for the termination is provided by {{{terminate_coupled}}}.\\\\Termination reasons:\\1 model was terminated (unknown reason)\\2 time step has reached minimum limit (see [#PA0312 PA0312])\\3 run will be terminated because it is running out of job cpu limit remaining time (see [#PA0163 PA0163])\\4 run will be terminated due to user settings of {{{dt_restart}}} (see [#PA0164 PA0164])\\5 run will be terminated due to user settings of {{{restart_time}}} (see [#PA0164 PA0164])\\6 unscheduled termination was forced by the user (see [#PA0398 PA0398]) || 353 353 ||[=#PA0311 PA0311] ||number of gridpoints along x or/and y contain illegal factors only factors 8,6,5,4,3,2 are allowed ||In case that [../inipar#fft_method fft_method]='temperton-algorithm', the number of horizontal grid points ([../inipar#nx nx]+1, [../inipar#ny ny]+1) must be composed of prime factors 2,3 and 5. Higher prime factors such as 7 are not allowed. Please ensure that these restrictions are fulfilled or use 'singleton-algorithm' as [../inipar#fft_method fft_method]. || … … 360 360 ||[=#PA0317 PA0317] ||ocean = .F. does not allow coupling_char = ... set by mrun-option "-y" || The mrun option "-y" must not be used for atmosphere runs. The option is only required for ocean precursor runs, which are followed by [../examples/coupled atmosphere-ocean coupled] restart runs. || 361 361 ||[=#PA0318 PA0318] ||inflow_damping_height must be explicitly specified because the inversion height calculated by the prerun is zero ||See [../inipar#inflow_damping_height inflow_damping_height]. || 362 ||[=#PA0319 PA0319] ||section_xy must be <= nz + 1 = ... || ||363 ||[=#PA0320 PA0320] ||section_xz must be <= ny + 1 = ... || ||364 ||[=#PA0321 PA0321] ||section_yz must be <= nx + 1 = ... || ||362 ||[=#PA0319 PA0319] ||section_xy must be <= nz + 1 = ... || ** || 363 ||[=#PA0320 PA0320] ||section_xz must be <= ny + 1 = ... || ** || 364 ||[=#PA0321 PA0321] ||section_yz must be <= nx + 1 = ... || ** || 365 365 ||[=#PA0322 PA0322] ||output of w*q*(0) requires humidity=.TRUE. || Variables connected with humidity, e.g. like the resolved-scale turbulent water flux w*q*, can only be output if the moist version of PALM is used, i.e. if [../inipar#humidity humidity] = '''.TRUE.''' || 366 366 ||[=#PA0323 PA0323] ||output of averaged quantity "..." requires to set a non-zero averaging interval || If 2d or 3d data shall be output as a time average over a certain time interval, the parameter [../d3par#averaging_interval averaging_interval] must be set to a non-zero value. The default is [../d3par#averaging_interval averaging_interval] = 0.0, i.e. by default no averaging is applied to the output variables. ||