Changes between Version 6 and Version 7 of doc/app/machine/hlrnIII
- Timestamp:
- Feb 19, 2014 9:14:53 AM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
doc/app/machine/hlrnIII
v6 v7 3 3 * Running remote jobs 4 4 * Fortran issues 5 * parallel NetCDF I/O 5 6 * Output problem with combine_plot_fields 7 \\ 8 6 9 7 10 == Running remote jobs == … … 29 32 }}} 30 33 should appear on the terminal. 34 \\ 31 35 32 36 … … 35 39 The Cray Fortran Compiler (ftn) on HLRNIII is known to be less flexible when it comes to the Fortran code style. In the following you find known issues observed at HLRNIII. 36 40 37 38 === NAMELIST files ===39 41 * It is no longer allowed to use a space character between the variable name of an array (e.g. {{{mask_x_loop}}}) and the bracket "{{{(}}}".\\'''Example:'''\\{{{mask_x_loop (1,:) = 0., 500. ,50.,}}} (old)\\{{{mask_x_loop(1,:) = 0., 500. ,50.,}}} (new). 40 42 41 === Conditional statements (IF-THEN-ELSE) ===42 43 * It is no longer possible to use {{{==}}} or {{{.EQ.}}} for comparison of variables of type LOGICAL.\\'''Example:'''\\{{{IF ( variable == .TRUE. ) THEN}}} is not supported. You must use {{{IF ( variable ) THEN}}} (or {{{IF ( .NOT. variable ) THEN}}}) instead. 44 \\ 45 46 47 == parallel NetCDF I/O 48 * see hints given in the attachments 49 \\ 43 50 44 51