Returns the surface tension [N/m].
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(domain_type), | intent(in) | :: | self | Domain instance |
Surface tension [N/m]
pure function getSurfaceTension(self) result(surface_tension)
!! Returns the surface tension [N/m].
class(domain_type),intent(in) :: self
!! Domain instance
real(kind=rk),dimension(:,:),allocatable :: surface_tension
!! Surface tension [N/m]
surface_tension = self % spectrum % getSurfaceTension()
endfunction getSurfaceTension