Changes between Version 6 and Version 7 of doc/app/machine/hlrnIII


Ignore:
Timestamp:
Feb 19, 2014 9:14:53 AM (11 years ago)
Author:
raasch
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • doc/app/machine/hlrnIII

    v6 v7  
    33* Running remote jobs
    44* Fortran issues
     5* parallel NetCDF I/O
    56* Output problem with combine_plot_fields
     7\\
     8
    69
    710== Running remote jobs ==
     
    2932}}}
    3033   should appear on the terminal.
     34\\
    3135
    3236
     
    3539The 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.
    3640
    37 
    38 === NAMELIST files ===
    3941* 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).
    4042
    41 === Conditional statements (IF-THEN-ELSE) ===
    4243* 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\\
    4350
    4451