grans_obj_LinkHDF5Object Subroutine

private subroutine grans_obj_LinkHDF5Object(this, hdf5)

Links HDF5 Object.

Type Bound

grans_obj

Arguments

Type IntentOptional Attributes Name
class(grans_obj), intent(inout) :: this

GRANS solver

type(hdf5_obj), intent(in), target :: hdf5

HDF5 utility


Source Code

    subroutine grans_obj_LinkHDF5Object(this,hdf5)
      !> Links HDF5 Object.
      implicit none
      class(grans_obj), intent(inout) :: this                                  !! GRANS solver
      type(hdf5_obj),   intent(in),    &
                               target :: hdf5                                  !! HDF5 utility

      this%hdf5 => hdf5

      return
    end subroutine grans_obj_LinkHDF5Object