H5Part
1.6.6
|
Functions | |
INTEGER *8 function | h5bl_3d_get_field_origin (filehandle, name, x, y, z) |
See H5Block3dGetFieldOrigin. | |
INTEGER *8 function | h5bl_3d_get_field_spacing (filehandle, name, x, y, z) |
See H5Block3dGetFieldSpacing. | |
INTEGER *8 function | h5bl_3d_set_field_origin (filehandle, name, x, y, z) |
See H5Block3dSetFieldOrigin. | |
INTEGER *8 function | h5bl_3d_set_field_spacing (filehandle, name, x, y, z) |
See H5Block3dSetFieldSpacing. | |
INTEGER *8 function | h5bl_getfieldattribinfo (filehandle, field_name, idx, attrib_name, attrib_nelem) |
See H5BlockGetFieldAttribInfo. | |
INTEGER *8 function | h5bl_getnfieldattribs (filehandle, field_name) |
See H5BlockGetNumFieldAttribs. | |
INTEGER *8 function | h5bl_readfieldattrib_i8 (filehandle, field_name, attrib_name, attrib_value) |
Read the attribute attrib_name from the field field_name at the current timestep, and store the int64 value in attrib_value . | |
INTEGER *8 function | h5bl_readfieldattrib_r8 (filehandle, field_name, attrib_name, attrib_value) |
Read the attribute attrib_name from the field field_name at the current timestep, and store the float64 value in attrib_value . | |
INTEGER *8 function | h5bl_readfieldattrib_string (filehandle, field_name, attrib_name, attrib_value) |
Read the attribute attrib_name from the field field_name at the current timestep, and store the string value in attrib_value . | |
INTEGER *8 function | h5bl_writefieldattrib_i4 (filehandle, field_name, attrib_name, attrib_value, attrib_nelem) |
See H5BlockWriteFieldAttribInt32. | |
INTEGER *8 function | h5bl_writefieldattrib_i8 (filehandle, field_name, attrib_name, attrib_value, attrib_nelem) |
See H5BlockWriteFieldAttribInt64. | |
INTEGER *8 function | h5bl_writefieldattrib_r4 (filehandle, field_name, attrib_name, attrib_value, attrib_nelem) |
See H5BlockWriteFieldAttribFloat32. | |
INTEGER *8 function | h5bl_writefieldattrib_r8 (filehandle, field_name, attrib_name, attrib_value, attrib_nelem) |
See H5BlockWriteFieldAttribFloat64. | |
INTEGER *8 function | h5bl_writefieldattrib_string (filehandle, field_name, attrib_name, attrib_value) |
See H5BlockWriteFieldAttribString. |
INTEGER*8 function h5bl_3d_get_field_origin | ( | INTEGER*8, intent(in) | filehandle, |
CHARACTER(LEN=*), intent(in) | name, | ||
REAL*8, intent(out) | x, | ||
REAL*8, intent(out) | y, | ||
REAL*8, intent(out) | z | ||
) |
INTEGER*8 function h5bl_3d_get_field_spacing | ( | INTEGER*8, intent(in) | filehandle, |
CHARACTER(LEN=*), intent(in) | name, | ||
REAL*8, intent(out) | x, | ||
REAL*8, intent(out) | y, | ||
REAL*8, intent(out) | z | ||
) |
INTEGER*8 function h5bl_3d_set_field_origin | ( | INTEGER*8, intent(in) | filehandle, |
CHARACTER(LEN=*), intent(in) | name, | ||
REAL*8, intent(in) | x, | ||
REAL*8, intent(in) | y, | ||
REAL*8, intent(in) | z | ||
) |
INTEGER*8 function h5bl_3d_set_field_spacing | ( | INTEGER*8, intent(in) | filehandle, |
CHARACTER(LEN=*), intent(in) | name, | ||
REAL*8, intent(in) | x, | ||
REAL*8, intent(in) | y, | ||
REAL*8, intent(in) | z | ||
) |
INTEGER*8 function h5bl_getfieldattribinfo | ( | INTEGER*8, intent(in) | filehandle, |
CHARACTER(LEN=*), intent(in) | field_name, | ||
INTEGER*8, intent(in) | idx, | ||
CHARACTER(LEN=*), intent(out) | attrib_name, | ||
INTEGER*8, intent(out) | attrib_nelem | ||
) |
See H5BlockGetFieldAttribInfo.
INTEGER*8 function h5bl_getnfieldattribs | ( | INTEGER*8, intent(in) | filehandle, |
CHARACTER(LEN=*), intent(in) | field_name | ||
) |
See H5BlockGetNumFieldAttribs.
INTEGER*8 function h5bl_readfieldattrib_i8 | ( | INTEGER*8, intent(in) | filehandle, |
CHARACTER(LEN=*), intent(in) | field_name, | ||
CHARACTER(LEN=*), intent(in) | attrib_name, | ||
INTEGER*8, dimension(*), intent(out) | attrib_value | ||
) |
Read the attribute attrib_name
from the field field_name
at the current timestep, and store the int64 value in attrib_value
.
INTEGER*8 function h5bl_readfieldattrib_r8 | ( | INTEGER*8, intent(in) | filehandle, |
CHARACTER(LEN=*), intent(in) | field_name, | ||
CHARACTER(LEN=*), intent(in) | attrib_name, | ||
REAL*8, dimension(*), intent(out) | attrib_value | ||
) |
Read the attribute attrib_name
from the field field_name
at the current timestep, and store the float64 value in attrib_value
.
INTEGER*8 function h5bl_readfieldattrib_string | ( | INTEGER*8, intent(in) | filehandle, |
CHARACTER(LEN=*), intent(in) | field_name, | ||
CHARACTER(LEN=*), intent(in) | attrib_name, | ||
CHARACTER(LEN=*), intent(in) | attrib_value | ||
) |
Read the attribute attrib_name
from the field field_name
at the current timestep, and store the string value in attrib_value
.
INTEGER*8 function h5bl_writefieldattrib_i4 | ( | INTEGER*8, intent(in) | filehandle, |
CHARACTER(LEN=*), intent(in) | field_name, | ||
CHARACTER(LEN=*), intent(in) | attrib_name, | ||
INTEGER*4, dimension(*), intent(in) | attrib_value, | ||
INTEGER*8, intent(in) | attrib_nelem | ||
) |
See H5BlockWriteFieldAttribInt32.
[in] | filehandle | the handle returned at file open |
[in] | field_name | the name of the field |
[in] | attrib_name | the name of the attribute |
[in] | attrib_value | the array of data to write into the attribute |
[in] | attrib_nelem | the number of elements in the array |
INTEGER*8 function h5bl_writefieldattrib_i8 | ( | INTEGER*8, intent(in) | filehandle, |
CHARACTER(LEN=*), intent(in) | field_name, | ||
CHARACTER(LEN=*), intent(in) | attrib_name, | ||
INTEGER*8, dimension(*), intent(in) | attrib_value, | ||
INTEGER*8, intent(in) | attrib_nelem | ||
) |
See H5BlockWriteFieldAttribInt64.
[in] | filehandle | the handle returned at file open |
[in] | field_name | the name of the field |
[in] | attrib_name | the name of the attribute |
[in] | attrib_value | the array of data to write into the attribute |
[in] | attrib_nelem | the number of elements in the array |
INTEGER*8 function h5bl_writefieldattrib_r4 | ( | INTEGER*8, intent(in) | filehandle, |
CHARACTER(LEN=*), intent(in) | field_name, | ||
CHARACTER(LEN=*), intent(in) | attrib_name, | ||
REAL*4, dimension(*), intent(in) | attrib_value, | ||
INTEGER*8, intent(in) | attrib_nelem | ||
) |
See H5BlockWriteFieldAttribFloat32.
[in] | filehandle | the handle returned at file open |
[in] | field_name | the name of the field |
[in] | attrib_name | the name of the attribute |
[in] | attrib_value | the array of data to write into the attribute |
[in] | attrib_nelem | the number of elements in the array |
INTEGER*8 function h5bl_writefieldattrib_r8 | ( | INTEGER*8, intent(in) | filehandle, |
CHARACTER(LEN=*), intent(in) | field_name, | ||
CHARACTER(LEN=*), intent(in) | attrib_name, | ||
REAL*8, dimension(*), intent(in) | attrib_value, | ||
INTEGER*8, intent(in) | attrib_nelem | ||
) |
See H5BlockWriteFieldAttribFloat64.
[in] | filehandle | the handle returned at file open |
[in] | field_name | the name of the field |
[in] | attrib_name | the name of the attribute |
[in] | attrib_value | the array of data to write into the attribute |
[in] | attrib_nelem | the number of elements in the array |
INTEGER*8 function h5bl_writefieldattrib_string | ( | INTEGER*8, intent(in) | filehandle, |
CHARACTER(LEN=*), intent(in) | field_name, | ||
CHARACTER(LEN=*), intent(in) | attrib_name, | ||
CHARACTER(LEN=*), intent(in) | attrib_value | ||
) |
See H5BlockWriteFieldAttribString.