# Butterfly: A Plugin for CFD Analysis (GPL) started by Mostapha Sadeghipour Roudsari # This file is part of Butterfly. # # You should have received a copy of the GNU General Public License # along with Ladybug; If not, see . # # @license GPL-3.0+ """ Create an outlet boundary with uniform pressure value. - Args:ù _velocityVec: Velocity vector. _pressure_: Pressure as a float (default: 0). temperature_: Temperature in degrees celsius. _refLevels_: A tuple of (min, max) values for refinement levels. Returns: outletBoundary: Buttefly outlet boundary. """ ghenv.Component.Name = "Butterfly_Outlet Boundary" ghenv.Component.NickName = "outlet" ghenv.Component.Message = 'VER 0.0.03\nOCT_30_2016' ghenv.Component.Category = "Butterfly" ghenv.Component.SubCategory = "01::Boundary" ghenv.Component.AdditionalHelpFromDocStrings = "1" try: from butterfly.boundarycondition import FixedOutletBoundaryCondition from butterfly.fields import FixedValue except ImportError as e: msg = '\nFailed to import butterfly. Did you install butterfly on your machine?' + \ '\nYou can download the installer file from github: ' + \ 'https://github.com/mostaphaRoudsari/Butterfly/tree/master/plugin/grasshopper/samplefiles' + \ '\nOpen an issue on github if you think this is a bug:' + \ ' https://github.com/mostaphaRoudsari/Butterfly/issues' raise ImportError('{}\n{}'.format(msg, e)) if _velocityVec: _velocityVec = FixedValue(str(tuple(_velocityVec)).replace(',', '')) \ if _velocityVec \ else None _pressure_ = FixedValue(_pressure_) if _pressure_ else None temperature_ = FixedValue(str(temperature_ + 273.15)) if temperature_ \ else None outletBoundary = FixedOutletBoundaryCondition(refLevels=_refLevels_, U=_velocityVec, p=_pressure_, T=temperature_)