Sets the surface tension [N/m^2].
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(domain_type), | intent(inout) | :: | self | Domain instance |
||
real(kind=rk), | intent(in), | dimension(:,:) | :: | surface_tension | Surface tension [N/m^2] |
pure subroutine setSurfaceTension(self,surface_tension)
!! Sets the surface tension [N/m^2].
class(domain_type),intent(inout) :: self
!! Domain instance
real(kind=rk),dimension(:,:),intent(in) :: surface_tension
!! Surface tension [N/m^2]
call self % spectrum % setSurfaceTension(surface_tension)
endsubroutine setSurfaceTension