Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(ave_one_equation_melt), | intent(in) | :: | this |
The melt rate from the ice into the plume water.
function ave_one_equation_melt_rate(this) result(melt)
class(ave_one_equation_melt), intent(in) :: this
class(scalar_field), pointer :: melt
!! The melt rate from the ice into the plume water.
if (.not. allocated(this%forcing_values)) error stop ('Melt values not calculated')
melt => this%coef2 * this%forcing_values
end function ave_one_equation_melt_rate