cdifs_obj_LinkHDF5Object Subroutine

private subroutine cdifs_obj_LinkHDF5Object(this, hdf5)

Links HDF5 Object.

Type Bound

cdifs_obj

Arguments

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

CDIFS solver

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

HDF5 utility


Source Code

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

      this%hdf5     => hdf5

      return
    end subroutine cdifs_obj_LinkHDF5Object