body_hash
stringlengths
64
64
body
stringlengths
23
109k
docstring
stringlengths
1
57k
path
stringlengths
4
198
name
stringlengths
1
115
repository_name
stringlengths
7
111
repository_stars
float64
0
191k
lang
stringclasses
1 value
body_without_docstring
stringlengths
14
108k
unified
stringlengths
45
133k
97d8c2ff053f37ee46f2ed0d10a5f2b4edf1ceb80a6d75e07756ec0437342560
@pytest.fixture(scope='session') def network_id(): 'Integer network ID hard-coded to 50 for Ganache' return NetworkId.GANACHE.value
Integer network ID hard-coded to 50 for Ganache
tests/conftest.py
network_id
DeFi-Coder-News-Letter/StormSurge-pydex
28
python
@pytest.fixture(scope='session') def network_id(): return NetworkId.GANACHE.value
@pytest.fixture(scope='session') def network_id(): return NetworkId.GANACHE.value<|docstring|>Integer network ID hard-coded to 50 for Ganache<|endoftext|>
276b50d2f63626f7e82406bfb9011e60e2d3ed252f2ac5524356ef36acd5b1c9
@pytest.fixture(scope='session') def exchange_address(network_id): 'String address of the 0x Exchange contract on provided network_id' return NETWORK_TO_ADDRESSES[NetworkId(int(network_id))].exchange
String address of the 0x Exchange contract on provided network_id
tests/conftest.py
exchange_address
DeFi-Coder-News-Letter/StormSurge-pydex
28
python
@pytest.fixture(scope='session') def exchange_address(network_id): return NETWORK_TO_ADDRESSES[NetworkId(int(network_id))].exchange
@pytest.fixture(scope='session') def exchange_address(network_id): return NETWORK_TO_ADDRESSES[NetworkId(int(network_id))].exchange<|docstring|>String address of the 0x Exchange contract on provided network_id<|endoftext|>
e790a0f47808af7416849669af8d994434486287802fa7729aa64907bccbde2c
@pytest.fixture(scope='session') def web3_rpc_url(): 'String url of Web3 RPC service\n hard-coded to default local Ganache port 8445\n ' return 'http://127.0.0.1:8545'
String url of Web3 RPC service hard-coded to default local Ganache port 8445
tests/conftest.py
web3_rpc_url
DeFi-Coder-News-Letter/StormSurge-pydex
28
python
@pytest.fixture(scope='session') def web3_rpc_url(): 'String url of Web3 RPC service\n hard-coded to default local Ganache port 8445\n ' return 'http://127.0.0.1:8545'
@pytest.fixture(scope='session') def web3_rpc_url(): 'String url of Web3 RPC service\n hard-coded to default local Ganache port 8445\n ' return 'http://127.0.0.1:8545'<|docstring|>String url of Web3 RPC service hard-coded to default local Ganache port 8445<|endoftext|>
38741cdd997573f939f03e3ad6c48ce71fa200658c06d7219227d2fbd37f529c
@pytest.fixture(scope='session') def private_key(): 'String private key hard-coded as first account on 0x ganache snapshot\n mnemonic = "concert load couple harbor equip island argue ramp clarify fence smart topic"\n private_key = "f2f48ee19680706196e2e339e5da3491186e0c4c5030670656b0e0164837257d"\n ' return 'f2f48ee19680706196e2e339e5da3491186e0c4c5030670656b0e0164837257d'
String private key hard-coded as first account on 0x ganache snapshot mnemonic = "concert load couple harbor equip island argue ramp clarify fence smart topic" private_key = "f2f48ee19680706196e2e339e5da3491186e0c4c5030670656b0e0164837257d"
tests/conftest.py
private_key
DeFi-Coder-News-Letter/StormSurge-pydex
28
python
@pytest.fixture(scope='session') def private_key(): 'String private key hard-coded as first account on 0x ganache snapshot\n mnemonic = "concert load couple harbor equip island argue ramp clarify fence smart topic"\n private_key = "f2f48ee19680706196e2e339e5da3491186e0c4c5030670656b0e0164837257d"\n ' return 'f2f48ee19680706196e2e339e5da3491186e0c4c5030670656b0e0164837257d'
@pytest.fixture(scope='session') def private_key(): 'String private key hard-coded as first account on 0x ganache snapshot\n mnemonic = "concert load couple harbor equip island argue ramp clarify fence smart topic"\n private_key = "f2f48ee19680706196e2e339e5da3491186e0c4c5030670656b0e0164837257d"\n ' return 'f2f48ee19680706196e2e339e5da3491186e0c4c5030670656b0e0164837257d'<|docstring|>String private key hard-coded as first account on 0x ganache snapshot mnemonic = "concert load couple harbor equip island argue ramp clarify fence smart topic" private_key = "f2f48ee19680706196e2e339e5da3491186e0c4c5030670656b0e0164837257d"<|endoftext|>
87137026949204186a5169bc85f73eaf2eba694144bfa704dfe40c90a21cc662
@pytest.fixture(scope='session') def test_app(network_id): 'PyDex flask app instance with fresh database' temp_db_path = os.path.join(os.getcwd(), '{}_pydex.db'.format(tempfile.mktemp(dir='.tmp'))) base_dir = os.path.dirname(temp_db_path) if (not os.path.exists(base_dir)): os.makedirs(base_dir) LOGGER.info('temp_db_path: %s', temp_db_path) class PydexTestConfig(PydexBaseConfig): 'Test Config' TESTING = True SQLALCHEMY_DATABASE_URI = 'sqlite:///{}'.format(temp_db_path) PYDEX_NETWORK_ID = network_id app = create_app(PydexTestConfig) ctx = app.app_context() ctx.push() (yield app) ctx.pop() LOGGER.info('Deleting temp_pdb=%s', temp_db_path) os.unlink(temp_db_path)
PyDex flask app instance with fresh database
tests/conftest.py
test_app
DeFi-Coder-News-Letter/StormSurge-pydex
28
python
@pytest.fixture(scope='session') def test_app(network_id): temp_db_path = os.path.join(os.getcwd(), '{}_pydex.db'.format(tempfile.mktemp(dir='.tmp'))) base_dir = os.path.dirname(temp_db_path) if (not os.path.exists(base_dir)): os.makedirs(base_dir) LOGGER.info('temp_db_path: %s', temp_db_path) class PydexTestConfig(PydexBaseConfig): 'Test Config' TESTING = True SQLALCHEMY_DATABASE_URI = 'sqlite:///{}'.format(temp_db_path) PYDEX_NETWORK_ID = network_id app = create_app(PydexTestConfig) ctx = app.app_context() ctx.push() (yield app) ctx.pop() LOGGER.info('Deleting temp_pdb=%s', temp_db_path) os.unlink(temp_db_path)
@pytest.fixture(scope='session') def test_app(network_id): temp_db_path = os.path.join(os.getcwd(), '{}_pydex.db'.format(tempfile.mktemp(dir='.tmp'))) base_dir = os.path.dirname(temp_db_path) if (not os.path.exists(base_dir)): os.makedirs(base_dir) LOGGER.info('temp_db_path: %s', temp_db_path) class PydexTestConfig(PydexBaseConfig): 'Test Config' TESTING = True SQLALCHEMY_DATABASE_URI = 'sqlite:///{}'.format(temp_db_path) PYDEX_NETWORK_ID = network_id app = create_app(PydexTestConfig) ctx = app.app_context() ctx.push() (yield app) ctx.pop() LOGGER.info('Deleting temp_pdb=%s', temp_db_path) os.unlink(temp_db_path)<|docstring|>PyDex flask app instance with fresh database<|endoftext|>
8820cb90beae3cdcd6456b02cc994481afeb0172eaf3b3e5770f2957021a0e71
@pytest.fixture(scope='session') def test_client(test_app): 'Test client instance associate with test app' return test_app.test_client()
Test client instance associate with test app
tests/conftest.py
test_client
DeFi-Coder-News-Letter/StormSurge-pydex
28
python
@pytest.fixture(scope='session') def test_client(test_app): return test_app.test_client()
@pytest.fixture(scope='session') def test_client(test_app): return test_app.test_client()<|docstring|>Test client instance associate with test app<|endoftext|>
a7ed492c187eab0210aa4c5d5924632d0c041731c6838598f4a220db6264ecc2
@pytest.fixture(scope='session') def pydex_client(network_id, web3_rpc_url, private_key): 'pyDexClient instance configured with the private key' return PyDexClient(network_id=network_id, web3_rpc_url=web3_rpc_url, private_key=private_key)
pyDexClient instance configured with the private key
tests/conftest.py
pydex_client
DeFi-Coder-News-Letter/StormSurge-pydex
28
python
@pytest.fixture(scope='session') def pydex_client(network_id, web3_rpc_url, private_key): return PyDexClient(network_id=network_id, web3_rpc_url=web3_rpc_url, private_key=private_key)
@pytest.fixture(scope='session') def pydex_client(network_id, web3_rpc_url, private_key): return PyDexClient(network_id=network_id, web3_rpc_url=web3_rpc_url, private_key=private_key)<|docstring|>pyDexClient instance configured with the private key<|endoftext|>
d835ab32c45b06d20b50793bc5fa5134212ad50458f8fa6109040a92a42da410
@pytest.fixture(scope='session') def make_veth_signed_order(asset_infos, pydex_client, exchange_address): 'Convenience function for creating a new instance of a signed order' def _make_veth_signed_order(asset_type, qty, price, side, maker_address=pydex_client.account_address, expiration_time_seconds=600, maker_fee='0', taker_fee='0', salt='1234567890', taker_address=NULL_ADDRESS, fee_recipient_address=NULL_ADDRESS, sender_address=NULL_ADDRESS, exchange_address=exchange_address, pydex_client=pydex_client): "Convenience function for making valid orders to buy or sell\n SHORT or LONG assets against VETH.\n\n Keyword arguments:\n asset_type - - str from {'LONG', 'SHORT'} to index into `full_asset_set_data`\n qty - - how much of the ticker asset you want to buy against VETH\n price - - Always in units of LONG or SHORT asset per VETH\n side - - str from {'BUY', 'SELL'}\n maker_address - - your address(defaults to MY_ADDRESS)\n " asset_data = asset_infos.FULL_SET_ASSET_DATA[asset_type] if (side == 'BUY'): maker_asset_data = asset_infos.VETH_ASSET_DATA taker_asset_data = asset_data maker_amount = to_base_unit_amount((qty * price)) taker_amount = to_base_unit_amount(qty) elif (side == 'SELL'): maker_asset_data = asset_data taker_asset_data = asset_infos.VETH_ASSET_DATA maker_amount = to_base_unit_amount(qty) taker_amount = to_base_unit_amount((qty * price)) else: raise Exception("side must be one of {'BUY', 'SELL'}") if (salt is None): salt = '{:.0f}'.format(Decimal(random.uniform(0, 9223372036854775807))) if (not isinstance(maker_fee, str)): maker_fee = to_base_unit_amount(maker_fee) if (not isinstance(taker_fee, str)): taker_fee = to_base_unit_amount(taker_fee) expiration_time_seconds = int((time.time() + expiration_time_seconds)) order = SignedOrder() order.maker_address = maker_address order.taker_address = taker_address order.fee_recipient_address = fee_recipient_address order.sender_address = sender_address order.maker_asset_amount = maker_amount order.taker_asset_amount = taker_amount order.maker_fee = '{:.0f}'.format(Decimal(maker_fee)) order.taker_fee = '{:.0f}'.format(Decimal(taker_fee)) order.expiration_time_seconds = expiration_time_seconds order.salt = salt order.maker_asset_data = maker_asset_data order.taker_asset_data = taker_asset_data order.exchange_address = exchange_address order.signature = pydex_client.sign_hash_zx_compat(order.update().hash) assert_valid(order.to_json(), '/signedOrderSchema') return order return _make_veth_signed_order
Convenience function for creating a new instance of a signed order
tests/conftest.py
make_veth_signed_order
DeFi-Coder-News-Letter/StormSurge-pydex
28
python
@pytest.fixture(scope='session') def make_veth_signed_order(asset_infos, pydex_client, exchange_address): def _make_veth_signed_order(asset_type, qty, price, side, maker_address=pydex_client.account_address, expiration_time_seconds=600, maker_fee='0', taker_fee='0', salt='1234567890', taker_address=NULL_ADDRESS, fee_recipient_address=NULL_ADDRESS, sender_address=NULL_ADDRESS, exchange_address=exchange_address, pydex_client=pydex_client): "Convenience function for making valid orders to buy or sell\n SHORT or LONG assets against VETH.\n\n Keyword arguments:\n asset_type - - str from {'LONG', 'SHORT'} to index into `full_asset_set_data`\n qty - - how much of the ticker asset you want to buy against VETH\n price - - Always in units of LONG or SHORT asset per VETH\n side - - str from {'BUY', 'SELL'}\n maker_address - - your address(defaults to MY_ADDRESS)\n " asset_data = asset_infos.FULL_SET_ASSET_DATA[asset_type] if (side == 'BUY'): maker_asset_data = asset_infos.VETH_ASSET_DATA taker_asset_data = asset_data maker_amount = to_base_unit_amount((qty * price)) taker_amount = to_base_unit_amount(qty) elif (side == 'SELL'): maker_asset_data = asset_data taker_asset_data = asset_infos.VETH_ASSET_DATA maker_amount = to_base_unit_amount(qty) taker_amount = to_base_unit_amount((qty * price)) else: raise Exception("side must be one of {'BUY', 'SELL'}") if (salt is None): salt = '{:.0f}'.format(Decimal(random.uniform(0, 9223372036854775807))) if (not isinstance(maker_fee, str)): maker_fee = to_base_unit_amount(maker_fee) if (not isinstance(taker_fee, str)): taker_fee = to_base_unit_amount(taker_fee) expiration_time_seconds = int((time.time() + expiration_time_seconds)) order = SignedOrder() order.maker_address = maker_address order.taker_address = taker_address order.fee_recipient_address = fee_recipient_address order.sender_address = sender_address order.maker_asset_amount = maker_amount order.taker_asset_amount = taker_amount order.maker_fee = '{:.0f}'.format(Decimal(maker_fee)) order.taker_fee = '{:.0f}'.format(Decimal(taker_fee)) order.expiration_time_seconds = expiration_time_seconds order.salt = salt order.maker_asset_data = maker_asset_data order.taker_asset_data = taker_asset_data order.exchange_address = exchange_address order.signature = pydex_client.sign_hash_zx_compat(order.update().hash) assert_valid(order.to_json(), '/signedOrderSchema') return order return _make_veth_signed_order
@pytest.fixture(scope='session') def make_veth_signed_order(asset_infos, pydex_client, exchange_address): def _make_veth_signed_order(asset_type, qty, price, side, maker_address=pydex_client.account_address, expiration_time_seconds=600, maker_fee='0', taker_fee='0', salt='1234567890', taker_address=NULL_ADDRESS, fee_recipient_address=NULL_ADDRESS, sender_address=NULL_ADDRESS, exchange_address=exchange_address, pydex_client=pydex_client): "Convenience function for making valid orders to buy or sell\n SHORT or LONG assets against VETH.\n\n Keyword arguments:\n asset_type - - str from {'LONG', 'SHORT'} to index into `full_asset_set_data`\n qty - - how much of the ticker asset you want to buy against VETH\n price - - Always in units of LONG or SHORT asset per VETH\n side - - str from {'BUY', 'SELL'}\n maker_address - - your address(defaults to MY_ADDRESS)\n " asset_data = asset_infos.FULL_SET_ASSET_DATA[asset_type] if (side == 'BUY'): maker_asset_data = asset_infos.VETH_ASSET_DATA taker_asset_data = asset_data maker_amount = to_base_unit_amount((qty * price)) taker_amount = to_base_unit_amount(qty) elif (side == 'SELL'): maker_asset_data = asset_data taker_asset_data = asset_infos.VETH_ASSET_DATA maker_amount = to_base_unit_amount(qty) taker_amount = to_base_unit_amount((qty * price)) else: raise Exception("side must be one of {'BUY', 'SELL'}") if (salt is None): salt = '{:.0f}'.format(Decimal(random.uniform(0, 9223372036854775807))) if (not isinstance(maker_fee, str)): maker_fee = to_base_unit_amount(maker_fee) if (not isinstance(taker_fee, str)): taker_fee = to_base_unit_amount(taker_fee) expiration_time_seconds = int((time.time() + expiration_time_seconds)) order = SignedOrder() order.maker_address = maker_address order.taker_address = taker_address order.fee_recipient_address = fee_recipient_address order.sender_address = sender_address order.maker_asset_amount = maker_amount order.taker_asset_amount = taker_amount order.maker_fee = '{:.0f}'.format(Decimal(maker_fee)) order.taker_fee = '{:.0f}'.format(Decimal(taker_fee)) order.expiration_time_seconds = expiration_time_seconds order.salt = salt order.maker_asset_data = maker_asset_data order.taker_asset_data = taker_asset_data order.exchange_address = exchange_address order.signature = pydex_client.sign_hash_zx_compat(order.update().hash) assert_valid(order.to_json(), '/signedOrderSchema') return order return _make_veth_signed_order<|docstring|>Convenience function for creating a new instance of a signed order<|endoftext|>
e5d0fcd66a52db39e9587cdba820ac2b92bd88c25620f0d963377351c5adee8d
def _make_veth_signed_order(asset_type, qty, price, side, maker_address=pydex_client.account_address, expiration_time_seconds=600, maker_fee='0', taker_fee='0', salt='1234567890', taker_address=NULL_ADDRESS, fee_recipient_address=NULL_ADDRESS, sender_address=NULL_ADDRESS, exchange_address=exchange_address, pydex_client=pydex_client): "Convenience function for making valid orders to buy or sell\n SHORT or LONG assets against VETH.\n\n Keyword arguments:\n asset_type - - str from {'LONG', 'SHORT'} to index into `full_asset_set_data`\n qty - - how much of the ticker asset you want to buy against VETH\n price - - Always in units of LONG or SHORT asset per VETH\n side - - str from {'BUY', 'SELL'}\n maker_address - - your address(defaults to MY_ADDRESS)\n " asset_data = asset_infos.FULL_SET_ASSET_DATA[asset_type] if (side == 'BUY'): maker_asset_data = asset_infos.VETH_ASSET_DATA taker_asset_data = asset_data maker_amount = to_base_unit_amount((qty * price)) taker_amount = to_base_unit_amount(qty) elif (side == 'SELL'): maker_asset_data = asset_data taker_asset_data = asset_infos.VETH_ASSET_DATA maker_amount = to_base_unit_amount(qty) taker_amount = to_base_unit_amount((qty * price)) else: raise Exception("side must be one of {'BUY', 'SELL'}") if (salt is None): salt = '{:.0f}'.format(Decimal(random.uniform(0, 9223372036854775807))) if (not isinstance(maker_fee, str)): maker_fee = to_base_unit_amount(maker_fee) if (not isinstance(taker_fee, str)): taker_fee = to_base_unit_amount(taker_fee) expiration_time_seconds = int((time.time() + expiration_time_seconds)) order = SignedOrder() order.maker_address = maker_address order.taker_address = taker_address order.fee_recipient_address = fee_recipient_address order.sender_address = sender_address order.maker_asset_amount = maker_amount order.taker_asset_amount = taker_amount order.maker_fee = '{:.0f}'.format(Decimal(maker_fee)) order.taker_fee = '{:.0f}'.format(Decimal(taker_fee)) order.expiration_time_seconds = expiration_time_seconds order.salt = salt order.maker_asset_data = maker_asset_data order.taker_asset_data = taker_asset_data order.exchange_address = exchange_address order.signature = pydex_client.sign_hash_zx_compat(order.update().hash) assert_valid(order.to_json(), '/signedOrderSchema') return order
Convenience function for making valid orders to buy or sell SHORT or LONG assets against VETH. Keyword arguments: asset_type - - str from {'LONG', 'SHORT'} to index into `full_asset_set_data` qty - - how much of the ticker asset you want to buy against VETH price - - Always in units of LONG or SHORT asset per VETH side - - str from {'BUY', 'SELL'} maker_address - - your address(defaults to MY_ADDRESS)
tests/conftest.py
_make_veth_signed_order
DeFi-Coder-News-Letter/StormSurge-pydex
28
python
def _make_veth_signed_order(asset_type, qty, price, side, maker_address=pydex_client.account_address, expiration_time_seconds=600, maker_fee='0', taker_fee='0', salt='1234567890', taker_address=NULL_ADDRESS, fee_recipient_address=NULL_ADDRESS, sender_address=NULL_ADDRESS, exchange_address=exchange_address, pydex_client=pydex_client): "Convenience function for making valid orders to buy or sell\n SHORT or LONG assets against VETH.\n\n Keyword arguments:\n asset_type - - str from {'LONG', 'SHORT'} to index into `full_asset_set_data`\n qty - - how much of the ticker asset you want to buy against VETH\n price - - Always in units of LONG or SHORT asset per VETH\n side - - str from {'BUY', 'SELL'}\n maker_address - - your address(defaults to MY_ADDRESS)\n " asset_data = asset_infos.FULL_SET_ASSET_DATA[asset_type] if (side == 'BUY'): maker_asset_data = asset_infos.VETH_ASSET_DATA taker_asset_data = asset_data maker_amount = to_base_unit_amount((qty * price)) taker_amount = to_base_unit_amount(qty) elif (side == 'SELL'): maker_asset_data = asset_data taker_asset_data = asset_infos.VETH_ASSET_DATA maker_amount = to_base_unit_amount(qty) taker_amount = to_base_unit_amount((qty * price)) else: raise Exception("side must be one of {'BUY', 'SELL'}") if (salt is None): salt = '{:.0f}'.format(Decimal(random.uniform(0, 9223372036854775807))) if (not isinstance(maker_fee, str)): maker_fee = to_base_unit_amount(maker_fee) if (not isinstance(taker_fee, str)): taker_fee = to_base_unit_amount(taker_fee) expiration_time_seconds = int((time.time() + expiration_time_seconds)) order = SignedOrder() order.maker_address = maker_address order.taker_address = taker_address order.fee_recipient_address = fee_recipient_address order.sender_address = sender_address order.maker_asset_amount = maker_amount order.taker_asset_amount = taker_amount order.maker_fee = '{:.0f}'.format(Decimal(maker_fee)) order.taker_fee = '{:.0f}'.format(Decimal(taker_fee)) order.expiration_time_seconds = expiration_time_seconds order.salt = salt order.maker_asset_data = maker_asset_data order.taker_asset_data = taker_asset_data order.exchange_address = exchange_address order.signature = pydex_client.sign_hash_zx_compat(order.update().hash) assert_valid(order.to_json(), '/signedOrderSchema') return order
def _make_veth_signed_order(asset_type, qty, price, side, maker_address=pydex_client.account_address, expiration_time_seconds=600, maker_fee='0', taker_fee='0', salt='1234567890', taker_address=NULL_ADDRESS, fee_recipient_address=NULL_ADDRESS, sender_address=NULL_ADDRESS, exchange_address=exchange_address, pydex_client=pydex_client): "Convenience function for making valid orders to buy or sell\n SHORT or LONG assets against VETH.\n\n Keyword arguments:\n asset_type - - str from {'LONG', 'SHORT'} to index into `full_asset_set_data`\n qty - - how much of the ticker asset you want to buy against VETH\n price - - Always in units of LONG or SHORT asset per VETH\n side - - str from {'BUY', 'SELL'}\n maker_address - - your address(defaults to MY_ADDRESS)\n " asset_data = asset_infos.FULL_SET_ASSET_DATA[asset_type] if (side == 'BUY'): maker_asset_data = asset_infos.VETH_ASSET_DATA taker_asset_data = asset_data maker_amount = to_base_unit_amount((qty * price)) taker_amount = to_base_unit_amount(qty) elif (side == 'SELL'): maker_asset_data = asset_data taker_asset_data = asset_infos.VETH_ASSET_DATA maker_amount = to_base_unit_amount(qty) taker_amount = to_base_unit_amount((qty * price)) else: raise Exception("side must be one of {'BUY', 'SELL'}") if (salt is None): salt = '{:.0f}'.format(Decimal(random.uniform(0, 9223372036854775807))) if (not isinstance(maker_fee, str)): maker_fee = to_base_unit_amount(maker_fee) if (not isinstance(taker_fee, str)): taker_fee = to_base_unit_amount(taker_fee) expiration_time_seconds = int((time.time() + expiration_time_seconds)) order = SignedOrder() order.maker_address = maker_address order.taker_address = taker_address order.fee_recipient_address = fee_recipient_address order.sender_address = sender_address order.maker_asset_amount = maker_amount order.taker_asset_amount = taker_amount order.maker_fee = '{:.0f}'.format(Decimal(maker_fee)) order.taker_fee = '{:.0f}'.format(Decimal(taker_fee)) order.expiration_time_seconds = expiration_time_seconds order.salt = salt order.maker_asset_data = maker_asset_data order.taker_asset_data = taker_asset_data order.exchange_address = exchange_address order.signature = pydex_client.sign_hash_zx_compat(order.update().hash) assert_valid(order.to_json(), '/signedOrderSchema') return order<|docstring|>Convenience function for making valid orders to buy or sell SHORT or LONG assets against VETH. Keyword arguments: asset_type - - str from {'LONG', 'SHORT'} to index into `full_asset_set_data` qty - - how much of the ticker asset you want to buy against VETH price - - Always in units of LONG or SHORT asset per VETH side - - str from {'BUY', 'SELL'} maker_address - - your address(defaults to MY_ADDRESS)<|endoftext|>
72d3540501f6bdd215ace11d1f24b45817fae92cff464def834960a3b9fee81f
def toTimeAgo(reldate): ' creates string from relativedelta.\n NOTE: no type checking and expects relativedelta to be positive (could be negative).\n FIXME: fix above\n ' reldate_str = 'ago.' if (reldate.years > 0): reldate_str = ((str(reldate.years) + ' years ') + reldate_str) elif (reldate.months > 0): reldate_str = ((str(reldate.months) + ' months ') + reldate_str) elif (reldate.days > 0): reldate_str = ((str(reldate.days) + ' days ') + reldate_str) elif (reldate.hours > 0): reldate_str = ((str(reldate.hours) + ' hrs ') + reldate_str) else: reldate_str = ((str(reldate.minutes) + ' mins ') + reldate_str) return reldate_str
creates string from relativedelta. NOTE: no type checking and expects relativedelta to be positive (could be negative). FIXME: fix above
docker/app/app/backend/apps/services/utils.py
toTimeAgo
JTarball/tetherbox
1
python
def toTimeAgo(reldate): ' creates string from relativedelta.\n NOTE: no type checking and expects relativedelta to be positive (could be negative).\n FIXME: fix above\n ' reldate_str = 'ago.' if (reldate.years > 0): reldate_str = ((str(reldate.years) + ' years ') + reldate_str) elif (reldate.months > 0): reldate_str = ((str(reldate.months) + ' months ') + reldate_str) elif (reldate.days > 0): reldate_str = ((str(reldate.days) + ' days ') + reldate_str) elif (reldate.hours > 0): reldate_str = ((str(reldate.hours) + ' hrs ') + reldate_str) else: reldate_str = ((str(reldate.minutes) + ' mins ') + reldate_str) return reldate_str
def toTimeAgo(reldate): ' creates string from relativedelta.\n NOTE: no type checking and expects relativedelta to be positive (could be negative).\n FIXME: fix above\n ' reldate_str = 'ago.' if (reldate.years > 0): reldate_str = ((str(reldate.years) + ' years ') + reldate_str) elif (reldate.months > 0): reldate_str = ((str(reldate.months) + ' months ') + reldate_str) elif (reldate.days > 0): reldate_str = ((str(reldate.days) + ' days ') + reldate_str) elif (reldate.hours > 0): reldate_str = ((str(reldate.hours) + ' hrs ') + reldate_str) else: reldate_str = ((str(reldate.minutes) + ' mins ') + reldate_str) return reldate_str<|docstring|>creates string from relativedelta. NOTE: no type checking and expects relativedelta to be positive (could be negative). FIXME: fix above<|endoftext|>
fb217c6a228fe1504ba621a65fafeee345791432ba8e2514ef5930ad46f77192
def beautifyData(number): ' Turns number into beautiful string.\n e.g.\n 1,000,000,000 ---> 1G\n 1,000,000 ---> 100M\n 10,000 ---> 10K\n 10 ---> 10\n ' if (not isinstance(number, (int, long, float))): return 'NAN' if (number > 1000000000): return (str((number / 1000000000)) + 'G') elif (number > 1000000): return (str((number / 1000000)) + 'M') elif (number > 1000): return (str((number / 1000)) + 'K') else: return str(number)
Turns number into beautiful string. e.g. 1,000,000,000 ---> 1G 1,000,000 ---> 100M 10,000 ---> 10K 10 ---> 10
docker/app/app/backend/apps/services/utils.py
beautifyData
JTarball/tetherbox
1
python
def beautifyData(number): ' Turns number into beautiful string.\n e.g.\n 1,000,000,000 ---> 1G\n 1,000,000 ---> 100M\n 10,000 ---> 10K\n 10 ---> 10\n ' if (not isinstance(number, (int, long, float))): return 'NAN' if (number > 1000000000): return (str((number / 1000000000)) + 'G') elif (number > 1000000): return (str((number / 1000000)) + 'M') elif (number > 1000): return (str((number / 1000)) + 'K') else: return str(number)
def beautifyData(number): ' Turns number into beautiful string.\n e.g.\n 1,000,000,000 ---> 1G\n 1,000,000 ---> 100M\n 10,000 ---> 10K\n 10 ---> 10\n ' if (not isinstance(number, (int, long, float))): return 'NAN' if (number > 1000000000): return (str((number / 1000000000)) + 'G') elif (number > 1000000): return (str((number / 1000000)) + 'M') elif (number > 1000): return (str((number / 1000)) + 'K') else: return str(number)<|docstring|>Turns number into beautiful string. e.g. 1,000,000,000 ---> 1G 1,000,000 ---> 100M 10,000 ---> 10K 10 ---> 10<|endoftext|>
779c936710866fa4264905f585b185d87910c370362e0a9ab8d5691b7f4985d0
def markup(content, safe=False): ' Takes content that assumed to be markdown converts to markup for beautiful html output.\n - Takes markdown content and converts it to markup.\n - Automatic code syntax highlighting for <code></code>\n ' logger.info('markdown from utils.py') soup_mk = BeautifulSoup(unicode(content)) code_blocks = soup_mk.findAll('code') for tag in code_blocks: tag.clear() markeddown = markdown(unicode(soup_mk), safe_mode=safe) soup_mk = BeautifulSoup(unicode(markeddown)) code_blocks = soup_mk.findAll('code') soup = BeautifulSoup(unicode(content)) code_tags = soup.findAll('code') formatter = HtmlFormatter() index = 0 for tag in code_blocks: try: lexer = get_lexer_by_name(tag['class'][0]) logger.info(('lexer found by name: %s' % tag['class'][0])) except (ClassNotFound, KeyError): logger.info('Attempting to guess lexer.') try: lexer = guess_lexer(tag.string) logger.info(('lexer: %s' % lexer)) except: logger.info('Setting to lexer to default.') lexer = get_lexer_by_name('text') new_tag = soup.new_tag('code') new_tag = BeautifulSoup(highlight(code_tags[index].string, lexer, formatter)) tag.replaceWith(new_tag) index += 1 return soup_mk
Takes content that assumed to be markdown converts to markup for beautiful html output. - Takes markdown content and converts it to markup. - Automatic code syntax highlighting for <code></code>
docker/app/app/backend/apps/services/utils.py
markup
JTarball/tetherbox
1
python
def markup(content, safe=False): ' Takes content that assumed to be markdown converts to markup for beautiful html output.\n - Takes markdown content and converts it to markup.\n - Automatic code syntax highlighting for <code></code>\n ' logger.info('markdown from utils.py') soup_mk = BeautifulSoup(unicode(content)) code_blocks = soup_mk.findAll('code') for tag in code_blocks: tag.clear() markeddown = markdown(unicode(soup_mk), safe_mode=safe) soup_mk = BeautifulSoup(unicode(markeddown)) code_blocks = soup_mk.findAll('code') soup = BeautifulSoup(unicode(content)) code_tags = soup.findAll('code') formatter = HtmlFormatter() index = 0 for tag in code_blocks: try: lexer = get_lexer_by_name(tag['class'][0]) logger.info(('lexer found by name: %s' % tag['class'][0])) except (ClassNotFound, KeyError): logger.info('Attempting to guess lexer.') try: lexer = guess_lexer(tag.string) logger.info(('lexer: %s' % lexer)) except: logger.info('Setting to lexer to default.') lexer = get_lexer_by_name('text') new_tag = soup.new_tag('code') new_tag = BeautifulSoup(highlight(code_tags[index].string, lexer, formatter)) tag.replaceWith(new_tag) index += 1 return soup_mk
def markup(content, safe=False): ' Takes content that assumed to be markdown converts to markup for beautiful html output.\n - Takes markdown content and converts it to markup.\n - Automatic code syntax highlighting for <code></code>\n ' logger.info('markdown from utils.py') soup_mk = BeautifulSoup(unicode(content)) code_blocks = soup_mk.findAll('code') for tag in code_blocks: tag.clear() markeddown = markdown(unicode(soup_mk), safe_mode=safe) soup_mk = BeautifulSoup(unicode(markeddown)) code_blocks = soup_mk.findAll('code') soup = BeautifulSoup(unicode(content)) code_tags = soup.findAll('code') formatter = HtmlFormatter() index = 0 for tag in code_blocks: try: lexer = get_lexer_by_name(tag['class'][0]) logger.info(('lexer found by name: %s' % tag['class'][0])) except (ClassNotFound, KeyError): logger.info('Attempting to guess lexer.') try: lexer = guess_lexer(tag.string) logger.info(('lexer: %s' % lexer)) except: logger.info('Setting to lexer to default.') lexer = get_lexer_by_name('text') new_tag = soup.new_tag('code') new_tag = BeautifulSoup(highlight(code_tags[index].string, lexer, formatter)) tag.replaceWith(new_tag) index += 1 return soup_mk<|docstring|>Takes content that assumed to be markdown converts to markup for beautiful html output. - Takes markdown content and converts it to markup. - Automatic code syntax highlighting for <code></code><|endoftext|>
188904a2995d8c1aba99dcdec9a3193618ee9b8109df7d371abd61f9ce58cc1c
def main(): '\n Check that objects can be transferred from each node to each other node.\n ' results = [gethostname.remote(gethostname.remote(())) for _ in range(10)] print(Counter(ray.get(results))) sys.stdout.flush() print('Success!') sys.stdout.flush()
Check that objects can be transferred from each node to each other node.
tools/AutoTuner/kubernetes/run.py
main
vijayank88/OpenROAD-flow-scripts
68
python
def main(): '\n \n ' results = [gethostname.remote(gethostname.remote(())) for _ in range(10)] print(Counter(ray.get(results))) sys.stdout.flush() print('Success!') sys.stdout.flush()
def main(): '\n \n ' results = [gethostname.remote(gethostname.remote(())) for _ in range(10)] print(Counter(ray.get(results))) sys.stdout.flush() print('Success!') sys.stdout.flush()<|docstring|>Check that objects can be transferred from each node to each other node.<|endoftext|>
fb8018d2e689e23aa195bf1cbf2232ed22e935bce8686d56a224cc5b64738d6a
def list_commands(args, quiet=False): 'Parse the jobs/tasks to cancel and send the appropriate commands to the cluster' job_list = get_job_listings(args) if (not quiet): print(tabulate(job_list, headers=JobListing._fields))
Parse the jobs/tasks to cancel and send the appropriate commands to the cluster
onager/list.py
list_commands
samlobel/onager
12
python
def list_commands(args, quiet=False): job_list = get_job_listings(args) if (not quiet): print(tabulate(job_list, headers=JobListing._fields))
def list_commands(args, quiet=False): job_list = get_job_listings(args) if (not quiet): print(tabulate(job_list, headers=JobListing._fields))<|docstring|>Parse the jobs/tasks to cancel and send the appropriate commands to the cluster<|endoftext|>
68f9433b10238a545a38204a9e2bf3775191389ae1552ee7081733076da0cbf7
def __init__(self, cfg): '\n Args: \n cfg (Config): the global config object. \n ' super(BaseBMN, self).__init__() self.cfg = cfg self.tscale = cfg.DATA.TEMPORAL_SCALE self.dscale = (cfg.DATA.DURATION_SCALE if (cfg.DATA.DURATION_SCALE > 0) else cfg.DATA.TEMPORAL_SCALE) self.num_sample = cfg.VIDEO.HEAD.NUM_SAMPLE self.num_sample_perbin = cfg.VIDEO.HEAD.NUM_SAMPLE_PERBIN self.hidden_dim_1d = cfg.VIDEO.DIM1D self.hidden_dim_2d = cfg.VIDEO.DIM2D self.hidden_dim_3d = cfg.VIDEO.DIM3D self.prop_boundary_ratio = cfg.VIDEO.HEAD.BOUNDARY_RATIO self._construct_head()
Args: cfg (Config): the global config object.
papers/pytorch-video-understanding/models/module_zoo/heads/bmn_head.py
__init__
jiangzeyinzi/EssentialMC2
30
python
def __init__(self, cfg): '\n Args: \n cfg (Config): the global config object. \n ' super(BaseBMN, self).__init__() self.cfg = cfg self.tscale = cfg.DATA.TEMPORAL_SCALE self.dscale = (cfg.DATA.DURATION_SCALE if (cfg.DATA.DURATION_SCALE > 0) else cfg.DATA.TEMPORAL_SCALE) self.num_sample = cfg.VIDEO.HEAD.NUM_SAMPLE self.num_sample_perbin = cfg.VIDEO.HEAD.NUM_SAMPLE_PERBIN self.hidden_dim_1d = cfg.VIDEO.DIM1D self.hidden_dim_2d = cfg.VIDEO.DIM2D self.hidden_dim_3d = cfg.VIDEO.DIM3D self.prop_boundary_ratio = cfg.VIDEO.HEAD.BOUNDARY_RATIO self._construct_head()
def __init__(self, cfg): '\n Args: \n cfg (Config): the global config object. \n ' super(BaseBMN, self).__init__() self.cfg = cfg self.tscale = cfg.DATA.TEMPORAL_SCALE self.dscale = (cfg.DATA.DURATION_SCALE if (cfg.DATA.DURATION_SCALE > 0) else cfg.DATA.TEMPORAL_SCALE) self.num_sample = cfg.VIDEO.HEAD.NUM_SAMPLE self.num_sample_perbin = cfg.VIDEO.HEAD.NUM_SAMPLE_PERBIN self.hidden_dim_1d = cfg.VIDEO.DIM1D self.hidden_dim_2d = cfg.VIDEO.DIM2D self.hidden_dim_3d = cfg.VIDEO.DIM3D self.prop_boundary_ratio = cfg.VIDEO.HEAD.BOUNDARY_RATIO self._construct_head()<|docstring|>Args: cfg (Config): the global config object.<|endoftext|>
c4d217b54844256bcb28ba4962f06da55e8ff7a79f955c2aabd3efdae67abad9
def forward(self, x): '\n Args:\n x (dict): {\n "video" (tensor): Features for sliding windows.\n }\n Returns:\n output (dict): {\n confidence_map: (tensor),\n start_map: (tensor),\n end_map: (tensor),\n reg_map: (tensor),\n verb_map: (tensor),\n noun_map: (tensor)\n } \n ' base_feature = x['video'] start = self.x_1d_s(base_feature).squeeze(1) end = self.x_1d_e(base_feature).squeeze(1) mid_feature = self.x_1d_p(base_feature) mid_feature = self._boundary_matching_layer(mid_feature) mid_feature = self.x_3d_p(mid_feature).squeeze(2) confidence_map = self.x_2d_p(mid_feature) if self.cfg.VIDEO.HEAD.USE_BMN_REGRESSION: reg_map = self.x_2d_r(mid_feature) else: reg_map = {} if hasattr(self, 'x_2d_verb'): verb_map = self.x_2d_verb(mid_feature) noun_map = self.x_2d_noun(mid_feature) else: (verb_map, noun_map) = ({}, {}) output = {'confidence_map': confidence_map, 'start': start, 'end': end, 'reg_map': reg_map, 'verb_map': verb_map, 'noun_map': noun_map} return (output, {})
Args: x (dict): { "video" (tensor): Features for sliding windows. } Returns: output (dict): { confidence_map: (tensor), start_map: (tensor), end_map: (tensor), reg_map: (tensor), verb_map: (tensor), noun_map: (tensor) }
papers/pytorch-video-understanding/models/module_zoo/heads/bmn_head.py
forward
jiangzeyinzi/EssentialMC2
30
python
def forward(self, x): '\n Args:\n x (dict): {\n "video" (tensor): Features for sliding windows.\n }\n Returns:\n output (dict): {\n confidence_map: (tensor),\n start_map: (tensor),\n end_map: (tensor),\n reg_map: (tensor),\n verb_map: (tensor),\n noun_map: (tensor)\n } \n ' base_feature = x['video'] start = self.x_1d_s(base_feature).squeeze(1) end = self.x_1d_e(base_feature).squeeze(1) mid_feature = self.x_1d_p(base_feature) mid_feature = self._boundary_matching_layer(mid_feature) mid_feature = self.x_3d_p(mid_feature).squeeze(2) confidence_map = self.x_2d_p(mid_feature) if self.cfg.VIDEO.HEAD.USE_BMN_REGRESSION: reg_map = self.x_2d_r(mid_feature) else: reg_map = {} if hasattr(self, 'x_2d_verb'): verb_map = self.x_2d_verb(mid_feature) noun_map = self.x_2d_noun(mid_feature) else: (verb_map, noun_map) = ({}, {}) output = {'confidence_map': confidence_map, 'start': start, 'end': end, 'reg_map': reg_map, 'verb_map': verb_map, 'noun_map': noun_map} return (output, {})
def forward(self, x): '\n Args:\n x (dict): {\n "video" (tensor): Features for sliding windows.\n }\n Returns:\n output (dict): {\n confidence_map: (tensor),\n start_map: (tensor),\n end_map: (tensor),\n reg_map: (tensor),\n verb_map: (tensor),\n noun_map: (tensor)\n } \n ' base_feature = x['video'] start = self.x_1d_s(base_feature).squeeze(1) end = self.x_1d_e(base_feature).squeeze(1) mid_feature = self.x_1d_p(base_feature) mid_feature = self._boundary_matching_layer(mid_feature) mid_feature = self.x_3d_p(mid_feature).squeeze(2) confidence_map = self.x_2d_p(mid_feature) if self.cfg.VIDEO.HEAD.USE_BMN_REGRESSION: reg_map = self.x_2d_r(mid_feature) else: reg_map = {} if hasattr(self, 'x_2d_verb'): verb_map = self.x_2d_verb(mid_feature) noun_map = self.x_2d_noun(mid_feature) else: (verb_map, noun_map) = ({}, {}) output = {'confidence_map': confidence_map, 'start': start, 'end': end, 'reg_map': reg_map, 'verb_map': verb_map, 'noun_map': noun_map} return (output, {})<|docstring|>Args: x (dict): { "video" (tensor): Features for sliding windows. } Returns: output (dict): { confidence_map: (tensor), start_map: (tensor), end_map: (tensor), reg_map: (tensor), verb_map: (tensor), noun_map: (tensor) }<|endoftext|>
267a83afb8c687ff05923dae0aef98b42e1c82538a519b0989f685a753028e3b
def _boundary_matching_layer(self, x): '\n Apply boundary mathcing operation for input feature\n Args:\n x (tensor): 1D feature for boundary mathcing operation.\n Returns:\n output (Tensor): matched features for proposals\n ' input_size = x.size() out = torch.matmul(x, self.sample_mask).reshape(input_size[0], input_size[1], self.num_sample, self.dscale, self.tscale) return out
Apply boundary mathcing operation for input feature Args: x (tensor): 1D feature for boundary mathcing operation. Returns: output (Tensor): matched features for proposals
papers/pytorch-video-understanding/models/module_zoo/heads/bmn_head.py
_boundary_matching_layer
jiangzeyinzi/EssentialMC2
30
python
def _boundary_matching_layer(self, x): '\n Apply boundary mathcing operation for input feature\n Args:\n x (tensor): 1D feature for boundary mathcing operation.\n Returns:\n output (Tensor): matched features for proposals\n ' input_size = x.size() out = torch.matmul(x, self.sample_mask).reshape(input_size[0], input_size[1], self.num_sample, self.dscale, self.tscale) return out
def _boundary_matching_layer(self, x): '\n Apply boundary mathcing operation for input feature\n Args:\n x (tensor): 1D feature for boundary mathcing operation.\n Returns:\n output (Tensor): matched features for proposals\n ' input_size = x.size() out = torch.matmul(x, self.sample_mask).reshape(input_size[0], input_size[1], self.num_sample, self.dscale, self.tscale) return out<|docstring|>Apply boundary mathcing operation for input feature Args: x (tensor): 1D feature for boundary mathcing operation. Returns: output (Tensor): matched features for proposals<|endoftext|>
e85ddb9774926f51eacb4127679b95444576f308d0a38c211c2c7e07b589971e
def get_interp1d_mask(self, prop_boundary_ratio, num_sample): '\n generate sample mask for each point in Boundary-Matching Map\n Args:\n prop_boundary_ratio (float): Boundary expand ratio.\n num_sample (int): The number of sample points for each proposal.\n Returns:\n output (Tensor): sample mask\n ' mask_mat = [] for start_index in range(self.tscale): mask_mat_vector = [] for duration_index in range(self.dscale): if ((start_index + duration_index) < self.tscale): p_xmin = start_index p_xmax = (start_index + duration_index) center_len = (float((p_xmax - p_xmin)) + 1) sample_xmin = (p_xmin - (center_len * prop_boundary_ratio)) sample_xmax = (p_xmax + (center_len * prop_boundary_ratio)) p_mask = self._get_interp1d_bin_mask(sample_xmin, sample_xmax, self.tscale, num_sample, self.num_sample_perbin) else: p_mask = np.zeros([self.tscale, num_sample]) mask_mat_vector.append(p_mask) mask_mat_vector = np.stack(mask_mat_vector, axis=2) mask_mat.append(mask_mat_vector) mask_mat = np.stack(mask_mat, axis=3) mask_mat = mask_mat.astype(np.float32) return torch.Tensor(mask_mat).view(self.tscale, (- 1))
generate sample mask for each point in Boundary-Matching Map Args: prop_boundary_ratio (float): Boundary expand ratio. num_sample (int): The number of sample points for each proposal. Returns: output (Tensor): sample mask
papers/pytorch-video-understanding/models/module_zoo/heads/bmn_head.py
get_interp1d_mask
jiangzeyinzi/EssentialMC2
30
python
def get_interp1d_mask(self, prop_boundary_ratio, num_sample): '\n generate sample mask for each point in Boundary-Matching Map\n Args:\n prop_boundary_ratio (float): Boundary expand ratio.\n num_sample (int): The number of sample points for each proposal.\n Returns:\n output (Tensor): sample mask\n ' mask_mat = [] for start_index in range(self.tscale): mask_mat_vector = [] for duration_index in range(self.dscale): if ((start_index + duration_index) < self.tscale): p_xmin = start_index p_xmax = (start_index + duration_index) center_len = (float((p_xmax - p_xmin)) + 1) sample_xmin = (p_xmin - (center_len * prop_boundary_ratio)) sample_xmax = (p_xmax + (center_len * prop_boundary_ratio)) p_mask = self._get_interp1d_bin_mask(sample_xmin, sample_xmax, self.tscale, num_sample, self.num_sample_perbin) else: p_mask = np.zeros([self.tscale, num_sample]) mask_mat_vector.append(p_mask) mask_mat_vector = np.stack(mask_mat_vector, axis=2) mask_mat.append(mask_mat_vector) mask_mat = np.stack(mask_mat, axis=3) mask_mat = mask_mat.astype(np.float32) return torch.Tensor(mask_mat).view(self.tscale, (- 1))
def get_interp1d_mask(self, prop_boundary_ratio, num_sample): '\n generate sample mask for each point in Boundary-Matching Map\n Args:\n prop_boundary_ratio (float): Boundary expand ratio.\n num_sample (int): The number of sample points for each proposal.\n Returns:\n output (Tensor): sample mask\n ' mask_mat = [] for start_index in range(self.tscale): mask_mat_vector = [] for duration_index in range(self.dscale): if ((start_index + duration_index) < self.tscale): p_xmin = start_index p_xmax = (start_index + duration_index) center_len = (float((p_xmax - p_xmin)) + 1) sample_xmin = (p_xmin - (center_len * prop_boundary_ratio)) sample_xmax = (p_xmax + (center_len * prop_boundary_ratio)) p_mask = self._get_interp1d_bin_mask(sample_xmin, sample_xmax, self.tscale, num_sample, self.num_sample_perbin) else: p_mask = np.zeros([self.tscale, num_sample]) mask_mat_vector.append(p_mask) mask_mat_vector = np.stack(mask_mat_vector, axis=2) mask_mat.append(mask_mat_vector) mask_mat = np.stack(mask_mat, axis=3) mask_mat = mask_mat.astype(np.float32) return torch.Tensor(mask_mat).view(self.tscale, (- 1))<|docstring|>generate sample mask for each point in Boundary-Matching Map Args: prop_boundary_ratio (float): Boundary expand ratio. num_sample (int): The number of sample points for each proposal. Returns: output (Tensor): sample mask<|endoftext|>
02b5a7d28b9b4c1ef174d8ba73b4e5fedddc8b6a1b615e75d27423a69cae5b8d
def _get_interp1d_bin_mask(self, seg_xmin, seg_xmax, tscale, num_sample, num_sample_perbin): '\n generate sample mask for a boundary-matching pair\n Args:\n seg_xmin (float): Start time of the proposal.\n seg_xmax (float): End time of the proposal.\n tscale (int): Temporal len for bmn.\n num_sample (int): The number of sample points for each proposal.\n num_sample_perbin (int): The number of sample points for each bin.\n Returns:\n output (Tensor): one sample mask\n ' plen = float((seg_xmax - seg_xmin)) plen_sample = (plen / ((num_sample * num_sample_perbin) - 1.0)) total_samples = [(seg_xmin + (plen_sample * ii)) for ii in range((num_sample * num_sample_perbin))] p_mask = [] for idx in range(num_sample): bin_samples = total_samples[(idx * num_sample_perbin):((idx + 1) * num_sample_perbin)] bin_vector = np.zeros([tscale]) for sample in bin_samples: sample_upper = math.ceil(sample) (sample_decimal, sample_down) = math.modf(sample) if ((int(sample_down) <= (tscale - 1)) and (int(sample_down) >= 0)): bin_vector[int(sample_down)] += (1 - sample_decimal) if ((int(sample_upper) <= (tscale - 1)) and (int(sample_upper) >= 0)): bin_vector[int(sample_upper)] += sample_decimal bin_vector = ((1.0 / num_sample_perbin) * bin_vector) p_mask.append(bin_vector) p_mask = np.stack(p_mask, axis=1) return p_mask
generate sample mask for a boundary-matching pair Args: seg_xmin (float): Start time of the proposal. seg_xmax (float): End time of the proposal. tscale (int): Temporal len for bmn. num_sample (int): The number of sample points for each proposal. num_sample_perbin (int): The number of sample points for each bin. Returns: output (Tensor): one sample mask
papers/pytorch-video-understanding/models/module_zoo/heads/bmn_head.py
_get_interp1d_bin_mask
jiangzeyinzi/EssentialMC2
30
python
def _get_interp1d_bin_mask(self, seg_xmin, seg_xmax, tscale, num_sample, num_sample_perbin): '\n generate sample mask for a boundary-matching pair\n Args:\n seg_xmin (float): Start time of the proposal.\n seg_xmax (float): End time of the proposal.\n tscale (int): Temporal len for bmn.\n num_sample (int): The number of sample points for each proposal.\n num_sample_perbin (int): The number of sample points for each bin.\n Returns:\n output (Tensor): one sample mask\n ' plen = float((seg_xmax - seg_xmin)) plen_sample = (plen / ((num_sample * num_sample_perbin) - 1.0)) total_samples = [(seg_xmin + (plen_sample * ii)) for ii in range((num_sample * num_sample_perbin))] p_mask = [] for idx in range(num_sample): bin_samples = total_samples[(idx * num_sample_perbin):((idx + 1) * num_sample_perbin)] bin_vector = np.zeros([tscale]) for sample in bin_samples: sample_upper = math.ceil(sample) (sample_decimal, sample_down) = math.modf(sample) if ((int(sample_down) <= (tscale - 1)) and (int(sample_down) >= 0)): bin_vector[int(sample_down)] += (1 - sample_decimal) if ((int(sample_upper) <= (tscale - 1)) and (int(sample_upper) >= 0)): bin_vector[int(sample_upper)] += sample_decimal bin_vector = ((1.0 / num_sample_perbin) * bin_vector) p_mask.append(bin_vector) p_mask = np.stack(p_mask, axis=1) return p_mask
def _get_interp1d_bin_mask(self, seg_xmin, seg_xmax, tscale, num_sample, num_sample_perbin): '\n generate sample mask for a boundary-matching pair\n Args:\n seg_xmin (float): Start time of the proposal.\n seg_xmax (float): End time of the proposal.\n tscale (int): Temporal len for bmn.\n num_sample (int): The number of sample points for each proposal.\n num_sample_perbin (int): The number of sample points for each bin.\n Returns:\n output (Tensor): one sample mask\n ' plen = float((seg_xmax - seg_xmin)) plen_sample = (plen / ((num_sample * num_sample_perbin) - 1.0)) total_samples = [(seg_xmin + (plen_sample * ii)) for ii in range((num_sample * num_sample_perbin))] p_mask = [] for idx in range(num_sample): bin_samples = total_samples[(idx * num_sample_perbin):((idx + 1) * num_sample_perbin)] bin_vector = np.zeros([tscale]) for sample in bin_samples: sample_upper = math.ceil(sample) (sample_decimal, sample_down) = math.modf(sample) if ((int(sample_down) <= (tscale - 1)) and (int(sample_down) >= 0)): bin_vector[int(sample_down)] += (1 - sample_decimal) if ((int(sample_upper) <= (tscale - 1)) and (int(sample_upper) >= 0)): bin_vector[int(sample_upper)] += sample_decimal bin_vector = ((1.0 / num_sample_perbin) * bin_vector) p_mask.append(bin_vector) p_mask = np.stack(p_mask, axis=1) return p_mask<|docstring|>generate sample mask for a boundary-matching pair Args: seg_xmin (float): Start time of the proposal. seg_xmax (float): End time of the proposal. tscale (int): Temporal len for bmn. num_sample (int): The number of sample points for each proposal. num_sample_perbin (int): The number of sample points for each bin. Returns: output (Tensor): one sample mask<|endoftext|>
baa9580e3558990cbbbd4a416ce889eff976cf9be75e811766c881d5e6f5aa2e
@property def name(self): 'field `Name`\n\n Args:\n value (str): value for IDD Field `Name`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n str: the value of `name` or None if not set\n\n ' return self['Name']
field `Name` Args: value (str): value for IDD Field `Name` Raises: ValueError: if `value` is not a valid value Returns: str: the value of `name` or None if not set
pyidf/zone_hvac_forced_air_units.py
name
marcelosalles/pyidf
19
python
@property def name(self): 'field `Name`\n\n Args:\n value (str): value for IDD Field `Name`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n str: the value of `name` or None if not set\n\n ' return self['Name']
@property def name(self): 'field `Name`\n\n Args:\n value (str): value for IDD Field `Name`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n str: the value of `name` or None if not set\n\n ' return self['Name']<|docstring|>field `Name` Args: value (str): value for IDD Field `Name` Raises: ValueError: if `value` is not a valid value Returns: str: the value of `name` or None if not set<|endoftext|>
b50e61290376b241698c1b041a66a959d7606fd2f3631a15fe0cc75c3fe60f11
@name.setter def name(self, value=None): 'Corresponds to IDD field `Name`' self['Name'] = value
Corresponds to IDD field `Name`
pyidf/zone_hvac_forced_air_units.py
name
marcelosalles/pyidf
19
python
@name.setter def name(self, value=None): self['Name'] = value
@name.setter def name(self, value=None): self['Name'] = value<|docstring|>Corresponds to IDD field `Name`<|endoftext|>
079b63d0fdbfe99ef787834a23c7db0ede0bcbf05728f2cbbeddda7a2a6af6e4
@property def availability_schedule_name(self): 'field `Availability Schedule Name`\n\n | Availability schedule name for this system. Schedule value > 0 means the system is available.\n | If this field is blank, the system is always available.\n\n Args:\n value (str): value for IDD Field `Availability Schedule Name`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n str: the value of `availability_schedule_name` or None if not set\n\n ' return self['Availability Schedule Name']
field `Availability Schedule Name` | Availability schedule name for this system. Schedule value > 0 means the system is available. | If this field is blank, the system is always available. Args: value (str): value for IDD Field `Availability Schedule Name` Raises: ValueError: if `value` is not a valid value Returns: str: the value of `availability_schedule_name` or None if not set
pyidf/zone_hvac_forced_air_units.py
availability_schedule_name
marcelosalles/pyidf
19
python
@property def availability_schedule_name(self): 'field `Availability Schedule Name`\n\n | Availability schedule name for this system. Schedule value > 0 means the system is available.\n | If this field is blank, the system is always available.\n\n Args:\n value (str): value for IDD Field `Availability Schedule Name`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n str: the value of `availability_schedule_name` or None if not set\n\n ' return self['Availability Schedule Name']
@property def availability_schedule_name(self): 'field `Availability Schedule Name`\n\n | Availability schedule name for this system. Schedule value > 0 means the system is available.\n | If this field is blank, the system is always available.\n\n Args:\n value (str): value for IDD Field `Availability Schedule Name`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n str: the value of `availability_schedule_name` or None if not set\n\n ' return self['Availability Schedule Name']<|docstring|>field `Availability Schedule Name` | Availability schedule name for this system. Schedule value > 0 means the system is available. | If this field is blank, the system is always available. Args: value (str): value for IDD Field `Availability Schedule Name` Raises: ValueError: if `value` is not a valid value Returns: str: the value of `availability_schedule_name` or None if not set<|endoftext|>
0c16d5e7b23cbfea5e4ff38beadfd6557d13a1a56631806b240011b0003e2b8d
@availability_schedule_name.setter def availability_schedule_name(self, value=None): 'Corresponds to IDD field `Availability Schedule Name`' self['Availability Schedule Name'] = value
Corresponds to IDD field `Availability Schedule Name`
pyidf/zone_hvac_forced_air_units.py
availability_schedule_name
marcelosalles/pyidf
19
python
@availability_schedule_name.setter def availability_schedule_name(self, value=None): self['Availability Schedule Name'] = value
@availability_schedule_name.setter def availability_schedule_name(self, value=None): self['Availability Schedule Name'] = value<|docstring|>Corresponds to IDD field `Availability Schedule Name`<|endoftext|>
a45667714a255dc3da04d9fb8a6dc3c284446c9aab9cc279db485a5ba0594b12
@property def zone_supply_air_node_name(self): 'field `Zone Supply Air Node Name`\n\n | Must match a zone air inlet node name.\n\n Args:\n value (str): value for IDD Field `Zone Supply Air Node Name`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n str: the value of `zone_supply_air_node_name` or None if not set\n\n ' return self['Zone Supply Air Node Name']
field `Zone Supply Air Node Name` | Must match a zone air inlet node name. Args: value (str): value for IDD Field `Zone Supply Air Node Name` Raises: ValueError: if `value` is not a valid value Returns: str: the value of `zone_supply_air_node_name` or None if not set
pyidf/zone_hvac_forced_air_units.py
zone_supply_air_node_name
marcelosalles/pyidf
19
python
@property def zone_supply_air_node_name(self): 'field `Zone Supply Air Node Name`\n\n | Must match a zone air inlet node name.\n\n Args:\n value (str): value for IDD Field `Zone Supply Air Node Name`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n str: the value of `zone_supply_air_node_name` or None if not set\n\n ' return self['Zone Supply Air Node Name']
@property def zone_supply_air_node_name(self): 'field `Zone Supply Air Node Name`\n\n | Must match a zone air inlet node name.\n\n Args:\n value (str): value for IDD Field `Zone Supply Air Node Name`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n str: the value of `zone_supply_air_node_name` or None if not set\n\n ' return self['Zone Supply Air Node Name']<|docstring|>field `Zone Supply Air Node Name` | Must match a zone air inlet node name. Args: value (str): value for IDD Field `Zone Supply Air Node Name` Raises: ValueError: if `value` is not a valid value Returns: str: the value of `zone_supply_air_node_name` or None if not set<|endoftext|>
edaac4d85b2c452dc71ccb133e6af72bff41deac08f7178f256faa16ebc46d32
@zone_supply_air_node_name.setter def zone_supply_air_node_name(self, value=None): 'Corresponds to IDD field `Zone Supply Air Node Name`' self['Zone Supply Air Node Name'] = value
Corresponds to IDD field `Zone Supply Air Node Name`
pyidf/zone_hvac_forced_air_units.py
zone_supply_air_node_name
marcelosalles/pyidf
19
python
@zone_supply_air_node_name.setter def zone_supply_air_node_name(self, value=None): self['Zone Supply Air Node Name'] = value
@zone_supply_air_node_name.setter def zone_supply_air_node_name(self, value=None): self['Zone Supply Air Node Name'] = value<|docstring|>Corresponds to IDD field `Zone Supply Air Node Name`<|endoftext|>
b477673152c6eb9fe1a9f186d0e0b3652a08c2fe6114823691725658fbdb5172
@property def zone_exhaust_air_node_name(self): 'field `Zone Exhaust Air Node Name`\n\n | Should match a zone air exhaust node name.\n | This field is optional, but is required if this\n | this object is used with other forced air equipment.\n\n Args:\n value (str): value for IDD Field `Zone Exhaust Air Node Name`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n str: the value of `zone_exhaust_air_node_name` or None if not set\n\n ' return self['Zone Exhaust Air Node Name']
field `Zone Exhaust Air Node Name` | Should match a zone air exhaust node name. | This field is optional, but is required if this | this object is used with other forced air equipment. Args: value (str): value for IDD Field `Zone Exhaust Air Node Name` Raises: ValueError: if `value` is not a valid value Returns: str: the value of `zone_exhaust_air_node_name` or None if not set
pyidf/zone_hvac_forced_air_units.py
zone_exhaust_air_node_name
marcelosalles/pyidf
19
python
@property def zone_exhaust_air_node_name(self): 'field `Zone Exhaust Air Node Name`\n\n | Should match a zone air exhaust node name.\n | This field is optional, but is required if this\n | this object is used with other forced air equipment.\n\n Args:\n value (str): value for IDD Field `Zone Exhaust Air Node Name`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n str: the value of `zone_exhaust_air_node_name` or None if not set\n\n ' return self['Zone Exhaust Air Node Name']
@property def zone_exhaust_air_node_name(self): 'field `Zone Exhaust Air Node Name`\n\n | Should match a zone air exhaust node name.\n | This field is optional, but is required if this\n | this object is used with other forced air equipment.\n\n Args:\n value (str): value for IDD Field `Zone Exhaust Air Node Name`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n str: the value of `zone_exhaust_air_node_name` or None if not set\n\n ' return self['Zone Exhaust Air Node Name']<|docstring|>field `Zone Exhaust Air Node Name` | Should match a zone air exhaust node name. | This field is optional, but is required if this | this object is used with other forced air equipment. Args: value (str): value for IDD Field `Zone Exhaust Air Node Name` Raises: ValueError: if `value` is not a valid value Returns: str: the value of `zone_exhaust_air_node_name` or None if not set<|endoftext|>
6b24fbf60f25963a30001b396b1b15e229f0f4e6e33484b3fe7230e827ec11e5
@zone_exhaust_air_node_name.setter def zone_exhaust_air_node_name(self, value=None): 'Corresponds to IDD field `Zone Exhaust Air Node Name`' self['Zone Exhaust Air Node Name'] = value
Corresponds to IDD field `Zone Exhaust Air Node Name`
pyidf/zone_hvac_forced_air_units.py
zone_exhaust_air_node_name
marcelosalles/pyidf
19
python
@zone_exhaust_air_node_name.setter def zone_exhaust_air_node_name(self, value=None): self['Zone Exhaust Air Node Name'] = value
@zone_exhaust_air_node_name.setter def zone_exhaust_air_node_name(self, value=None): self['Zone Exhaust Air Node Name'] = value<|docstring|>Corresponds to IDD field `Zone Exhaust Air Node Name`<|endoftext|>
cb5faf6b5fc4bcc451ce4705b0879ba3760b2195a994f2d53116c78853177948
@property def maximum_heating_supply_air_temperature(self): 'field `Maximum Heating Supply Air Temperature`\n\n | Units: C\n | Default value: 50.0\n | value < 100.0\n\n Args:\n value (float): value for IDD Field `Maximum Heating Supply Air Temperature`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n float: the value of `maximum_heating_supply_air_temperature` or None if not set\n\n ' return self['Maximum Heating Supply Air Temperature']
field `Maximum Heating Supply Air Temperature` | Units: C | Default value: 50.0 | value < 100.0 Args: value (float): value for IDD Field `Maximum Heating Supply Air Temperature` Raises: ValueError: if `value` is not a valid value Returns: float: the value of `maximum_heating_supply_air_temperature` or None if not set
pyidf/zone_hvac_forced_air_units.py
maximum_heating_supply_air_temperature
marcelosalles/pyidf
19
python
@property def maximum_heating_supply_air_temperature(self): 'field `Maximum Heating Supply Air Temperature`\n\n | Units: C\n | Default value: 50.0\n | value < 100.0\n\n Args:\n value (float): value for IDD Field `Maximum Heating Supply Air Temperature`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n float: the value of `maximum_heating_supply_air_temperature` or None if not set\n\n ' return self['Maximum Heating Supply Air Temperature']
@property def maximum_heating_supply_air_temperature(self): 'field `Maximum Heating Supply Air Temperature`\n\n | Units: C\n | Default value: 50.0\n | value < 100.0\n\n Args:\n value (float): value for IDD Field `Maximum Heating Supply Air Temperature`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n float: the value of `maximum_heating_supply_air_temperature` or None if not set\n\n ' return self['Maximum Heating Supply Air Temperature']<|docstring|>field `Maximum Heating Supply Air Temperature` | Units: C | Default value: 50.0 | value < 100.0 Args: value (float): value for IDD Field `Maximum Heating Supply Air Temperature` Raises: ValueError: if `value` is not a valid value Returns: float: the value of `maximum_heating_supply_air_temperature` or None if not set<|endoftext|>
085758a303f2e7f5f72e77462f3c10fcb0a634d3da3197f339a3e55ecd5943c3
@maximum_heating_supply_air_temperature.setter def maximum_heating_supply_air_temperature(self, value=50.0): 'Corresponds to IDD field `Maximum Heating Supply Air Temperature`' self['Maximum Heating Supply Air Temperature'] = value
Corresponds to IDD field `Maximum Heating Supply Air Temperature`
pyidf/zone_hvac_forced_air_units.py
maximum_heating_supply_air_temperature
marcelosalles/pyidf
19
python
@maximum_heating_supply_air_temperature.setter def maximum_heating_supply_air_temperature(self, value=50.0): self['Maximum Heating Supply Air Temperature'] = value
@maximum_heating_supply_air_temperature.setter def maximum_heating_supply_air_temperature(self, value=50.0): self['Maximum Heating Supply Air Temperature'] = value<|docstring|>Corresponds to IDD field `Maximum Heating Supply Air Temperature`<|endoftext|>
68bb006edd46e23db962140526fae0bfa70cca2c42cd4cfceafca0b486c86671
@property def minimum_cooling_supply_air_temperature(self): 'field `Minimum Cooling Supply Air Temperature`\n\n | Units: C\n | Default value: 13.0\n | value > -100.0\n | value < 50.0\n\n Args:\n value (float): value for IDD Field `Minimum Cooling Supply Air Temperature`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n float: the value of `minimum_cooling_supply_air_temperature` or None if not set\n\n ' return self['Minimum Cooling Supply Air Temperature']
field `Minimum Cooling Supply Air Temperature` | Units: C | Default value: 13.0 | value > -100.0 | value < 50.0 Args: value (float): value for IDD Field `Minimum Cooling Supply Air Temperature` Raises: ValueError: if `value` is not a valid value Returns: float: the value of `minimum_cooling_supply_air_temperature` or None if not set
pyidf/zone_hvac_forced_air_units.py
minimum_cooling_supply_air_temperature
marcelosalles/pyidf
19
python
@property def minimum_cooling_supply_air_temperature(self): 'field `Minimum Cooling Supply Air Temperature`\n\n | Units: C\n | Default value: 13.0\n | value > -100.0\n | value < 50.0\n\n Args:\n value (float): value for IDD Field `Minimum Cooling Supply Air Temperature`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n float: the value of `minimum_cooling_supply_air_temperature` or None if not set\n\n ' return self['Minimum Cooling Supply Air Temperature']
@property def minimum_cooling_supply_air_temperature(self): 'field `Minimum Cooling Supply Air Temperature`\n\n | Units: C\n | Default value: 13.0\n | value > -100.0\n | value < 50.0\n\n Args:\n value (float): value for IDD Field `Minimum Cooling Supply Air Temperature`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n float: the value of `minimum_cooling_supply_air_temperature` or None if not set\n\n ' return self['Minimum Cooling Supply Air Temperature']<|docstring|>field `Minimum Cooling Supply Air Temperature` | Units: C | Default value: 13.0 | value > -100.0 | value < 50.0 Args: value (float): value for IDD Field `Minimum Cooling Supply Air Temperature` Raises: ValueError: if `value` is not a valid value Returns: float: the value of `minimum_cooling_supply_air_temperature` or None if not set<|endoftext|>
32f788a180757738784eaa0fc4cebc2e1131904dda0069c22cd4b91cd8db404f
@minimum_cooling_supply_air_temperature.setter def minimum_cooling_supply_air_temperature(self, value=13.0): 'Corresponds to IDD field `Minimum Cooling Supply Air Temperature`' self['Minimum Cooling Supply Air Temperature'] = value
Corresponds to IDD field `Minimum Cooling Supply Air Temperature`
pyidf/zone_hvac_forced_air_units.py
minimum_cooling_supply_air_temperature
marcelosalles/pyidf
19
python
@minimum_cooling_supply_air_temperature.setter def minimum_cooling_supply_air_temperature(self, value=13.0): self['Minimum Cooling Supply Air Temperature'] = value
@minimum_cooling_supply_air_temperature.setter def minimum_cooling_supply_air_temperature(self, value=13.0): self['Minimum Cooling Supply Air Temperature'] = value<|docstring|>Corresponds to IDD field `Minimum Cooling Supply Air Temperature`<|endoftext|>
b512c5b9a2419241cd1544ac366c05c4931c796ef2a794737eddb6d1032574fe
@property def maximum_heating_supply_air_humidity_ratio(self): 'field `Maximum Heating Supply Air Humidity Ratio`\n\n | Units: kgWater/kgDryAir\n | Default value: 0.0156\n\n Args:\n value (float): value for IDD Field `Maximum Heating Supply Air Humidity Ratio`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n float: the value of `maximum_heating_supply_air_humidity_ratio` or None if not set\n\n ' return self['Maximum Heating Supply Air Humidity Ratio']
field `Maximum Heating Supply Air Humidity Ratio` | Units: kgWater/kgDryAir | Default value: 0.0156 Args: value (float): value for IDD Field `Maximum Heating Supply Air Humidity Ratio` Raises: ValueError: if `value` is not a valid value Returns: float: the value of `maximum_heating_supply_air_humidity_ratio` or None if not set
pyidf/zone_hvac_forced_air_units.py
maximum_heating_supply_air_humidity_ratio
marcelosalles/pyidf
19
python
@property def maximum_heating_supply_air_humidity_ratio(self): 'field `Maximum Heating Supply Air Humidity Ratio`\n\n | Units: kgWater/kgDryAir\n | Default value: 0.0156\n\n Args:\n value (float): value for IDD Field `Maximum Heating Supply Air Humidity Ratio`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n float: the value of `maximum_heating_supply_air_humidity_ratio` or None if not set\n\n ' return self['Maximum Heating Supply Air Humidity Ratio']
@property def maximum_heating_supply_air_humidity_ratio(self): 'field `Maximum Heating Supply Air Humidity Ratio`\n\n | Units: kgWater/kgDryAir\n | Default value: 0.0156\n\n Args:\n value (float): value for IDD Field `Maximum Heating Supply Air Humidity Ratio`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n float: the value of `maximum_heating_supply_air_humidity_ratio` or None if not set\n\n ' return self['Maximum Heating Supply Air Humidity Ratio']<|docstring|>field `Maximum Heating Supply Air Humidity Ratio` | Units: kgWater/kgDryAir | Default value: 0.0156 Args: value (float): value for IDD Field `Maximum Heating Supply Air Humidity Ratio` Raises: ValueError: if `value` is not a valid value Returns: float: the value of `maximum_heating_supply_air_humidity_ratio` or None if not set<|endoftext|>
c33f0f217a36777111e1a9003e423a2832e2da1640e049ba9275f9cf2f2d0ef8
@maximum_heating_supply_air_humidity_ratio.setter def maximum_heating_supply_air_humidity_ratio(self, value=0.0156): 'Corresponds to IDD field `Maximum Heating Supply Air Humidity\n Ratio`' self['Maximum Heating Supply Air Humidity Ratio'] = value
Corresponds to IDD field `Maximum Heating Supply Air Humidity Ratio`
pyidf/zone_hvac_forced_air_units.py
maximum_heating_supply_air_humidity_ratio
marcelosalles/pyidf
19
python
@maximum_heating_supply_air_humidity_ratio.setter def maximum_heating_supply_air_humidity_ratio(self, value=0.0156): 'Corresponds to IDD field `Maximum Heating Supply Air Humidity\n Ratio`' self['Maximum Heating Supply Air Humidity Ratio'] = value
@maximum_heating_supply_air_humidity_ratio.setter def maximum_heating_supply_air_humidity_ratio(self, value=0.0156): 'Corresponds to IDD field `Maximum Heating Supply Air Humidity\n Ratio`' self['Maximum Heating Supply Air Humidity Ratio'] = value<|docstring|>Corresponds to IDD field `Maximum Heating Supply Air Humidity Ratio`<|endoftext|>
b906c295139a4f2d3ea40c7c73cd1d6a000500f2d6826f9580dfba3c8101b4ce
@property def minimum_cooling_supply_air_humidity_ratio(self): 'field `Minimum Cooling Supply Air Humidity Ratio`\n\n | Units: kgWater/kgDryAir\n | Default value: 0.0077\n\n Args:\n value (float): value for IDD Field `Minimum Cooling Supply Air Humidity Ratio`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n float: the value of `minimum_cooling_supply_air_humidity_ratio` or None if not set\n\n ' return self['Minimum Cooling Supply Air Humidity Ratio']
field `Minimum Cooling Supply Air Humidity Ratio` | Units: kgWater/kgDryAir | Default value: 0.0077 Args: value (float): value for IDD Field `Minimum Cooling Supply Air Humidity Ratio` Raises: ValueError: if `value` is not a valid value Returns: float: the value of `minimum_cooling_supply_air_humidity_ratio` or None if not set
pyidf/zone_hvac_forced_air_units.py
minimum_cooling_supply_air_humidity_ratio
marcelosalles/pyidf
19
python
@property def minimum_cooling_supply_air_humidity_ratio(self): 'field `Minimum Cooling Supply Air Humidity Ratio`\n\n | Units: kgWater/kgDryAir\n | Default value: 0.0077\n\n Args:\n value (float): value for IDD Field `Minimum Cooling Supply Air Humidity Ratio`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n float: the value of `minimum_cooling_supply_air_humidity_ratio` or None if not set\n\n ' return self['Minimum Cooling Supply Air Humidity Ratio']
@property def minimum_cooling_supply_air_humidity_ratio(self): 'field `Minimum Cooling Supply Air Humidity Ratio`\n\n | Units: kgWater/kgDryAir\n | Default value: 0.0077\n\n Args:\n value (float): value for IDD Field `Minimum Cooling Supply Air Humidity Ratio`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n float: the value of `minimum_cooling_supply_air_humidity_ratio` or None if not set\n\n ' return self['Minimum Cooling Supply Air Humidity Ratio']<|docstring|>field `Minimum Cooling Supply Air Humidity Ratio` | Units: kgWater/kgDryAir | Default value: 0.0077 Args: value (float): value for IDD Field `Minimum Cooling Supply Air Humidity Ratio` Raises: ValueError: if `value` is not a valid value Returns: float: the value of `minimum_cooling_supply_air_humidity_ratio` or None if not set<|endoftext|>
7a92f0063471315a6679b8f42eca636fa71ee25b87bd00ba5dc5bb236733f5f2
@minimum_cooling_supply_air_humidity_ratio.setter def minimum_cooling_supply_air_humidity_ratio(self, value=0.0077): 'Corresponds to IDD field `Minimum Cooling Supply Air Humidity\n Ratio`' self['Minimum Cooling Supply Air Humidity Ratio'] = value
Corresponds to IDD field `Minimum Cooling Supply Air Humidity Ratio`
pyidf/zone_hvac_forced_air_units.py
minimum_cooling_supply_air_humidity_ratio
marcelosalles/pyidf
19
python
@minimum_cooling_supply_air_humidity_ratio.setter def minimum_cooling_supply_air_humidity_ratio(self, value=0.0077): 'Corresponds to IDD field `Minimum Cooling Supply Air Humidity\n Ratio`' self['Minimum Cooling Supply Air Humidity Ratio'] = value
@minimum_cooling_supply_air_humidity_ratio.setter def minimum_cooling_supply_air_humidity_ratio(self, value=0.0077): 'Corresponds to IDD field `Minimum Cooling Supply Air Humidity\n Ratio`' self['Minimum Cooling Supply Air Humidity Ratio'] = value<|docstring|>Corresponds to IDD field `Minimum Cooling Supply Air Humidity Ratio`<|endoftext|>
0643e16cdf5e564d3db199b27a45dc440f3e5fd0ac6f655b285f626573f28e10
@property def heating_limit(self): 'field `Heating Limit`\n\n | Default value: NoLimit\n\n Args:\n value (str): value for IDD Field `Heating Limit`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n str: the value of `heating_limit` or None if not set\n\n ' return self['Heating Limit']
field `Heating Limit` | Default value: NoLimit Args: value (str): value for IDD Field `Heating Limit` Raises: ValueError: if `value` is not a valid value Returns: str: the value of `heating_limit` or None if not set
pyidf/zone_hvac_forced_air_units.py
heating_limit
marcelosalles/pyidf
19
python
@property def heating_limit(self): 'field `Heating Limit`\n\n | Default value: NoLimit\n\n Args:\n value (str): value for IDD Field `Heating Limit`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n str: the value of `heating_limit` or None if not set\n\n ' return self['Heating Limit']
@property def heating_limit(self): 'field `Heating Limit`\n\n | Default value: NoLimit\n\n Args:\n value (str): value for IDD Field `Heating Limit`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n str: the value of `heating_limit` or None if not set\n\n ' return self['Heating Limit']<|docstring|>field `Heating Limit` | Default value: NoLimit Args: value (str): value for IDD Field `Heating Limit` Raises: ValueError: if `value` is not a valid value Returns: str: the value of `heating_limit` or None if not set<|endoftext|>
5ddb34496b71b77a49ba2f7c15dd1c84237d2bf03c03be76bb12b55310674b94
@heating_limit.setter def heating_limit(self, value='NoLimit'): 'Corresponds to IDD field `Heating Limit`' self['Heating Limit'] = value
Corresponds to IDD field `Heating Limit`
pyidf/zone_hvac_forced_air_units.py
heating_limit
marcelosalles/pyidf
19
python
@heating_limit.setter def heating_limit(self, value='NoLimit'): self['Heating Limit'] = value
@heating_limit.setter def heating_limit(self, value='NoLimit'): self['Heating Limit'] = value<|docstring|>Corresponds to IDD field `Heating Limit`<|endoftext|>
9041e6f17eb62c6dc0e5ba7daf2ea0b92c7da8530a878b5baa90ffc4a51b3262
@property def maximum_heating_air_flow_rate(self): 'field `Maximum Heating Air Flow Rate`\n\n | This field is ignored if Heating Limit = NoLimit\n | If this field is blank, there is no limit.\n | Units: m3/s\n\n Args:\n value (float or "Autosize"): value for IDD Field `Maximum Heating Air Flow Rate`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n float or "Autosize": the value of `maximum_heating_air_flow_rate` or None if not set\n\n ' return self['Maximum Heating Air Flow Rate']
field `Maximum Heating Air Flow Rate` | This field is ignored if Heating Limit = NoLimit | If this field is blank, there is no limit. | Units: m3/s Args: value (float or "Autosize"): value for IDD Field `Maximum Heating Air Flow Rate` Raises: ValueError: if `value` is not a valid value Returns: float or "Autosize": the value of `maximum_heating_air_flow_rate` or None if not set
pyidf/zone_hvac_forced_air_units.py
maximum_heating_air_flow_rate
marcelosalles/pyidf
19
python
@property def maximum_heating_air_flow_rate(self): 'field `Maximum Heating Air Flow Rate`\n\n | This field is ignored if Heating Limit = NoLimit\n | If this field is blank, there is no limit.\n | Units: m3/s\n\n Args:\n value (float or "Autosize"): value for IDD Field `Maximum Heating Air Flow Rate`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n float or "Autosize": the value of `maximum_heating_air_flow_rate` or None if not set\n\n ' return self['Maximum Heating Air Flow Rate']
@property def maximum_heating_air_flow_rate(self): 'field `Maximum Heating Air Flow Rate`\n\n | This field is ignored if Heating Limit = NoLimit\n | If this field is blank, there is no limit.\n | Units: m3/s\n\n Args:\n value (float or "Autosize"): value for IDD Field `Maximum Heating Air Flow Rate`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n float or "Autosize": the value of `maximum_heating_air_flow_rate` or None if not set\n\n ' return self['Maximum Heating Air Flow Rate']<|docstring|>field `Maximum Heating Air Flow Rate` | This field is ignored if Heating Limit = NoLimit | If this field is blank, there is no limit. | Units: m3/s Args: value (float or "Autosize"): value for IDD Field `Maximum Heating Air Flow Rate` Raises: ValueError: if `value` is not a valid value Returns: float or "Autosize": the value of `maximum_heating_air_flow_rate` or None if not set<|endoftext|>
d9cb1a7e2138aefc87dd79d4661e04b319f41af479085dd3d34da7b138342fbf
@maximum_heating_air_flow_rate.setter def maximum_heating_air_flow_rate(self, value=None): 'Corresponds to IDD field `Maximum Heating Air Flow Rate`' self['Maximum Heating Air Flow Rate'] = value
Corresponds to IDD field `Maximum Heating Air Flow Rate`
pyidf/zone_hvac_forced_air_units.py
maximum_heating_air_flow_rate
marcelosalles/pyidf
19
python
@maximum_heating_air_flow_rate.setter def maximum_heating_air_flow_rate(self, value=None): self['Maximum Heating Air Flow Rate'] = value
@maximum_heating_air_flow_rate.setter def maximum_heating_air_flow_rate(self, value=None): self['Maximum Heating Air Flow Rate'] = value<|docstring|>Corresponds to IDD field `Maximum Heating Air Flow Rate`<|endoftext|>
4622a6a7e2e54e086f56397290120eda1523b802615cb511ac908494c552d010
@property def maximum_sensible_heating_capacity(self): 'field `Maximum Sensible Heating Capacity`\n\n | This field is ignored if Heating Limit = NoLimit\n | If this field is blank, there is no limit.\n | Units: W\n\n Args:\n value (float or "Autosize"): value for IDD Field `Maximum Sensible Heating Capacity`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n float or "Autosize": the value of `maximum_sensible_heating_capacity` or None if not set\n\n ' return self['Maximum Sensible Heating Capacity']
field `Maximum Sensible Heating Capacity` | This field is ignored if Heating Limit = NoLimit | If this field is blank, there is no limit. | Units: W Args: value (float or "Autosize"): value for IDD Field `Maximum Sensible Heating Capacity` Raises: ValueError: if `value` is not a valid value Returns: float or "Autosize": the value of `maximum_sensible_heating_capacity` or None if not set
pyidf/zone_hvac_forced_air_units.py
maximum_sensible_heating_capacity
marcelosalles/pyidf
19
python
@property def maximum_sensible_heating_capacity(self): 'field `Maximum Sensible Heating Capacity`\n\n | This field is ignored if Heating Limit = NoLimit\n | If this field is blank, there is no limit.\n | Units: W\n\n Args:\n value (float or "Autosize"): value for IDD Field `Maximum Sensible Heating Capacity`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n float or "Autosize": the value of `maximum_sensible_heating_capacity` or None if not set\n\n ' return self['Maximum Sensible Heating Capacity']
@property def maximum_sensible_heating_capacity(self): 'field `Maximum Sensible Heating Capacity`\n\n | This field is ignored if Heating Limit = NoLimit\n | If this field is blank, there is no limit.\n | Units: W\n\n Args:\n value (float or "Autosize"): value for IDD Field `Maximum Sensible Heating Capacity`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n float or "Autosize": the value of `maximum_sensible_heating_capacity` or None if not set\n\n ' return self['Maximum Sensible Heating Capacity']<|docstring|>field `Maximum Sensible Heating Capacity` | This field is ignored if Heating Limit = NoLimit | If this field is blank, there is no limit. | Units: W Args: value (float or "Autosize"): value for IDD Field `Maximum Sensible Heating Capacity` Raises: ValueError: if `value` is not a valid value Returns: float or "Autosize": the value of `maximum_sensible_heating_capacity` or None if not set<|endoftext|>
3b08344ff32fe065e44fcb9ea361e8a4bf488225cdaff25a95b441544d71f45f
@maximum_sensible_heating_capacity.setter def maximum_sensible_heating_capacity(self, value=None): 'Corresponds to IDD field `Maximum Sensible Heating Capacity`' self['Maximum Sensible Heating Capacity'] = value
Corresponds to IDD field `Maximum Sensible Heating Capacity`
pyidf/zone_hvac_forced_air_units.py
maximum_sensible_heating_capacity
marcelosalles/pyidf
19
python
@maximum_sensible_heating_capacity.setter def maximum_sensible_heating_capacity(self, value=None): self['Maximum Sensible Heating Capacity'] = value
@maximum_sensible_heating_capacity.setter def maximum_sensible_heating_capacity(self, value=None): self['Maximum Sensible Heating Capacity'] = value<|docstring|>Corresponds to IDD field `Maximum Sensible Heating Capacity`<|endoftext|>
0aaac1511f1944acef52e4e01cd5637d44017028cdb299359258a0985d06daae
@property def cooling_limit(self): 'field `Cooling Limit`\n\n | Default value: NoLimit\n\n Args:\n value (str): value for IDD Field `Cooling Limit`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n str: the value of `cooling_limit` or None if not set\n\n ' return self['Cooling Limit']
field `Cooling Limit` | Default value: NoLimit Args: value (str): value for IDD Field `Cooling Limit` Raises: ValueError: if `value` is not a valid value Returns: str: the value of `cooling_limit` or None if not set
pyidf/zone_hvac_forced_air_units.py
cooling_limit
marcelosalles/pyidf
19
python
@property def cooling_limit(self): 'field `Cooling Limit`\n\n | Default value: NoLimit\n\n Args:\n value (str): value for IDD Field `Cooling Limit`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n str: the value of `cooling_limit` or None if not set\n\n ' return self['Cooling Limit']
@property def cooling_limit(self): 'field `Cooling Limit`\n\n | Default value: NoLimit\n\n Args:\n value (str): value for IDD Field `Cooling Limit`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n str: the value of `cooling_limit` or None if not set\n\n ' return self['Cooling Limit']<|docstring|>field `Cooling Limit` | Default value: NoLimit Args: value (str): value for IDD Field `Cooling Limit` Raises: ValueError: if `value` is not a valid value Returns: str: the value of `cooling_limit` or None if not set<|endoftext|>
5fcf6cce1bced9dae300844ae1deeb8ce53eee7cfb2c402584f694b32c365b3a
@cooling_limit.setter def cooling_limit(self, value='NoLimit'): 'Corresponds to IDD field `Cooling Limit`' self['Cooling Limit'] = value
Corresponds to IDD field `Cooling Limit`
pyidf/zone_hvac_forced_air_units.py
cooling_limit
marcelosalles/pyidf
19
python
@cooling_limit.setter def cooling_limit(self, value='NoLimit'): self['Cooling Limit'] = value
@cooling_limit.setter def cooling_limit(self, value='NoLimit'): self['Cooling Limit'] = value<|docstring|>Corresponds to IDD field `Cooling Limit`<|endoftext|>
4687b78165b36567033d113687b8736413a8d6149d6ba6ff173f064cf264f454
@property def maximum_cooling_air_flow_rate(self): 'field `Maximum Cooling Air Flow Rate`\n\n | This field is ignored if Cooling Limit = NoLimit\n | This field is required if Outdoor Air Economizer Type is anything other than NoEconomizer.\n | Units: m3/s\n\n Args:\n value (float or "Autosize"): value for IDD Field `Maximum Cooling Air Flow Rate`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n float or "Autosize": the value of `maximum_cooling_air_flow_rate` or None if not set\n\n ' return self['Maximum Cooling Air Flow Rate']
field `Maximum Cooling Air Flow Rate` | This field is ignored if Cooling Limit = NoLimit | This field is required if Outdoor Air Economizer Type is anything other than NoEconomizer. | Units: m3/s Args: value (float or "Autosize"): value for IDD Field `Maximum Cooling Air Flow Rate` Raises: ValueError: if `value` is not a valid value Returns: float or "Autosize": the value of `maximum_cooling_air_flow_rate` or None if not set
pyidf/zone_hvac_forced_air_units.py
maximum_cooling_air_flow_rate
marcelosalles/pyidf
19
python
@property def maximum_cooling_air_flow_rate(self): 'field `Maximum Cooling Air Flow Rate`\n\n | This field is ignored if Cooling Limit = NoLimit\n | This field is required if Outdoor Air Economizer Type is anything other than NoEconomizer.\n | Units: m3/s\n\n Args:\n value (float or "Autosize"): value for IDD Field `Maximum Cooling Air Flow Rate`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n float or "Autosize": the value of `maximum_cooling_air_flow_rate` or None if not set\n\n ' return self['Maximum Cooling Air Flow Rate']
@property def maximum_cooling_air_flow_rate(self): 'field `Maximum Cooling Air Flow Rate`\n\n | This field is ignored if Cooling Limit = NoLimit\n | This field is required if Outdoor Air Economizer Type is anything other than NoEconomizer.\n | Units: m3/s\n\n Args:\n value (float or "Autosize"): value for IDD Field `Maximum Cooling Air Flow Rate`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n float or "Autosize": the value of `maximum_cooling_air_flow_rate` or None if not set\n\n ' return self['Maximum Cooling Air Flow Rate']<|docstring|>field `Maximum Cooling Air Flow Rate` | This field is ignored if Cooling Limit = NoLimit | This field is required if Outdoor Air Economizer Type is anything other than NoEconomizer. | Units: m3/s Args: value (float or "Autosize"): value for IDD Field `Maximum Cooling Air Flow Rate` Raises: ValueError: if `value` is not a valid value Returns: float or "Autosize": the value of `maximum_cooling_air_flow_rate` or None if not set<|endoftext|>
2d21ed3b30b609193811b9094d80b582ff167696c76d622bfcf716d92530279f
@maximum_cooling_air_flow_rate.setter def maximum_cooling_air_flow_rate(self, value=None): 'Corresponds to IDD field `Maximum Cooling Air Flow Rate`' self['Maximum Cooling Air Flow Rate'] = value
Corresponds to IDD field `Maximum Cooling Air Flow Rate`
pyidf/zone_hvac_forced_air_units.py
maximum_cooling_air_flow_rate
marcelosalles/pyidf
19
python
@maximum_cooling_air_flow_rate.setter def maximum_cooling_air_flow_rate(self, value=None): self['Maximum Cooling Air Flow Rate'] = value
@maximum_cooling_air_flow_rate.setter def maximum_cooling_air_flow_rate(self, value=None): self['Maximum Cooling Air Flow Rate'] = value<|docstring|>Corresponds to IDD field `Maximum Cooling Air Flow Rate`<|endoftext|>
fdb10deffc7b4ca2b89494a69dd25eeeb863d29f2cedb048d115f95abde8e9d1
@property def maximum_total_cooling_capacity(self): 'field `Maximum Total Cooling Capacity`\n\n | This field is ignored if Cooling Limit = NoLimit\n | Units: W\n\n Args:\n value (float or "Autosize"): value for IDD Field `Maximum Total Cooling Capacity`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n float or "Autosize": the value of `maximum_total_cooling_capacity` or None if not set\n\n ' return self['Maximum Total Cooling Capacity']
field `Maximum Total Cooling Capacity` | This field is ignored if Cooling Limit = NoLimit | Units: W Args: value (float or "Autosize"): value for IDD Field `Maximum Total Cooling Capacity` Raises: ValueError: if `value` is not a valid value Returns: float or "Autosize": the value of `maximum_total_cooling_capacity` or None if not set
pyidf/zone_hvac_forced_air_units.py
maximum_total_cooling_capacity
marcelosalles/pyidf
19
python
@property def maximum_total_cooling_capacity(self): 'field `Maximum Total Cooling Capacity`\n\n | This field is ignored if Cooling Limit = NoLimit\n | Units: W\n\n Args:\n value (float or "Autosize"): value for IDD Field `Maximum Total Cooling Capacity`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n float or "Autosize": the value of `maximum_total_cooling_capacity` or None if not set\n\n ' return self['Maximum Total Cooling Capacity']
@property def maximum_total_cooling_capacity(self): 'field `Maximum Total Cooling Capacity`\n\n | This field is ignored if Cooling Limit = NoLimit\n | Units: W\n\n Args:\n value (float or "Autosize"): value for IDD Field `Maximum Total Cooling Capacity`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n float or "Autosize": the value of `maximum_total_cooling_capacity` or None if not set\n\n ' return self['Maximum Total Cooling Capacity']<|docstring|>field `Maximum Total Cooling Capacity` | This field is ignored if Cooling Limit = NoLimit | Units: W Args: value (float or "Autosize"): value for IDD Field `Maximum Total Cooling Capacity` Raises: ValueError: if `value` is not a valid value Returns: float or "Autosize": the value of `maximum_total_cooling_capacity` or None if not set<|endoftext|>
1a86477e4f5c45d74618c8581892e70bf7b6215c1cfa6976f44d62559f89f44d
@maximum_total_cooling_capacity.setter def maximum_total_cooling_capacity(self, value=None): 'Corresponds to IDD field `Maximum Total Cooling Capacity`' self['Maximum Total Cooling Capacity'] = value
Corresponds to IDD field `Maximum Total Cooling Capacity`
pyidf/zone_hvac_forced_air_units.py
maximum_total_cooling_capacity
marcelosalles/pyidf
19
python
@maximum_total_cooling_capacity.setter def maximum_total_cooling_capacity(self, value=None): self['Maximum Total Cooling Capacity'] = value
@maximum_total_cooling_capacity.setter def maximum_total_cooling_capacity(self, value=None): self['Maximum Total Cooling Capacity'] = value<|docstring|>Corresponds to IDD field `Maximum Total Cooling Capacity`<|endoftext|>
9507e1cf97aebc050323e64356edab1004722f2d7b680f42ea99fa977dbdeb1b
@property def heating_availability_schedule_name(self): 'field `Heating Availability Schedule Name`\n\n | If blank, heating is always available.\n\n Args:\n value (str): value for IDD Field `Heating Availability Schedule Name`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n str: the value of `heating_availability_schedule_name` or None if not set\n\n ' return self['Heating Availability Schedule Name']
field `Heating Availability Schedule Name` | If blank, heating is always available. Args: value (str): value for IDD Field `Heating Availability Schedule Name` Raises: ValueError: if `value` is not a valid value Returns: str: the value of `heating_availability_schedule_name` or None if not set
pyidf/zone_hvac_forced_air_units.py
heating_availability_schedule_name
marcelosalles/pyidf
19
python
@property def heating_availability_schedule_name(self): 'field `Heating Availability Schedule Name`\n\n | If blank, heating is always available.\n\n Args:\n value (str): value for IDD Field `Heating Availability Schedule Name`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n str: the value of `heating_availability_schedule_name` or None if not set\n\n ' return self['Heating Availability Schedule Name']
@property def heating_availability_schedule_name(self): 'field `Heating Availability Schedule Name`\n\n | If blank, heating is always available.\n\n Args:\n value (str): value for IDD Field `Heating Availability Schedule Name`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n str: the value of `heating_availability_schedule_name` or None if not set\n\n ' return self['Heating Availability Schedule Name']<|docstring|>field `Heating Availability Schedule Name` | If blank, heating is always available. Args: value (str): value for IDD Field `Heating Availability Schedule Name` Raises: ValueError: if `value` is not a valid value Returns: str: the value of `heating_availability_schedule_name` or None if not set<|endoftext|>
82eac5fcb5c615d995bc736c7eeedaf2ba7cd1a3989d3c90a90bc3d7f4a76f02
@heating_availability_schedule_name.setter def heating_availability_schedule_name(self, value=None): 'Corresponds to IDD field `Heating Availability Schedule Name`' self['Heating Availability Schedule Name'] = value
Corresponds to IDD field `Heating Availability Schedule Name`
pyidf/zone_hvac_forced_air_units.py
heating_availability_schedule_name
marcelosalles/pyidf
19
python
@heating_availability_schedule_name.setter def heating_availability_schedule_name(self, value=None): self['Heating Availability Schedule Name'] = value
@heating_availability_schedule_name.setter def heating_availability_schedule_name(self, value=None): self['Heating Availability Schedule Name'] = value<|docstring|>Corresponds to IDD field `Heating Availability Schedule Name`<|endoftext|>
1c60fbe971f46679b0fafcb0d51a95e9ef99547f8ae4f4813d80284a430ea0ae
@property def cooling_availability_schedule_name(self): 'field `Cooling Availability Schedule Name`\n\n | If blank, cooling is always available.\n\n Args:\n value (str): value for IDD Field `Cooling Availability Schedule Name`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n str: the value of `cooling_availability_schedule_name` or None if not set\n\n ' return self['Cooling Availability Schedule Name']
field `Cooling Availability Schedule Name` | If blank, cooling is always available. Args: value (str): value for IDD Field `Cooling Availability Schedule Name` Raises: ValueError: if `value` is not a valid value Returns: str: the value of `cooling_availability_schedule_name` or None if not set
pyidf/zone_hvac_forced_air_units.py
cooling_availability_schedule_name
marcelosalles/pyidf
19
python
@property def cooling_availability_schedule_name(self): 'field `Cooling Availability Schedule Name`\n\n | If blank, cooling is always available.\n\n Args:\n value (str): value for IDD Field `Cooling Availability Schedule Name`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n str: the value of `cooling_availability_schedule_name` or None if not set\n\n ' return self['Cooling Availability Schedule Name']
@property def cooling_availability_schedule_name(self): 'field `Cooling Availability Schedule Name`\n\n | If blank, cooling is always available.\n\n Args:\n value (str): value for IDD Field `Cooling Availability Schedule Name`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n str: the value of `cooling_availability_schedule_name` or None if not set\n\n ' return self['Cooling Availability Schedule Name']<|docstring|>field `Cooling Availability Schedule Name` | If blank, cooling is always available. Args: value (str): value for IDD Field `Cooling Availability Schedule Name` Raises: ValueError: if `value` is not a valid value Returns: str: the value of `cooling_availability_schedule_name` or None if not set<|endoftext|>
d224b106c68dd735d779d3606377438953f096dbfa6b6bd6996421ffaaf38bcc
@cooling_availability_schedule_name.setter def cooling_availability_schedule_name(self, value=None): 'Corresponds to IDD field `Cooling Availability Schedule Name`' self['Cooling Availability Schedule Name'] = value
Corresponds to IDD field `Cooling Availability Schedule Name`
pyidf/zone_hvac_forced_air_units.py
cooling_availability_schedule_name
marcelosalles/pyidf
19
python
@cooling_availability_schedule_name.setter def cooling_availability_schedule_name(self, value=None): self['Cooling Availability Schedule Name'] = value
@cooling_availability_schedule_name.setter def cooling_availability_schedule_name(self, value=None): self['Cooling Availability Schedule Name'] = value<|docstring|>Corresponds to IDD field `Cooling Availability Schedule Name`<|endoftext|>
6b41b852c56defe2767a0f994191c2676f848cd6aec8ed28bb8de30329e0ad56
@property def dehumidification_control_type(self): 'field `Dehumidification Control Type`\n\n | ConstantSensibleHeatRatio means that the ideal loads system\n | will be controlled to meet the sensible cooling load, and the\n | latent cooling rate will be computed using a constant\n | sensible heat ratio (SHR)\n | Humidistat means that there is a ZoneControl:Humidistat for this\n | zone and the ideal loads system will attempt to satisfy the humidistat.\n | None means that there is no dehumidification.\n | ConstantSupplyHumidityRatio means that during cooling the supply air\n | will always be at the Minimum Cooling Supply Humidity Ratio.\n | Default value: ConstantSensibleHeatRatio\n\n Args:\n value (str): value for IDD Field `Dehumidification Control Type`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n str: the value of `dehumidification_control_type` or None if not set\n\n ' return self['Dehumidification Control Type']
field `Dehumidification Control Type` | ConstantSensibleHeatRatio means that the ideal loads system | will be controlled to meet the sensible cooling load, and the | latent cooling rate will be computed using a constant | sensible heat ratio (SHR) | Humidistat means that there is a ZoneControl:Humidistat for this | zone and the ideal loads system will attempt to satisfy the humidistat. | None means that there is no dehumidification. | ConstantSupplyHumidityRatio means that during cooling the supply air | will always be at the Minimum Cooling Supply Humidity Ratio. | Default value: ConstantSensibleHeatRatio Args: value (str): value for IDD Field `Dehumidification Control Type` Raises: ValueError: if `value` is not a valid value Returns: str: the value of `dehumidification_control_type` or None if not set
pyidf/zone_hvac_forced_air_units.py
dehumidification_control_type
marcelosalles/pyidf
19
python
@property def dehumidification_control_type(self): 'field `Dehumidification Control Type`\n\n | ConstantSensibleHeatRatio means that the ideal loads system\n | will be controlled to meet the sensible cooling load, and the\n | latent cooling rate will be computed using a constant\n | sensible heat ratio (SHR)\n | Humidistat means that there is a ZoneControl:Humidistat for this\n | zone and the ideal loads system will attempt to satisfy the humidistat.\n | None means that there is no dehumidification.\n | ConstantSupplyHumidityRatio means that during cooling the supply air\n | will always be at the Minimum Cooling Supply Humidity Ratio.\n | Default value: ConstantSensibleHeatRatio\n\n Args:\n value (str): value for IDD Field `Dehumidification Control Type`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n str: the value of `dehumidification_control_type` or None if not set\n\n ' return self['Dehumidification Control Type']
@property def dehumidification_control_type(self): 'field `Dehumidification Control Type`\n\n | ConstantSensibleHeatRatio means that the ideal loads system\n | will be controlled to meet the sensible cooling load, and the\n | latent cooling rate will be computed using a constant\n | sensible heat ratio (SHR)\n | Humidistat means that there is a ZoneControl:Humidistat for this\n | zone and the ideal loads system will attempt to satisfy the humidistat.\n | None means that there is no dehumidification.\n | ConstantSupplyHumidityRatio means that during cooling the supply air\n | will always be at the Minimum Cooling Supply Humidity Ratio.\n | Default value: ConstantSensibleHeatRatio\n\n Args:\n value (str): value for IDD Field `Dehumidification Control Type`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n str: the value of `dehumidification_control_type` or None if not set\n\n ' return self['Dehumidification Control Type']<|docstring|>field `Dehumidification Control Type` | ConstantSensibleHeatRatio means that the ideal loads system | will be controlled to meet the sensible cooling load, and the | latent cooling rate will be computed using a constant | sensible heat ratio (SHR) | Humidistat means that there is a ZoneControl:Humidistat for this | zone and the ideal loads system will attempt to satisfy the humidistat. | None means that there is no dehumidification. | ConstantSupplyHumidityRatio means that during cooling the supply air | will always be at the Minimum Cooling Supply Humidity Ratio. | Default value: ConstantSensibleHeatRatio Args: value (str): value for IDD Field `Dehumidification Control Type` Raises: ValueError: if `value` is not a valid value Returns: str: the value of `dehumidification_control_type` or None if not set<|endoftext|>
96005487a085ff646babf88471a261f5203202539fb9837663ecc196de6904fc
@dehumidification_control_type.setter def dehumidification_control_type(self, value='ConstantSensibleHeatRatio'): 'Corresponds to IDD field `Dehumidification Control Type`' self['Dehumidification Control Type'] = value
Corresponds to IDD field `Dehumidification Control Type`
pyidf/zone_hvac_forced_air_units.py
dehumidification_control_type
marcelosalles/pyidf
19
python
@dehumidification_control_type.setter def dehumidification_control_type(self, value='ConstantSensibleHeatRatio'): self['Dehumidification Control Type'] = value
@dehumidification_control_type.setter def dehumidification_control_type(self, value='ConstantSensibleHeatRatio'): self['Dehumidification Control Type'] = value<|docstring|>Corresponds to IDD field `Dehumidification Control Type`<|endoftext|>
ede2cf0f2c1bd57f4df6960df8d0ea51287d1964a713d0f69eb260227e3c8a75
@property def cooling_sensible_heat_ratio(self): 'field `Cooling Sensible Heat Ratio`\n\n | This field is applicable only when Dehumidification Control Type is ConstantSensibleHeatRatio\n | Units: dimensionless\n | Default value: 0.7\n | value <= 1.0\n\n Args:\n value (float): value for IDD Field `Cooling Sensible Heat Ratio`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n float: the value of `cooling_sensible_heat_ratio` or None if not set\n\n ' return self['Cooling Sensible Heat Ratio']
field `Cooling Sensible Heat Ratio` | This field is applicable only when Dehumidification Control Type is ConstantSensibleHeatRatio | Units: dimensionless | Default value: 0.7 | value <= 1.0 Args: value (float): value for IDD Field `Cooling Sensible Heat Ratio` Raises: ValueError: if `value` is not a valid value Returns: float: the value of `cooling_sensible_heat_ratio` or None if not set
pyidf/zone_hvac_forced_air_units.py
cooling_sensible_heat_ratio
marcelosalles/pyidf
19
python
@property def cooling_sensible_heat_ratio(self): 'field `Cooling Sensible Heat Ratio`\n\n | This field is applicable only when Dehumidification Control Type is ConstantSensibleHeatRatio\n | Units: dimensionless\n | Default value: 0.7\n | value <= 1.0\n\n Args:\n value (float): value for IDD Field `Cooling Sensible Heat Ratio`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n float: the value of `cooling_sensible_heat_ratio` or None if not set\n\n ' return self['Cooling Sensible Heat Ratio']
@property def cooling_sensible_heat_ratio(self): 'field `Cooling Sensible Heat Ratio`\n\n | This field is applicable only when Dehumidification Control Type is ConstantSensibleHeatRatio\n | Units: dimensionless\n | Default value: 0.7\n | value <= 1.0\n\n Args:\n value (float): value for IDD Field `Cooling Sensible Heat Ratio`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n float: the value of `cooling_sensible_heat_ratio` or None if not set\n\n ' return self['Cooling Sensible Heat Ratio']<|docstring|>field `Cooling Sensible Heat Ratio` | This field is applicable only when Dehumidification Control Type is ConstantSensibleHeatRatio | Units: dimensionless | Default value: 0.7 | value <= 1.0 Args: value (float): value for IDD Field `Cooling Sensible Heat Ratio` Raises: ValueError: if `value` is not a valid value Returns: float: the value of `cooling_sensible_heat_ratio` or None if not set<|endoftext|>
85e37184c25d0fa07bb403d345e281268f9c17ea156008eab26ac5edab1943dd
@cooling_sensible_heat_ratio.setter def cooling_sensible_heat_ratio(self, value=0.7): 'Corresponds to IDD field `Cooling Sensible Heat Ratio`' self['Cooling Sensible Heat Ratio'] = value
Corresponds to IDD field `Cooling Sensible Heat Ratio`
pyidf/zone_hvac_forced_air_units.py
cooling_sensible_heat_ratio
marcelosalles/pyidf
19
python
@cooling_sensible_heat_ratio.setter def cooling_sensible_heat_ratio(self, value=0.7): self['Cooling Sensible Heat Ratio'] = value
@cooling_sensible_heat_ratio.setter def cooling_sensible_heat_ratio(self, value=0.7): self['Cooling Sensible Heat Ratio'] = value<|docstring|>Corresponds to IDD field `Cooling Sensible Heat Ratio`<|endoftext|>
5ae394dcdb671e3f15d9862d3a75962642978bf1c599ea9d2aa35cd7bcc948e5
@property def humidification_control_type(self): 'field `Humidification Control Type`\n\n | None means that there is no humidification.\n | Humidistat means that there is a ZoneControl:Humidistat for this\n | zone and the ideal loads system will attempt to satisfy the humidistat.\n | ConstantSupplyHumidityRatio means that during heating the supply air\n | will always be at the Maximum Heating Supply Humidity Ratio.\n | Default value: None\n\n Args:\n value (str): value for IDD Field `Humidification Control Type`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n str: the value of `humidification_control_type` or None if not set\n\n ' return self['Humidification Control Type']
field `Humidification Control Type` | None means that there is no humidification. | Humidistat means that there is a ZoneControl:Humidistat for this | zone and the ideal loads system will attempt to satisfy the humidistat. | ConstantSupplyHumidityRatio means that during heating the supply air | will always be at the Maximum Heating Supply Humidity Ratio. | Default value: None Args: value (str): value for IDD Field `Humidification Control Type` Raises: ValueError: if `value` is not a valid value Returns: str: the value of `humidification_control_type` or None if not set
pyidf/zone_hvac_forced_air_units.py
humidification_control_type
marcelosalles/pyidf
19
python
@property def humidification_control_type(self): 'field `Humidification Control Type`\n\n | None means that there is no humidification.\n | Humidistat means that there is a ZoneControl:Humidistat for this\n | zone and the ideal loads system will attempt to satisfy the humidistat.\n | ConstantSupplyHumidityRatio means that during heating the supply air\n | will always be at the Maximum Heating Supply Humidity Ratio.\n | Default value: None\n\n Args:\n value (str): value for IDD Field `Humidification Control Type`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n str: the value of `humidification_control_type` or None if not set\n\n ' return self['Humidification Control Type']
@property def humidification_control_type(self): 'field `Humidification Control Type`\n\n | None means that there is no humidification.\n | Humidistat means that there is a ZoneControl:Humidistat for this\n | zone and the ideal loads system will attempt to satisfy the humidistat.\n | ConstantSupplyHumidityRatio means that during heating the supply air\n | will always be at the Maximum Heating Supply Humidity Ratio.\n | Default value: None\n\n Args:\n value (str): value for IDD Field `Humidification Control Type`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n str: the value of `humidification_control_type` or None if not set\n\n ' return self['Humidification Control Type']<|docstring|>field `Humidification Control Type` | None means that there is no humidification. | Humidistat means that there is a ZoneControl:Humidistat for this | zone and the ideal loads system will attempt to satisfy the humidistat. | ConstantSupplyHumidityRatio means that during heating the supply air | will always be at the Maximum Heating Supply Humidity Ratio. | Default value: None Args: value (str): value for IDD Field `Humidification Control Type` Raises: ValueError: if `value` is not a valid value Returns: str: the value of `humidification_control_type` or None if not set<|endoftext|>
338d7207faaa53ad08dc3a280641d69c424d6719fe3dd01ea94288f887b4c7c5
@humidification_control_type.setter def humidification_control_type(self, value='None'): 'Corresponds to IDD field `Humidification Control Type`' self['Humidification Control Type'] = value
Corresponds to IDD field `Humidification Control Type`
pyidf/zone_hvac_forced_air_units.py
humidification_control_type
marcelosalles/pyidf
19
python
@humidification_control_type.setter def humidification_control_type(self, value='None'): self['Humidification Control Type'] = value
@humidification_control_type.setter def humidification_control_type(self, value='None'): self['Humidification Control Type'] = value<|docstring|>Corresponds to IDD field `Humidification Control Type`<|endoftext|>
131011616457e2d979ed3d6c5539e024738e0c7f3c5fba142b85456d4d5c1818
@property def design_specification_outdoor_air_object_name(self): 'field `Design Specification Outdoor Air Object Name`\n\n | When the name of a DesignSpecification:OutdoorAir object is entered, the minimum\n | outdoor air flow rate will be computed using these specifications. The outdoor air\n | flow rate will also be affected by the next two fields.\n | If this field is blank, there will be no outdoor air and the remaining fields will\n | be ignored.\n\n Args:\n value (str): value for IDD Field `Design Specification Outdoor Air Object Name`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n str: the value of `design_specification_outdoor_air_object_name` or None if not set\n\n ' return self['Design Specification Outdoor Air Object Name']
field `Design Specification Outdoor Air Object Name` | When the name of a DesignSpecification:OutdoorAir object is entered, the minimum | outdoor air flow rate will be computed using these specifications. The outdoor air | flow rate will also be affected by the next two fields. | If this field is blank, there will be no outdoor air and the remaining fields will | be ignored. Args: value (str): value for IDD Field `Design Specification Outdoor Air Object Name` Raises: ValueError: if `value` is not a valid value Returns: str: the value of `design_specification_outdoor_air_object_name` or None if not set
pyidf/zone_hvac_forced_air_units.py
design_specification_outdoor_air_object_name
marcelosalles/pyidf
19
python
@property def design_specification_outdoor_air_object_name(self): 'field `Design Specification Outdoor Air Object Name`\n\n | When the name of a DesignSpecification:OutdoorAir object is entered, the minimum\n | outdoor air flow rate will be computed using these specifications. The outdoor air\n | flow rate will also be affected by the next two fields.\n | If this field is blank, there will be no outdoor air and the remaining fields will\n | be ignored.\n\n Args:\n value (str): value for IDD Field `Design Specification Outdoor Air Object Name`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n str: the value of `design_specification_outdoor_air_object_name` or None if not set\n\n ' return self['Design Specification Outdoor Air Object Name']
@property def design_specification_outdoor_air_object_name(self): 'field `Design Specification Outdoor Air Object Name`\n\n | When the name of a DesignSpecification:OutdoorAir object is entered, the minimum\n | outdoor air flow rate will be computed using these specifications. The outdoor air\n | flow rate will also be affected by the next two fields.\n | If this field is blank, there will be no outdoor air and the remaining fields will\n | be ignored.\n\n Args:\n value (str): value for IDD Field `Design Specification Outdoor Air Object Name`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n str: the value of `design_specification_outdoor_air_object_name` or None if not set\n\n ' return self['Design Specification Outdoor Air Object Name']<|docstring|>field `Design Specification Outdoor Air Object Name` | When the name of a DesignSpecification:OutdoorAir object is entered, the minimum | outdoor air flow rate will be computed using these specifications. The outdoor air | flow rate will also be affected by the next two fields. | If this field is blank, there will be no outdoor air and the remaining fields will | be ignored. Args: value (str): value for IDD Field `Design Specification Outdoor Air Object Name` Raises: ValueError: if `value` is not a valid value Returns: str: the value of `design_specification_outdoor_air_object_name` or None if not set<|endoftext|>
bd2a8f70c6df3f5c61c7c899ecb5f07f4979104b4b19ed74b3f35c334561322c
@design_specification_outdoor_air_object_name.setter def design_specification_outdoor_air_object_name(self, value=None): 'Corresponds to IDD field `Design Specification Outdoor Air Object\n Name`' self['Design Specification Outdoor Air Object Name'] = value
Corresponds to IDD field `Design Specification Outdoor Air Object Name`
pyidf/zone_hvac_forced_air_units.py
design_specification_outdoor_air_object_name
marcelosalles/pyidf
19
python
@design_specification_outdoor_air_object_name.setter def design_specification_outdoor_air_object_name(self, value=None): 'Corresponds to IDD field `Design Specification Outdoor Air Object\n Name`' self['Design Specification Outdoor Air Object Name'] = value
@design_specification_outdoor_air_object_name.setter def design_specification_outdoor_air_object_name(self, value=None): 'Corresponds to IDD field `Design Specification Outdoor Air Object\n Name`' self['Design Specification Outdoor Air Object Name'] = value<|docstring|>Corresponds to IDD field `Design Specification Outdoor Air Object Name`<|endoftext|>
6d7947aa70ee70c2e404da705a83dadaf739b5b0780f2af035d9402da93268b3
@property def outdoor_air_inlet_node_name(self): 'field `Outdoor Air Inlet Node Name`\n\n | This field is required if the system provides outdoor air\n | Enter the name of an outdoor air node. This node name is also specified in\n | an OutdoorAir:Node or OutdoorAir:NodeList object.\n\n Args:\n value (str): value for IDD Field `Outdoor Air Inlet Node Name`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n str: the value of `outdoor_air_inlet_node_name` or None if not set\n\n ' return self['Outdoor Air Inlet Node Name']
field `Outdoor Air Inlet Node Name` | This field is required if the system provides outdoor air | Enter the name of an outdoor air node. This node name is also specified in | an OutdoorAir:Node or OutdoorAir:NodeList object. Args: value (str): value for IDD Field `Outdoor Air Inlet Node Name` Raises: ValueError: if `value` is not a valid value Returns: str: the value of `outdoor_air_inlet_node_name` or None if not set
pyidf/zone_hvac_forced_air_units.py
outdoor_air_inlet_node_name
marcelosalles/pyidf
19
python
@property def outdoor_air_inlet_node_name(self): 'field `Outdoor Air Inlet Node Name`\n\n | This field is required if the system provides outdoor air\n | Enter the name of an outdoor air node. This node name is also specified in\n | an OutdoorAir:Node or OutdoorAir:NodeList object.\n\n Args:\n value (str): value for IDD Field `Outdoor Air Inlet Node Name`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n str: the value of `outdoor_air_inlet_node_name` or None if not set\n\n ' return self['Outdoor Air Inlet Node Name']
@property def outdoor_air_inlet_node_name(self): 'field `Outdoor Air Inlet Node Name`\n\n | This field is required if the system provides outdoor air\n | Enter the name of an outdoor air node. This node name is also specified in\n | an OutdoorAir:Node or OutdoorAir:NodeList object.\n\n Args:\n value (str): value for IDD Field `Outdoor Air Inlet Node Name`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n str: the value of `outdoor_air_inlet_node_name` or None if not set\n\n ' return self['Outdoor Air Inlet Node Name']<|docstring|>field `Outdoor Air Inlet Node Name` | This field is required if the system provides outdoor air | Enter the name of an outdoor air node. This node name is also specified in | an OutdoorAir:Node or OutdoorAir:NodeList object. Args: value (str): value for IDD Field `Outdoor Air Inlet Node Name` Raises: ValueError: if `value` is not a valid value Returns: str: the value of `outdoor_air_inlet_node_name` or None if not set<|endoftext|>
9c13e1f5db860c0d795ef6156e1cac9212d63a318f8072834f1f6b97ff551667
@outdoor_air_inlet_node_name.setter def outdoor_air_inlet_node_name(self, value=None): 'Corresponds to IDD field `Outdoor Air Inlet Node Name`' self['Outdoor Air Inlet Node Name'] = value
Corresponds to IDD field `Outdoor Air Inlet Node Name`
pyidf/zone_hvac_forced_air_units.py
outdoor_air_inlet_node_name
marcelosalles/pyidf
19
python
@outdoor_air_inlet_node_name.setter def outdoor_air_inlet_node_name(self, value=None): self['Outdoor Air Inlet Node Name'] = value
@outdoor_air_inlet_node_name.setter def outdoor_air_inlet_node_name(self, value=None): self['Outdoor Air Inlet Node Name'] = value<|docstring|>Corresponds to IDD field `Outdoor Air Inlet Node Name`<|endoftext|>
6caf7136e5cf3e74f08076cd9c916196db61f9bef53cd87ef4fdaa4fbbcbb818
@property def demand_controlled_ventilation_type(self): 'field `Demand Controlled Ventilation Type`\n\n | This field controls how the minimum outdoor air flow rate is calculated.\n | None means that design occupancy will be used to compute the minimum outdoor air flow rate\n | OccupancySchedule means that current occupancy level will be used.\n | CO2Setpoint means that the design occupancy will be used to compute the minimum outdoor air flow\n | rate and the outdoor air flow rate may be increased if necessary to maintain the indoor air carbon\n | dioxide setpoint defined in a ZoneControl:ContaminantController object.\n | Default value: None\n\n Args:\n value (str): value for IDD Field `Demand Controlled Ventilation Type`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n str: the value of `demand_controlled_ventilation_type` or None if not set\n\n ' return self['Demand Controlled Ventilation Type']
field `Demand Controlled Ventilation Type` | This field controls how the minimum outdoor air flow rate is calculated. | None means that design occupancy will be used to compute the minimum outdoor air flow rate | OccupancySchedule means that current occupancy level will be used. | CO2Setpoint means that the design occupancy will be used to compute the minimum outdoor air flow | rate and the outdoor air flow rate may be increased if necessary to maintain the indoor air carbon | dioxide setpoint defined in a ZoneControl:ContaminantController object. | Default value: None Args: value (str): value for IDD Field `Demand Controlled Ventilation Type` Raises: ValueError: if `value` is not a valid value Returns: str: the value of `demand_controlled_ventilation_type` or None if not set
pyidf/zone_hvac_forced_air_units.py
demand_controlled_ventilation_type
marcelosalles/pyidf
19
python
@property def demand_controlled_ventilation_type(self): 'field `Demand Controlled Ventilation Type`\n\n | This field controls how the minimum outdoor air flow rate is calculated.\n | None means that design occupancy will be used to compute the minimum outdoor air flow rate\n | OccupancySchedule means that current occupancy level will be used.\n | CO2Setpoint means that the design occupancy will be used to compute the minimum outdoor air flow\n | rate and the outdoor air flow rate may be increased if necessary to maintain the indoor air carbon\n | dioxide setpoint defined in a ZoneControl:ContaminantController object.\n | Default value: None\n\n Args:\n value (str): value for IDD Field `Demand Controlled Ventilation Type`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n str: the value of `demand_controlled_ventilation_type` or None if not set\n\n ' return self['Demand Controlled Ventilation Type']
@property def demand_controlled_ventilation_type(self): 'field `Demand Controlled Ventilation Type`\n\n | This field controls how the minimum outdoor air flow rate is calculated.\n | None means that design occupancy will be used to compute the minimum outdoor air flow rate\n | OccupancySchedule means that current occupancy level will be used.\n | CO2Setpoint means that the design occupancy will be used to compute the minimum outdoor air flow\n | rate and the outdoor air flow rate may be increased if necessary to maintain the indoor air carbon\n | dioxide setpoint defined in a ZoneControl:ContaminantController object.\n | Default value: None\n\n Args:\n value (str): value for IDD Field `Demand Controlled Ventilation Type`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n str: the value of `demand_controlled_ventilation_type` or None if not set\n\n ' return self['Demand Controlled Ventilation Type']<|docstring|>field `Demand Controlled Ventilation Type` | This field controls how the minimum outdoor air flow rate is calculated. | None means that design occupancy will be used to compute the minimum outdoor air flow rate | OccupancySchedule means that current occupancy level will be used. | CO2Setpoint means that the design occupancy will be used to compute the minimum outdoor air flow | rate and the outdoor air flow rate may be increased if necessary to maintain the indoor air carbon | dioxide setpoint defined in a ZoneControl:ContaminantController object. | Default value: None Args: value (str): value for IDD Field `Demand Controlled Ventilation Type` Raises: ValueError: if `value` is not a valid value Returns: str: the value of `demand_controlled_ventilation_type` or None if not set<|endoftext|>
1fc82786e366d99e6bc10e15a544f6584ed2faac3d52996dd6389b7b14314517
@demand_controlled_ventilation_type.setter def demand_controlled_ventilation_type(self, value='None'): 'Corresponds to IDD field `Demand Controlled Ventilation Type`' self['Demand Controlled Ventilation Type'] = value
Corresponds to IDD field `Demand Controlled Ventilation Type`
pyidf/zone_hvac_forced_air_units.py
demand_controlled_ventilation_type
marcelosalles/pyidf
19
python
@demand_controlled_ventilation_type.setter def demand_controlled_ventilation_type(self, value='None'): self['Demand Controlled Ventilation Type'] = value
@demand_controlled_ventilation_type.setter def demand_controlled_ventilation_type(self, value='None'): self['Demand Controlled Ventilation Type'] = value<|docstring|>Corresponds to IDD field `Demand Controlled Ventilation Type`<|endoftext|>
c65130e5b508c0522cc4a532f31c633d382983c13a82c8039c4bff6e29f42d4f
@property def outdoor_air_economizer_type(self): 'field `Outdoor Air Economizer Type`\n\n | DifferentialDryBulb and DifferentialEnthalpy will increase the outdoor air flow rate\n | when there is a cooling load and the outdoor air temperature or enthalpy\n | is below the zone exhaust air temperature or enthalpy.\n | Default value: NoEconomizer\n\n Args:\n value (str): value for IDD Field `Outdoor Air Economizer Type`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n str: the value of `outdoor_air_economizer_type` or None if not set\n\n ' return self['Outdoor Air Economizer Type']
field `Outdoor Air Economizer Type` | DifferentialDryBulb and DifferentialEnthalpy will increase the outdoor air flow rate | when there is a cooling load and the outdoor air temperature or enthalpy | is below the zone exhaust air temperature or enthalpy. | Default value: NoEconomizer Args: value (str): value for IDD Field `Outdoor Air Economizer Type` Raises: ValueError: if `value` is not a valid value Returns: str: the value of `outdoor_air_economizer_type` or None if not set
pyidf/zone_hvac_forced_air_units.py
outdoor_air_economizer_type
marcelosalles/pyidf
19
python
@property def outdoor_air_economizer_type(self): 'field `Outdoor Air Economizer Type`\n\n | DifferentialDryBulb and DifferentialEnthalpy will increase the outdoor air flow rate\n | when there is a cooling load and the outdoor air temperature or enthalpy\n | is below the zone exhaust air temperature or enthalpy.\n | Default value: NoEconomizer\n\n Args:\n value (str): value for IDD Field `Outdoor Air Economizer Type`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n str: the value of `outdoor_air_economizer_type` or None if not set\n\n ' return self['Outdoor Air Economizer Type']
@property def outdoor_air_economizer_type(self): 'field `Outdoor Air Economizer Type`\n\n | DifferentialDryBulb and DifferentialEnthalpy will increase the outdoor air flow rate\n | when there is a cooling load and the outdoor air temperature or enthalpy\n | is below the zone exhaust air temperature or enthalpy.\n | Default value: NoEconomizer\n\n Args:\n value (str): value for IDD Field `Outdoor Air Economizer Type`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n str: the value of `outdoor_air_economizer_type` or None if not set\n\n ' return self['Outdoor Air Economizer Type']<|docstring|>field `Outdoor Air Economizer Type` | DifferentialDryBulb and DifferentialEnthalpy will increase the outdoor air flow rate | when there is a cooling load and the outdoor air temperature or enthalpy | is below the zone exhaust air temperature or enthalpy. | Default value: NoEconomizer Args: value (str): value for IDD Field `Outdoor Air Economizer Type` Raises: ValueError: if `value` is not a valid value Returns: str: the value of `outdoor_air_economizer_type` or None if not set<|endoftext|>
84dbce468c2170644bf208a6208a74c5a91ab3e460b23e3a7e7b72421b5cbbb7
@outdoor_air_economizer_type.setter def outdoor_air_economizer_type(self, value='NoEconomizer'): 'Corresponds to IDD field `Outdoor Air Economizer Type`' self['Outdoor Air Economizer Type'] = value
Corresponds to IDD field `Outdoor Air Economizer Type`
pyidf/zone_hvac_forced_air_units.py
outdoor_air_economizer_type
marcelosalles/pyidf
19
python
@outdoor_air_economizer_type.setter def outdoor_air_economizer_type(self, value='NoEconomizer'): self['Outdoor Air Economizer Type'] = value
@outdoor_air_economizer_type.setter def outdoor_air_economizer_type(self, value='NoEconomizer'): self['Outdoor Air Economizer Type'] = value<|docstring|>Corresponds to IDD field `Outdoor Air Economizer Type`<|endoftext|>
06d83e4c690f8e71d0ff5855aedd7edf16e9aa67df12b06be2c6b87f4aa7b24d
@property def heat_recovery_type(self): 'field `Heat Recovery Type`\n\n | Default value: None\n\n Args:\n value (str): value for IDD Field `Heat Recovery Type`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n str: the value of `heat_recovery_type` or None if not set\n\n ' return self['Heat Recovery Type']
field `Heat Recovery Type` | Default value: None Args: value (str): value for IDD Field `Heat Recovery Type` Raises: ValueError: if `value` is not a valid value Returns: str: the value of `heat_recovery_type` or None if not set
pyidf/zone_hvac_forced_air_units.py
heat_recovery_type
marcelosalles/pyidf
19
python
@property def heat_recovery_type(self): 'field `Heat Recovery Type`\n\n | Default value: None\n\n Args:\n value (str): value for IDD Field `Heat Recovery Type`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n str: the value of `heat_recovery_type` or None if not set\n\n ' return self['Heat Recovery Type']
@property def heat_recovery_type(self): 'field `Heat Recovery Type`\n\n | Default value: None\n\n Args:\n value (str): value for IDD Field `Heat Recovery Type`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n str: the value of `heat_recovery_type` or None if not set\n\n ' return self['Heat Recovery Type']<|docstring|>field `Heat Recovery Type` | Default value: None Args: value (str): value for IDD Field `Heat Recovery Type` Raises: ValueError: if `value` is not a valid value Returns: str: the value of `heat_recovery_type` or None if not set<|endoftext|>
f18d87922c91c34ab12662d66096f1d4bb37f259c1880b26720cdb49b9801244
@heat_recovery_type.setter def heat_recovery_type(self, value='None'): 'Corresponds to IDD field `Heat Recovery Type`' self['Heat Recovery Type'] = value
Corresponds to IDD field `Heat Recovery Type`
pyidf/zone_hvac_forced_air_units.py
heat_recovery_type
marcelosalles/pyidf
19
python
@heat_recovery_type.setter def heat_recovery_type(self, value='None'): self['Heat Recovery Type'] = value
@heat_recovery_type.setter def heat_recovery_type(self, value='None'): self['Heat Recovery Type'] = value<|docstring|>Corresponds to IDD field `Heat Recovery Type`<|endoftext|>
eb7be5ef47371e948a2fff4e68f0a338de8a8f8747e641c46074756134038212
@property def sensible_heat_recovery_effectiveness(self): 'field `Sensible Heat Recovery Effectiveness`\n\n | Units: dimensionless\n | Default value: 0.7\n | value <= 1.0\n\n Args:\n value (float): value for IDD Field `Sensible Heat Recovery Effectiveness`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n float: the value of `sensible_heat_recovery_effectiveness` or None if not set\n\n ' return self['Sensible Heat Recovery Effectiveness']
field `Sensible Heat Recovery Effectiveness` | Units: dimensionless | Default value: 0.7 | value <= 1.0 Args: value (float): value for IDD Field `Sensible Heat Recovery Effectiveness` Raises: ValueError: if `value` is not a valid value Returns: float: the value of `sensible_heat_recovery_effectiveness` or None if not set
pyidf/zone_hvac_forced_air_units.py
sensible_heat_recovery_effectiveness
marcelosalles/pyidf
19
python
@property def sensible_heat_recovery_effectiveness(self): 'field `Sensible Heat Recovery Effectiveness`\n\n | Units: dimensionless\n | Default value: 0.7\n | value <= 1.0\n\n Args:\n value (float): value for IDD Field `Sensible Heat Recovery Effectiveness`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n float: the value of `sensible_heat_recovery_effectiveness` or None if not set\n\n ' return self['Sensible Heat Recovery Effectiveness']
@property def sensible_heat_recovery_effectiveness(self): 'field `Sensible Heat Recovery Effectiveness`\n\n | Units: dimensionless\n | Default value: 0.7\n | value <= 1.0\n\n Args:\n value (float): value for IDD Field `Sensible Heat Recovery Effectiveness`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n float: the value of `sensible_heat_recovery_effectiveness` or None if not set\n\n ' return self['Sensible Heat Recovery Effectiveness']<|docstring|>field `Sensible Heat Recovery Effectiveness` | Units: dimensionless | Default value: 0.7 | value <= 1.0 Args: value (float): value for IDD Field `Sensible Heat Recovery Effectiveness` Raises: ValueError: if `value` is not a valid value Returns: float: the value of `sensible_heat_recovery_effectiveness` or None if not set<|endoftext|>
3e25e49f780eadf432cf7aa3fc0d2f40b46776571891dc48414f3e8cc821b251
@sensible_heat_recovery_effectiveness.setter def sensible_heat_recovery_effectiveness(self, value=0.7): 'Corresponds to IDD field `Sensible Heat Recovery Effectiveness`' self['Sensible Heat Recovery Effectiveness'] = value
Corresponds to IDD field `Sensible Heat Recovery Effectiveness`
pyidf/zone_hvac_forced_air_units.py
sensible_heat_recovery_effectiveness
marcelosalles/pyidf
19
python
@sensible_heat_recovery_effectiveness.setter def sensible_heat_recovery_effectiveness(self, value=0.7): self['Sensible Heat Recovery Effectiveness'] = value
@sensible_heat_recovery_effectiveness.setter def sensible_heat_recovery_effectiveness(self, value=0.7): self['Sensible Heat Recovery Effectiveness'] = value<|docstring|>Corresponds to IDD field `Sensible Heat Recovery Effectiveness`<|endoftext|>
08fa503444db5c75f20065a8c583b16d8a20b9d1a121939379258a4b441981a0
@property def latent_heat_recovery_effectiveness(self): 'field `Latent Heat Recovery Effectiveness`\n\n | Applicable only if Heat Recovery Type is Enthalpy.\n | Units: dimensionless\n | Default value: 0.65\n | value <= 1.0\n\n Args:\n value (float): value for IDD Field `Latent Heat Recovery Effectiveness`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n float: the value of `latent_heat_recovery_effectiveness` or None if not set\n\n ' return self['Latent Heat Recovery Effectiveness']
field `Latent Heat Recovery Effectiveness` | Applicable only if Heat Recovery Type is Enthalpy. | Units: dimensionless | Default value: 0.65 | value <= 1.0 Args: value (float): value for IDD Field `Latent Heat Recovery Effectiveness` Raises: ValueError: if `value` is not a valid value Returns: float: the value of `latent_heat_recovery_effectiveness` or None if not set
pyidf/zone_hvac_forced_air_units.py
latent_heat_recovery_effectiveness
marcelosalles/pyidf
19
python
@property def latent_heat_recovery_effectiveness(self): 'field `Latent Heat Recovery Effectiveness`\n\n | Applicable only if Heat Recovery Type is Enthalpy.\n | Units: dimensionless\n | Default value: 0.65\n | value <= 1.0\n\n Args:\n value (float): value for IDD Field `Latent Heat Recovery Effectiveness`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n float: the value of `latent_heat_recovery_effectiveness` or None if not set\n\n ' return self['Latent Heat Recovery Effectiveness']
@property def latent_heat_recovery_effectiveness(self): 'field `Latent Heat Recovery Effectiveness`\n\n | Applicable only if Heat Recovery Type is Enthalpy.\n | Units: dimensionless\n | Default value: 0.65\n | value <= 1.0\n\n Args:\n value (float): value for IDD Field `Latent Heat Recovery Effectiveness`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n float: the value of `latent_heat_recovery_effectiveness` or None if not set\n\n ' return self['Latent Heat Recovery Effectiveness']<|docstring|>field `Latent Heat Recovery Effectiveness` | Applicable only if Heat Recovery Type is Enthalpy. | Units: dimensionless | Default value: 0.65 | value <= 1.0 Args: value (float): value for IDD Field `Latent Heat Recovery Effectiveness` Raises: ValueError: if `value` is not a valid value Returns: float: the value of `latent_heat_recovery_effectiveness` or None if not set<|endoftext|>
64bb60a7ee934cc4fd4943b88bbebe726a4f7ba3a0b5b4d85e720296713e3035
@latent_heat_recovery_effectiveness.setter def latent_heat_recovery_effectiveness(self, value=0.65): 'Corresponds to IDD field `Latent Heat Recovery Effectiveness`' self['Latent Heat Recovery Effectiveness'] = value
Corresponds to IDD field `Latent Heat Recovery Effectiveness`
pyidf/zone_hvac_forced_air_units.py
latent_heat_recovery_effectiveness
marcelosalles/pyidf
19
python
@latent_heat_recovery_effectiveness.setter def latent_heat_recovery_effectiveness(self, value=0.65): self['Latent Heat Recovery Effectiveness'] = value
@latent_heat_recovery_effectiveness.setter def latent_heat_recovery_effectiveness(self, value=0.65): self['Latent Heat Recovery Effectiveness'] = value<|docstring|>Corresponds to IDD field `Latent Heat Recovery Effectiveness`<|endoftext|>
e22dc2ca7581756faf160f37f87e17946e6823b64cba016312c2a5a35936fb33
@property def design_specification_zonehvac_sizing_object_name(self): 'field `Design Specification ZoneHVAC Sizing Object Name`\n\n | Enter the name of a DesignSpecificationZoneHVACSizing object.\n\n Args:\n value (str): value for IDD Field `Design Specification ZoneHVAC Sizing Object Name`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n str: the value of `design_specification_zonehvac_sizing_object_name` or None if not set\n\n ' return self['Design Specification ZoneHVAC Sizing Object Name']
field `Design Specification ZoneHVAC Sizing Object Name` | Enter the name of a DesignSpecificationZoneHVACSizing object. Args: value (str): value for IDD Field `Design Specification ZoneHVAC Sizing Object Name` Raises: ValueError: if `value` is not a valid value Returns: str: the value of `design_specification_zonehvac_sizing_object_name` or None if not set
pyidf/zone_hvac_forced_air_units.py
design_specification_zonehvac_sizing_object_name
marcelosalles/pyidf
19
python
@property def design_specification_zonehvac_sizing_object_name(self): 'field `Design Specification ZoneHVAC Sizing Object Name`\n\n | Enter the name of a DesignSpecificationZoneHVACSizing object.\n\n Args:\n value (str): value for IDD Field `Design Specification ZoneHVAC Sizing Object Name`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n str: the value of `design_specification_zonehvac_sizing_object_name` or None if not set\n\n ' return self['Design Specification ZoneHVAC Sizing Object Name']
@property def design_specification_zonehvac_sizing_object_name(self): 'field `Design Specification ZoneHVAC Sizing Object Name`\n\n | Enter the name of a DesignSpecificationZoneHVACSizing object.\n\n Args:\n value (str): value for IDD Field `Design Specification ZoneHVAC Sizing Object Name`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n str: the value of `design_specification_zonehvac_sizing_object_name` or None if not set\n\n ' return self['Design Specification ZoneHVAC Sizing Object Name']<|docstring|>field `Design Specification ZoneHVAC Sizing Object Name` | Enter the name of a DesignSpecificationZoneHVACSizing object. Args: value (str): value for IDD Field `Design Specification ZoneHVAC Sizing Object Name` Raises: ValueError: if `value` is not a valid value Returns: str: the value of `design_specification_zonehvac_sizing_object_name` or None if not set<|endoftext|>
c4a5304706326768fb8ac75260fc557fa4d93624417102dac8ce5bc59056b944
@design_specification_zonehvac_sizing_object_name.setter def design_specification_zonehvac_sizing_object_name(self, value=None): 'Corresponds to IDD field `Design Specification ZoneHVAC Sizing\n Object Name`' self['Design Specification ZoneHVAC Sizing Object Name'] = value
Corresponds to IDD field `Design Specification ZoneHVAC Sizing Object Name`
pyidf/zone_hvac_forced_air_units.py
design_specification_zonehvac_sizing_object_name
marcelosalles/pyidf
19
python
@design_specification_zonehvac_sizing_object_name.setter def design_specification_zonehvac_sizing_object_name(self, value=None): 'Corresponds to IDD field `Design Specification ZoneHVAC Sizing\n Object Name`' self['Design Specification ZoneHVAC Sizing Object Name'] = value
@design_specification_zonehvac_sizing_object_name.setter def design_specification_zonehvac_sizing_object_name(self, value=None): 'Corresponds to IDD field `Design Specification ZoneHVAC Sizing\n Object Name`' self['Design Specification ZoneHVAC Sizing Object Name'] = value<|docstring|>Corresponds to IDD field `Design Specification ZoneHVAC Sizing Object Name`<|endoftext|>
baa9580e3558990cbbbd4a416ce889eff976cf9be75e811766c881d5e6f5aa2e
@property def name(self): 'field `Name`\n\n Args:\n value (str): value for IDD Field `Name`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n str: the value of `name` or None if not set\n\n ' return self['Name']
field `Name` Args: value (str): value for IDD Field `Name` Raises: ValueError: if `value` is not a valid value Returns: str: the value of `name` or None if not set
pyidf/zone_hvac_forced_air_units.py
name
marcelosalles/pyidf
19
python
@property def name(self): 'field `Name`\n\n Args:\n value (str): value for IDD Field `Name`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n str: the value of `name` or None if not set\n\n ' return self['Name']
@property def name(self): 'field `Name`\n\n Args:\n value (str): value for IDD Field `Name`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n str: the value of `name` or None if not set\n\n ' return self['Name']<|docstring|>field `Name` Args: value (str): value for IDD Field `Name` Raises: ValueError: if `value` is not a valid value Returns: str: the value of `name` or None if not set<|endoftext|>
b50e61290376b241698c1b041a66a959d7606fd2f3631a15fe0cc75c3fe60f11
@name.setter def name(self, value=None): 'Corresponds to IDD field `Name`' self['Name'] = value
Corresponds to IDD field `Name`
pyidf/zone_hvac_forced_air_units.py
name
marcelosalles/pyidf
19
python
@name.setter def name(self, value=None): self['Name'] = value
@name.setter def name(self, value=None): self['Name'] = value<|docstring|>Corresponds to IDD field `Name`<|endoftext|>
079b63d0fdbfe99ef787834a23c7db0ede0bcbf05728f2cbbeddda7a2a6af6e4
@property def availability_schedule_name(self): 'field `Availability Schedule Name`\n\n | Availability schedule name for this system. Schedule value > 0 means the system is available.\n | If this field is blank, the system is always available.\n\n Args:\n value (str): value for IDD Field `Availability Schedule Name`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n str: the value of `availability_schedule_name` or None if not set\n\n ' return self['Availability Schedule Name']
field `Availability Schedule Name` | Availability schedule name for this system. Schedule value > 0 means the system is available. | If this field is blank, the system is always available. Args: value (str): value for IDD Field `Availability Schedule Name` Raises: ValueError: if `value` is not a valid value Returns: str: the value of `availability_schedule_name` or None if not set
pyidf/zone_hvac_forced_air_units.py
availability_schedule_name
marcelosalles/pyidf
19
python
@property def availability_schedule_name(self): 'field `Availability Schedule Name`\n\n | Availability schedule name for this system. Schedule value > 0 means the system is available.\n | If this field is blank, the system is always available.\n\n Args:\n value (str): value for IDD Field `Availability Schedule Name`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n str: the value of `availability_schedule_name` or None if not set\n\n ' return self['Availability Schedule Name']
@property def availability_schedule_name(self): 'field `Availability Schedule Name`\n\n | Availability schedule name for this system. Schedule value > 0 means the system is available.\n | If this field is blank, the system is always available.\n\n Args:\n value (str): value for IDD Field `Availability Schedule Name`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n str: the value of `availability_schedule_name` or None if not set\n\n ' return self['Availability Schedule Name']<|docstring|>field `Availability Schedule Name` | Availability schedule name for this system. Schedule value > 0 means the system is available. | If this field is blank, the system is always available. Args: value (str): value for IDD Field `Availability Schedule Name` Raises: ValueError: if `value` is not a valid value Returns: str: the value of `availability_schedule_name` or None if not set<|endoftext|>
0c16d5e7b23cbfea5e4ff38beadfd6557d13a1a56631806b240011b0003e2b8d
@availability_schedule_name.setter def availability_schedule_name(self, value=None): 'Corresponds to IDD field `Availability Schedule Name`' self['Availability Schedule Name'] = value
Corresponds to IDD field `Availability Schedule Name`
pyidf/zone_hvac_forced_air_units.py
availability_schedule_name
marcelosalles/pyidf
19
python
@availability_schedule_name.setter def availability_schedule_name(self, value=None): self['Availability Schedule Name'] = value
@availability_schedule_name.setter def availability_schedule_name(self, value=None): self['Availability Schedule Name'] = value<|docstring|>Corresponds to IDD field `Availability Schedule Name`<|endoftext|>
f8aa5400377de2e6e29c1358e943f771901edf6c33cf5e3268533859547ec85d
@property def capacity_control_method(self): 'field `Capacity Control Method`\n\n Args:\n value (str): value for IDD Field `Capacity Control Method`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n str: the value of `capacity_control_method` or None if not set\n\n ' return self['Capacity Control Method']
field `Capacity Control Method` Args: value (str): value for IDD Field `Capacity Control Method` Raises: ValueError: if `value` is not a valid value Returns: str: the value of `capacity_control_method` or None if not set
pyidf/zone_hvac_forced_air_units.py
capacity_control_method
marcelosalles/pyidf
19
python
@property def capacity_control_method(self): 'field `Capacity Control Method`\n\n Args:\n value (str): value for IDD Field `Capacity Control Method`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n str: the value of `capacity_control_method` or None if not set\n\n ' return self['Capacity Control Method']
@property def capacity_control_method(self): 'field `Capacity Control Method`\n\n Args:\n value (str): value for IDD Field `Capacity Control Method`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n str: the value of `capacity_control_method` or None if not set\n\n ' return self['Capacity Control Method']<|docstring|>field `Capacity Control Method` Args: value (str): value for IDD Field `Capacity Control Method` Raises: ValueError: if `value` is not a valid value Returns: str: the value of `capacity_control_method` or None if not set<|endoftext|>
b9846d236c2d8b530e9c57dad74ba834f271936716578ea16ea5ecfb2e591cd3
@capacity_control_method.setter def capacity_control_method(self, value=None): 'Corresponds to IDD field `Capacity Control Method`' self['Capacity Control Method'] = value
Corresponds to IDD field `Capacity Control Method`
pyidf/zone_hvac_forced_air_units.py
capacity_control_method
marcelosalles/pyidf
19
python
@capacity_control_method.setter def capacity_control_method(self, value=None): self['Capacity Control Method'] = value
@capacity_control_method.setter def capacity_control_method(self, value=None): self['Capacity Control Method'] = value<|docstring|>Corresponds to IDD field `Capacity Control Method`<|endoftext|>
e7b7cdfb55196ea055eeb61296d8fac63983911466f2929ba17c9add8bf6a78d
@property def maximum_supply_air_flow_rate(self): 'field `Maximum Supply Air Flow Rate`\n\n | Units: m3/s\n\n Args:\n value (float or "Autosize"): value for IDD Field `Maximum Supply Air Flow Rate`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n float or "Autosize": the value of `maximum_supply_air_flow_rate` or None if not set\n\n ' return self['Maximum Supply Air Flow Rate']
field `Maximum Supply Air Flow Rate` | Units: m3/s Args: value (float or "Autosize"): value for IDD Field `Maximum Supply Air Flow Rate` Raises: ValueError: if `value` is not a valid value Returns: float or "Autosize": the value of `maximum_supply_air_flow_rate` or None if not set
pyidf/zone_hvac_forced_air_units.py
maximum_supply_air_flow_rate
marcelosalles/pyidf
19
python
@property def maximum_supply_air_flow_rate(self): 'field `Maximum Supply Air Flow Rate`\n\n | Units: m3/s\n\n Args:\n value (float or "Autosize"): value for IDD Field `Maximum Supply Air Flow Rate`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n float or "Autosize": the value of `maximum_supply_air_flow_rate` or None if not set\n\n ' return self['Maximum Supply Air Flow Rate']
@property def maximum_supply_air_flow_rate(self): 'field `Maximum Supply Air Flow Rate`\n\n | Units: m3/s\n\n Args:\n value (float or "Autosize"): value for IDD Field `Maximum Supply Air Flow Rate`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n float or "Autosize": the value of `maximum_supply_air_flow_rate` or None if not set\n\n ' return self['Maximum Supply Air Flow Rate']<|docstring|>field `Maximum Supply Air Flow Rate` | Units: m3/s Args: value (float or "Autosize"): value for IDD Field `Maximum Supply Air Flow Rate` Raises: ValueError: if `value` is not a valid value Returns: float or "Autosize": the value of `maximum_supply_air_flow_rate` or None if not set<|endoftext|>
bbef7acaaea6dead01599deb8d4111591eb0d7b03a206453fdb7dbba5328ce4c
@maximum_supply_air_flow_rate.setter def maximum_supply_air_flow_rate(self, value=None): 'Corresponds to IDD field `Maximum Supply Air Flow Rate`' self['Maximum Supply Air Flow Rate'] = value
Corresponds to IDD field `Maximum Supply Air Flow Rate`
pyidf/zone_hvac_forced_air_units.py
maximum_supply_air_flow_rate
marcelosalles/pyidf
19
python
@maximum_supply_air_flow_rate.setter def maximum_supply_air_flow_rate(self, value=None): self['Maximum Supply Air Flow Rate'] = value
@maximum_supply_air_flow_rate.setter def maximum_supply_air_flow_rate(self, value=None): self['Maximum Supply Air Flow Rate'] = value<|docstring|>Corresponds to IDD field `Maximum Supply Air Flow Rate`<|endoftext|>
d8845b3fd4731b007d528b02b4cb059781baa818d439e36a59faf8be08dd1f61
@property def low_speed_supply_air_flow_ratio(self): 'field `Low Speed Supply Air Flow Ratio`\n\n | Default value: 0.33\n\n Args:\n value (float): value for IDD Field `Low Speed Supply Air Flow Ratio`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n float: the value of `low_speed_supply_air_flow_ratio` or None if not set\n\n ' return self['Low Speed Supply Air Flow Ratio']
field `Low Speed Supply Air Flow Ratio` | Default value: 0.33 Args: value (float): value for IDD Field `Low Speed Supply Air Flow Ratio` Raises: ValueError: if `value` is not a valid value Returns: float: the value of `low_speed_supply_air_flow_ratio` or None if not set
pyidf/zone_hvac_forced_air_units.py
low_speed_supply_air_flow_ratio
marcelosalles/pyidf
19
python
@property def low_speed_supply_air_flow_ratio(self): 'field `Low Speed Supply Air Flow Ratio`\n\n | Default value: 0.33\n\n Args:\n value (float): value for IDD Field `Low Speed Supply Air Flow Ratio`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n float: the value of `low_speed_supply_air_flow_ratio` or None if not set\n\n ' return self['Low Speed Supply Air Flow Ratio']
@property def low_speed_supply_air_flow_ratio(self): 'field `Low Speed Supply Air Flow Ratio`\n\n | Default value: 0.33\n\n Args:\n value (float): value for IDD Field `Low Speed Supply Air Flow Ratio`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n float: the value of `low_speed_supply_air_flow_ratio` or None if not set\n\n ' return self['Low Speed Supply Air Flow Ratio']<|docstring|>field `Low Speed Supply Air Flow Ratio` | Default value: 0.33 Args: value (float): value for IDD Field `Low Speed Supply Air Flow Ratio` Raises: ValueError: if `value` is not a valid value Returns: float: the value of `low_speed_supply_air_flow_ratio` or None if not set<|endoftext|>
f2638286f6bde9edb3329001497eed0e785ebedcec2566967b35b43e1c756334
@low_speed_supply_air_flow_ratio.setter def low_speed_supply_air_flow_ratio(self, value=0.33): 'Corresponds to IDD field `Low Speed Supply Air Flow Ratio`' self['Low Speed Supply Air Flow Ratio'] = value
Corresponds to IDD field `Low Speed Supply Air Flow Ratio`
pyidf/zone_hvac_forced_air_units.py
low_speed_supply_air_flow_ratio
marcelosalles/pyidf
19
python
@low_speed_supply_air_flow_ratio.setter def low_speed_supply_air_flow_ratio(self, value=0.33): self['Low Speed Supply Air Flow Ratio'] = value
@low_speed_supply_air_flow_ratio.setter def low_speed_supply_air_flow_ratio(self, value=0.33): self['Low Speed Supply Air Flow Ratio'] = value<|docstring|>Corresponds to IDD field `Low Speed Supply Air Flow Ratio`<|endoftext|>
d6962539e3339a08321d5c1f4409edf793fb300002e47ce89311e9a754fef3fa
@property def medium_speed_supply_air_flow_ratio(self): 'field `Medium Speed Supply Air Flow Ratio`\n\n | Medium Speed Supply Air Flow Ratio should be greater\n | than Low Speed Supply Air Flow Ratio\n | Default value: 0.66\n\n Args:\n value (float): value for IDD Field `Medium Speed Supply Air Flow Ratio`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n float: the value of `medium_speed_supply_air_flow_ratio` or None if not set\n\n ' return self['Medium Speed Supply Air Flow Ratio']
field `Medium Speed Supply Air Flow Ratio` | Medium Speed Supply Air Flow Ratio should be greater | than Low Speed Supply Air Flow Ratio | Default value: 0.66 Args: value (float): value for IDD Field `Medium Speed Supply Air Flow Ratio` Raises: ValueError: if `value` is not a valid value Returns: float: the value of `medium_speed_supply_air_flow_ratio` or None if not set
pyidf/zone_hvac_forced_air_units.py
medium_speed_supply_air_flow_ratio
marcelosalles/pyidf
19
python
@property def medium_speed_supply_air_flow_ratio(self): 'field `Medium Speed Supply Air Flow Ratio`\n\n | Medium Speed Supply Air Flow Ratio should be greater\n | than Low Speed Supply Air Flow Ratio\n | Default value: 0.66\n\n Args:\n value (float): value for IDD Field `Medium Speed Supply Air Flow Ratio`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n float: the value of `medium_speed_supply_air_flow_ratio` or None if not set\n\n ' return self['Medium Speed Supply Air Flow Ratio']
@property def medium_speed_supply_air_flow_ratio(self): 'field `Medium Speed Supply Air Flow Ratio`\n\n | Medium Speed Supply Air Flow Ratio should be greater\n | than Low Speed Supply Air Flow Ratio\n | Default value: 0.66\n\n Args:\n value (float): value for IDD Field `Medium Speed Supply Air Flow Ratio`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n float: the value of `medium_speed_supply_air_flow_ratio` or None if not set\n\n ' return self['Medium Speed Supply Air Flow Ratio']<|docstring|>field `Medium Speed Supply Air Flow Ratio` | Medium Speed Supply Air Flow Ratio should be greater | than Low Speed Supply Air Flow Ratio | Default value: 0.66 Args: value (float): value for IDD Field `Medium Speed Supply Air Flow Ratio` Raises: ValueError: if `value` is not a valid value Returns: float: the value of `medium_speed_supply_air_flow_ratio` or None if not set<|endoftext|>
3fb7c72f503c5e85e620b63c2e070c09ceaf93132ac81bd7339ca8ad8416b714
@medium_speed_supply_air_flow_ratio.setter def medium_speed_supply_air_flow_ratio(self, value=0.66): 'Corresponds to IDD field `Medium Speed Supply Air Flow Ratio`' self['Medium Speed Supply Air Flow Ratio'] = value
Corresponds to IDD field `Medium Speed Supply Air Flow Ratio`
pyidf/zone_hvac_forced_air_units.py
medium_speed_supply_air_flow_ratio
marcelosalles/pyidf
19
python
@medium_speed_supply_air_flow_ratio.setter def medium_speed_supply_air_flow_ratio(self, value=0.66): self['Medium Speed Supply Air Flow Ratio'] = value
@medium_speed_supply_air_flow_ratio.setter def medium_speed_supply_air_flow_ratio(self, value=0.66): self['Medium Speed Supply Air Flow Ratio'] = value<|docstring|>Corresponds to IDD field `Medium Speed Supply Air Flow Ratio`<|endoftext|>
03614b25ef16987ce5a4cfad6d2bee43d3675d8ce0552f43b8122f64059e2521
@property def maximum_outdoor_air_flow_rate(self): 'field `Maximum Outdoor Air Flow Rate`\n\n | Units: m3/s\n\n Args:\n value (float or "Autosize"): value for IDD Field `Maximum Outdoor Air Flow Rate`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n float or "Autosize": the value of `maximum_outdoor_air_flow_rate` or None if not set\n\n ' return self['Maximum Outdoor Air Flow Rate']
field `Maximum Outdoor Air Flow Rate` | Units: m3/s Args: value (float or "Autosize"): value for IDD Field `Maximum Outdoor Air Flow Rate` Raises: ValueError: if `value` is not a valid value Returns: float or "Autosize": the value of `maximum_outdoor_air_flow_rate` or None if not set
pyidf/zone_hvac_forced_air_units.py
maximum_outdoor_air_flow_rate
marcelosalles/pyidf
19
python
@property def maximum_outdoor_air_flow_rate(self): 'field `Maximum Outdoor Air Flow Rate`\n\n | Units: m3/s\n\n Args:\n value (float or "Autosize"): value for IDD Field `Maximum Outdoor Air Flow Rate`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n float or "Autosize": the value of `maximum_outdoor_air_flow_rate` or None if not set\n\n ' return self['Maximum Outdoor Air Flow Rate']
@property def maximum_outdoor_air_flow_rate(self): 'field `Maximum Outdoor Air Flow Rate`\n\n | Units: m3/s\n\n Args:\n value (float or "Autosize"): value for IDD Field `Maximum Outdoor Air Flow Rate`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n float or "Autosize": the value of `maximum_outdoor_air_flow_rate` or None if not set\n\n ' return self['Maximum Outdoor Air Flow Rate']<|docstring|>field `Maximum Outdoor Air Flow Rate` | Units: m3/s Args: value (float or "Autosize"): value for IDD Field `Maximum Outdoor Air Flow Rate` Raises: ValueError: if `value` is not a valid value Returns: float or "Autosize": the value of `maximum_outdoor_air_flow_rate` or None if not set<|endoftext|>
fdb21267fa2711aad06cc7c899d7677d4b0ffe29dd370a3bab047a7d0bf7a213
@maximum_outdoor_air_flow_rate.setter def maximum_outdoor_air_flow_rate(self, value=None): 'Corresponds to IDD field `Maximum Outdoor Air Flow Rate`' self['Maximum Outdoor Air Flow Rate'] = value
Corresponds to IDD field `Maximum Outdoor Air Flow Rate`
pyidf/zone_hvac_forced_air_units.py
maximum_outdoor_air_flow_rate
marcelosalles/pyidf
19
python
@maximum_outdoor_air_flow_rate.setter def maximum_outdoor_air_flow_rate(self, value=None): self['Maximum Outdoor Air Flow Rate'] = value
@maximum_outdoor_air_flow_rate.setter def maximum_outdoor_air_flow_rate(self, value=None): self['Maximum Outdoor Air Flow Rate'] = value<|docstring|>Corresponds to IDD field `Maximum Outdoor Air Flow Rate`<|endoftext|>
ffbff403b8bb5a1fee9d6e6dcb98473c0b341d674747b6de996f8c471f3984c5
@property def outdoor_air_schedule_name(self): 'field `Outdoor Air Schedule Name`\n\n | Value of schedule multiplies maximum outdoor air flow rate\n\n Args:\n value (str): value for IDD Field `Outdoor Air Schedule Name`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n str: the value of `outdoor_air_schedule_name` or None if not set\n\n ' return self['Outdoor Air Schedule Name']
field `Outdoor Air Schedule Name` | Value of schedule multiplies maximum outdoor air flow rate Args: value (str): value for IDD Field `Outdoor Air Schedule Name` Raises: ValueError: if `value` is not a valid value Returns: str: the value of `outdoor_air_schedule_name` or None if not set
pyidf/zone_hvac_forced_air_units.py
outdoor_air_schedule_name
marcelosalles/pyidf
19
python
@property def outdoor_air_schedule_name(self): 'field `Outdoor Air Schedule Name`\n\n | Value of schedule multiplies maximum outdoor air flow rate\n\n Args:\n value (str): value for IDD Field `Outdoor Air Schedule Name`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n str: the value of `outdoor_air_schedule_name` or None if not set\n\n ' return self['Outdoor Air Schedule Name']
@property def outdoor_air_schedule_name(self): 'field `Outdoor Air Schedule Name`\n\n | Value of schedule multiplies maximum outdoor air flow rate\n\n Args:\n value (str): value for IDD Field `Outdoor Air Schedule Name`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n str: the value of `outdoor_air_schedule_name` or None if not set\n\n ' return self['Outdoor Air Schedule Name']<|docstring|>field `Outdoor Air Schedule Name` | Value of schedule multiplies maximum outdoor air flow rate Args: value (str): value for IDD Field `Outdoor Air Schedule Name` Raises: ValueError: if `value` is not a valid value Returns: str: the value of `outdoor_air_schedule_name` or None if not set<|endoftext|>
b1654b173644ebb9139fb6b357ff86517ba21d6f50048665670a20827ee43e76
@outdoor_air_schedule_name.setter def outdoor_air_schedule_name(self, value=None): 'Corresponds to IDD field `Outdoor Air Schedule Name`' self['Outdoor Air Schedule Name'] = value
Corresponds to IDD field `Outdoor Air Schedule Name`
pyidf/zone_hvac_forced_air_units.py
outdoor_air_schedule_name
marcelosalles/pyidf
19
python
@outdoor_air_schedule_name.setter def outdoor_air_schedule_name(self, value=None): self['Outdoor Air Schedule Name'] = value
@outdoor_air_schedule_name.setter def outdoor_air_schedule_name(self, value=None): self['Outdoor Air Schedule Name'] = value<|docstring|>Corresponds to IDD field `Outdoor Air Schedule Name`<|endoftext|>
af692e86a2c5c23e1aafbacd6ce3e92941081077c490f37f8e521a059d1733c8
@property def air_inlet_node_name(self): 'field `Air Inlet Node Name`\n\n Args:\n value (str): value for IDD Field `Air Inlet Node Name`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n str: the value of `air_inlet_node_name` or None if not set\n\n ' return self['Air Inlet Node Name']
field `Air Inlet Node Name` Args: value (str): value for IDD Field `Air Inlet Node Name` Raises: ValueError: if `value` is not a valid value Returns: str: the value of `air_inlet_node_name` or None if not set
pyidf/zone_hvac_forced_air_units.py
air_inlet_node_name
marcelosalles/pyidf
19
python
@property def air_inlet_node_name(self): 'field `Air Inlet Node Name`\n\n Args:\n value (str): value for IDD Field `Air Inlet Node Name`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n str: the value of `air_inlet_node_name` or None if not set\n\n ' return self['Air Inlet Node Name']
@property def air_inlet_node_name(self): 'field `Air Inlet Node Name`\n\n Args:\n value (str): value for IDD Field `Air Inlet Node Name`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n str: the value of `air_inlet_node_name` or None if not set\n\n ' return self['Air Inlet Node Name']<|docstring|>field `Air Inlet Node Name` Args: value (str): value for IDD Field `Air Inlet Node Name` Raises: ValueError: if `value` is not a valid value Returns: str: the value of `air_inlet_node_name` or None if not set<|endoftext|>
091248e7dfceaf53c89577d23f7f7aa08112a2fc886f0927d94edae7b77a767c
@air_inlet_node_name.setter def air_inlet_node_name(self, value=None): 'Corresponds to IDD field `Air Inlet Node Name`' self['Air Inlet Node Name'] = value
Corresponds to IDD field `Air Inlet Node Name`
pyidf/zone_hvac_forced_air_units.py
air_inlet_node_name
marcelosalles/pyidf
19
python
@air_inlet_node_name.setter def air_inlet_node_name(self, value=None): self['Air Inlet Node Name'] = value
@air_inlet_node_name.setter def air_inlet_node_name(self, value=None): self['Air Inlet Node Name'] = value<|docstring|>Corresponds to IDD field `Air Inlet Node Name`<|endoftext|>
ed82a8eaebb2e341d92bf1570616df1b798ff56fba46cac27d25c0a0b2ace2fc
@property def air_outlet_node_name(self): 'field `Air Outlet Node Name`\n\n Args:\n value (str): value for IDD Field `Air Outlet Node Name`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n str: the value of `air_outlet_node_name` or None if not set\n\n ' return self['Air Outlet Node Name']
field `Air Outlet Node Name` Args: value (str): value for IDD Field `Air Outlet Node Name` Raises: ValueError: if `value` is not a valid value Returns: str: the value of `air_outlet_node_name` or None if not set
pyidf/zone_hvac_forced_air_units.py
air_outlet_node_name
marcelosalles/pyidf
19
python
@property def air_outlet_node_name(self): 'field `Air Outlet Node Name`\n\n Args:\n value (str): value for IDD Field `Air Outlet Node Name`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n str: the value of `air_outlet_node_name` or None if not set\n\n ' return self['Air Outlet Node Name']
@property def air_outlet_node_name(self): 'field `Air Outlet Node Name`\n\n Args:\n value (str): value for IDD Field `Air Outlet Node Name`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n str: the value of `air_outlet_node_name` or None if not set\n\n ' return self['Air Outlet Node Name']<|docstring|>field `Air Outlet Node Name` Args: value (str): value for IDD Field `Air Outlet Node Name` Raises: ValueError: if `value` is not a valid value Returns: str: the value of `air_outlet_node_name` or None if not set<|endoftext|>
3efc4c2e95c035e61d3937e60fca8951e2846d6c89d97a070461f33a3682e489
@air_outlet_node_name.setter def air_outlet_node_name(self, value=None): 'Corresponds to IDD field `Air Outlet Node Name`' self['Air Outlet Node Name'] = value
Corresponds to IDD field `Air Outlet Node Name`
pyidf/zone_hvac_forced_air_units.py
air_outlet_node_name
marcelosalles/pyidf
19
python
@air_outlet_node_name.setter def air_outlet_node_name(self, value=None): self['Air Outlet Node Name'] = value
@air_outlet_node_name.setter def air_outlet_node_name(self, value=None): self['Air Outlet Node Name'] = value<|docstring|>Corresponds to IDD field `Air Outlet Node Name`<|endoftext|>
3f15dd0bcac100dcc84f68538d9e41ff7ed9b9863c87e65ec3223456423da702
@property def outdoor_air_mixer_object_type(self): 'field `Outdoor Air Mixer Object Type`\n\n | currently only one type OutdoorAir:Mixer object is available.\n\n Args:\n value (str): value for IDD Field `Outdoor Air Mixer Object Type`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n str: the value of `outdoor_air_mixer_object_type` or None if not set\n\n ' return self['Outdoor Air Mixer Object Type']
field `Outdoor Air Mixer Object Type` | currently only one type OutdoorAir:Mixer object is available. Args: value (str): value for IDD Field `Outdoor Air Mixer Object Type` Raises: ValueError: if `value` is not a valid value Returns: str: the value of `outdoor_air_mixer_object_type` or None if not set
pyidf/zone_hvac_forced_air_units.py
outdoor_air_mixer_object_type
marcelosalles/pyidf
19
python
@property def outdoor_air_mixer_object_type(self): 'field `Outdoor Air Mixer Object Type`\n\n | currently only one type OutdoorAir:Mixer object is available.\n\n Args:\n value (str): value for IDD Field `Outdoor Air Mixer Object Type`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n str: the value of `outdoor_air_mixer_object_type` or None if not set\n\n ' return self['Outdoor Air Mixer Object Type']
@property def outdoor_air_mixer_object_type(self): 'field `Outdoor Air Mixer Object Type`\n\n | currently only one type OutdoorAir:Mixer object is available.\n\n Args:\n value (str): value for IDD Field `Outdoor Air Mixer Object Type`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n str: the value of `outdoor_air_mixer_object_type` or None if not set\n\n ' return self['Outdoor Air Mixer Object Type']<|docstring|>field `Outdoor Air Mixer Object Type` | currently only one type OutdoorAir:Mixer object is available. Args: value (str): value for IDD Field `Outdoor Air Mixer Object Type` Raises: ValueError: if `value` is not a valid value Returns: str: the value of `outdoor_air_mixer_object_type` or None if not set<|endoftext|>
26a9ee0f00ed0b3f155f692f6daf4b8a9007f3b674e5a7beeead825b669b8d84
@outdoor_air_mixer_object_type.setter def outdoor_air_mixer_object_type(self, value=None): 'Corresponds to IDD field `Outdoor Air Mixer Object Type`' self['Outdoor Air Mixer Object Type'] = value
Corresponds to IDD field `Outdoor Air Mixer Object Type`
pyidf/zone_hvac_forced_air_units.py
outdoor_air_mixer_object_type
marcelosalles/pyidf
19
python
@outdoor_air_mixer_object_type.setter def outdoor_air_mixer_object_type(self, value=None): self['Outdoor Air Mixer Object Type'] = value
@outdoor_air_mixer_object_type.setter def outdoor_air_mixer_object_type(self, value=None): self['Outdoor Air Mixer Object Type'] = value<|docstring|>Corresponds to IDD field `Outdoor Air Mixer Object Type`<|endoftext|>
b4c66081fa4c0953eae2548bcc93e7f370acdce932e778ed7979e9fbc1bdaa01
@property def outdoor_air_mixer_name(self): 'field `Outdoor Air Mixer Name`\n\n Args:\n value (str): value for IDD Field `Outdoor Air Mixer Name`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n str: the value of `outdoor_air_mixer_name` or None if not set\n\n ' return self['Outdoor Air Mixer Name']
field `Outdoor Air Mixer Name` Args: value (str): value for IDD Field `Outdoor Air Mixer Name` Raises: ValueError: if `value` is not a valid value Returns: str: the value of `outdoor_air_mixer_name` or None if not set
pyidf/zone_hvac_forced_air_units.py
outdoor_air_mixer_name
marcelosalles/pyidf
19
python
@property def outdoor_air_mixer_name(self): 'field `Outdoor Air Mixer Name`\n\n Args:\n value (str): value for IDD Field `Outdoor Air Mixer Name`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n str: the value of `outdoor_air_mixer_name` or None if not set\n\n ' return self['Outdoor Air Mixer Name']
@property def outdoor_air_mixer_name(self): 'field `Outdoor Air Mixer Name`\n\n Args:\n value (str): value for IDD Field `Outdoor Air Mixer Name`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n str: the value of `outdoor_air_mixer_name` or None if not set\n\n ' return self['Outdoor Air Mixer Name']<|docstring|>field `Outdoor Air Mixer Name` Args: value (str): value for IDD Field `Outdoor Air Mixer Name` Raises: ValueError: if `value` is not a valid value Returns: str: the value of `outdoor_air_mixer_name` or None if not set<|endoftext|>
124e8f9cd7f1d8b232158e9b9a70c89f91198ff6f4d42939a43b732fa93aaae3
@outdoor_air_mixer_name.setter def outdoor_air_mixer_name(self, value=None): 'Corresponds to IDD field `Outdoor Air Mixer Name`' self['Outdoor Air Mixer Name'] = value
Corresponds to IDD field `Outdoor Air Mixer Name`
pyidf/zone_hvac_forced_air_units.py
outdoor_air_mixer_name
marcelosalles/pyidf
19
python
@outdoor_air_mixer_name.setter def outdoor_air_mixer_name(self, value=None): self['Outdoor Air Mixer Name'] = value
@outdoor_air_mixer_name.setter def outdoor_air_mixer_name(self, value=None): self['Outdoor Air Mixer Name'] = value<|docstring|>Corresponds to IDD field `Outdoor Air Mixer Name`<|endoftext|>
4b7a1cf08a6aed1e7b7fa5e88cf8e342663c2e37f38fe580e8fff2ce44f0f33c
@property def supply_air_fan_object_type(self): "field `Supply Air Fan Object Type`\n\n | Fan type must be according to capacity control method (see I/O)\n | For ConstantFanVariableFlow a Fan:OnOff or Fan:ConstantVolume is valid.\n | For CyclingFan, a Fan:OnOff is valid.\n | For VariableFanVariableFlow or VariableFanConstantFlow a Fan:VariableVolume is valid.\n | The fan's inlet node should be the same as the outdoor air mixer's mixed air node.\n\n Args:\n value (str): value for IDD Field `Supply Air Fan Object Type`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n str: the value of `supply_air_fan_object_type` or None if not set\n\n " return self['Supply Air Fan Object Type']
field `Supply Air Fan Object Type` | Fan type must be according to capacity control method (see I/O) | For ConstantFanVariableFlow a Fan:OnOff or Fan:ConstantVolume is valid. | For CyclingFan, a Fan:OnOff is valid. | For VariableFanVariableFlow or VariableFanConstantFlow a Fan:VariableVolume is valid. | The fan's inlet node should be the same as the outdoor air mixer's mixed air node. Args: value (str): value for IDD Field `Supply Air Fan Object Type` Raises: ValueError: if `value` is not a valid value Returns: str: the value of `supply_air_fan_object_type` or None if not set
pyidf/zone_hvac_forced_air_units.py
supply_air_fan_object_type
marcelosalles/pyidf
19
python
@property def supply_air_fan_object_type(self): "field `Supply Air Fan Object Type`\n\n | Fan type must be according to capacity control method (see I/O)\n | For ConstantFanVariableFlow a Fan:OnOff or Fan:ConstantVolume is valid.\n | For CyclingFan, a Fan:OnOff is valid.\n | For VariableFanVariableFlow or VariableFanConstantFlow a Fan:VariableVolume is valid.\n | The fan's inlet node should be the same as the outdoor air mixer's mixed air node.\n\n Args:\n value (str): value for IDD Field `Supply Air Fan Object Type`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n str: the value of `supply_air_fan_object_type` or None if not set\n\n " return self['Supply Air Fan Object Type']
@property def supply_air_fan_object_type(self): "field `Supply Air Fan Object Type`\n\n | Fan type must be according to capacity control method (see I/O)\n | For ConstantFanVariableFlow a Fan:OnOff or Fan:ConstantVolume is valid.\n | For CyclingFan, a Fan:OnOff is valid.\n | For VariableFanVariableFlow or VariableFanConstantFlow a Fan:VariableVolume is valid.\n | The fan's inlet node should be the same as the outdoor air mixer's mixed air node.\n\n Args:\n value (str): value for IDD Field `Supply Air Fan Object Type`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n str: the value of `supply_air_fan_object_type` or None if not set\n\n " return self['Supply Air Fan Object Type']<|docstring|>field `Supply Air Fan Object Type` | Fan type must be according to capacity control method (see I/O) | For ConstantFanVariableFlow a Fan:OnOff or Fan:ConstantVolume is valid. | For CyclingFan, a Fan:OnOff is valid. | For VariableFanVariableFlow or VariableFanConstantFlow a Fan:VariableVolume is valid. | The fan's inlet node should be the same as the outdoor air mixer's mixed air node. Args: value (str): value for IDD Field `Supply Air Fan Object Type` Raises: ValueError: if `value` is not a valid value Returns: str: the value of `supply_air_fan_object_type` or None if not set<|endoftext|>
0c4cb081334d6f54e59c4d31182289cd611a8f1ed925b69c3f7256619283ca58
@supply_air_fan_object_type.setter def supply_air_fan_object_type(self, value=None): 'Corresponds to IDD field `Supply Air Fan Object Type`' self['Supply Air Fan Object Type'] = value
Corresponds to IDD field `Supply Air Fan Object Type`
pyidf/zone_hvac_forced_air_units.py
supply_air_fan_object_type
marcelosalles/pyidf
19
python
@supply_air_fan_object_type.setter def supply_air_fan_object_type(self, value=None): self['Supply Air Fan Object Type'] = value
@supply_air_fan_object_type.setter def supply_air_fan_object_type(self, value=None): self['Supply Air Fan Object Type'] = value<|docstring|>Corresponds to IDD field `Supply Air Fan Object Type`<|endoftext|>
ece3da5536d71bdc16d630d311fa79f57e55b55e057a672eadb7291b4faa73a2
@property def supply_air_fan_name(self): 'field `Supply Air Fan Name`\n\n Args:\n value (str): value for IDD Field `Supply Air Fan Name`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n str: the value of `supply_air_fan_name` or None if not set\n\n ' return self['Supply Air Fan Name']
field `Supply Air Fan Name` Args: value (str): value for IDD Field `Supply Air Fan Name` Raises: ValueError: if `value` is not a valid value Returns: str: the value of `supply_air_fan_name` or None if not set
pyidf/zone_hvac_forced_air_units.py
supply_air_fan_name
marcelosalles/pyidf
19
python
@property def supply_air_fan_name(self): 'field `Supply Air Fan Name`\n\n Args:\n value (str): value for IDD Field `Supply Air Fan Name`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n str: the value of `supply_air_fan_name` or None if not set\n\n ' return self['Supply Air Fan Name']
@property def supply_air_fan_name(self): 'field `Supply Air Fan Name`\n\n Args:\n value (str): value for IDD Field `Supply Air Fan Name`\n\n Raises:\n ValueError: if `value` is not a valid value\n\n Returns:\n str: the value of `supply_air_fan_name` or None if not set\n\n ' return self['Supply Air Fan Name']<|docstring|>field `Supply Air Fan Name` Args: value (str): value for IDD Field `Supply Air Fan Name` Raises: ValueError: if `value` is not a valid value Returns: str: the value of `supply_air_fan_name` or None if not set<|endoftext|>