Set the units of the ivar-th
variable
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(SELF_DataObj), | intent(inout) | :: | this | |||
integer, | intent(in) | :: | ivar | |||
character, | intent(in) | :: | units |
subroutine SetUnits_DataObj(this,ivar,units)
!! Set the units of the `ivar-th` variable
implicit none
class(SELF_DataObj),intent(inout) :: this
integer,intent(in) :: ivar
character(*),intent(in) :: units
call this%meta(ivar)%SetUnits(units)
endsubroutine SetUnits_DataObj