Skip navigation links
(CGNS Documentation Home Page) (Steering Committee Charter) (Overview and Entry-Level Document) (A User's Guide to CGNS) (Mid-Level Library) (Standard Interface Data Structures) (SIDS File Mapping Manual) (CGIO User's Guide) (Parallel CGNS User's Guide) (ADF Implementation) (HDF5 Implementation) (Python Implementation) (CGNS Tools and Utilities)

(General Remarks) (File Operations) (Navigating a CGNS File) (Error Handling) (Structural Nodes) (Descriptors) (Physical Data) (Location and Position) (Auxiliary Data) (Grid Specification) (Solution Data) (Grid Connectivity) (Boundary Conditions) (Equation Specification) (Families) (Time-Dependent Data) (Links)

Links

Functions Modes
ier = cg_link_write(char *nodename, char *filename,
      char *name_in_file);
- w m
ier = cg_is_link(int *path_length); r - m
ier = cg_link_read(char **filename, char **link_path); r - m
call cg_link_write_f(nodename, filename, name_in_file, ier) - w m
call cg_is_link_f(path_length, ier) r - m
call cg_link_read_f(filename, link_path, ier) r - m

Input/Output

    nodename   Name of the link node to create, e.g., GridCoordinates.
filename Name of the linked file, or empty string if the link is within the same file.
name_in_file Path name of the node which the link points to. This can be a simple or a compound name, e.g., Base/Zone 1/GridCoordinates.
path_length Length of the path name of the linked node. The value 0 is returned if the node is not a link.
link_path Path name of the node which the link points to.
ier Error status.

Use cg_goto(_f) to position to a location in the file prior to calling these routines.

When using cg_link_write, the node being linked to does not have to exist when the link is created. However, when the link is used, an error will occur if the linked-to node does not exist.

Only nodes that support child nodes will support links.

It is assumed that the CGNS version for the file containing the link, as determined by the CGNSLibraryVersion_t node, is also applicable to filename, the file containing the linked node.

Memory is allocated by the library for the return values of the C function cg_link_read. This memory should be freed by the user when no longer needed by calling cg_free(filename) and cg_free(link_path).