dallaston2015_has_salt Function

private pure function dallaston2015_has_salt(this) result(has_salt)

Arguments

Type IntentOptional AttributesName
class(dallaston2015_melt), intent(in) :: this

Return Value logical

Whether this formulation of melting contributes terms to the salinity equation of the plume.


Contents


Source Code

  pure function dallaston2015_has_salt(this) result(has_salt)
    class(dallaston2015_melt), intent(in) :: this
    logical                               :: has_salt
      !! Whether this formulation of melting contributes terms to
      !! the salinity equation of the plume.
    has_salt = .true.
  end function dallaston2015_has_salt