Source code for honeybee_energy_ph.properties.construction.opaque

# -*- coding: utf-8 -*-
# -*- Python Version: 2.7 -*-

"""Passive House properties for honeybee_energy.construction.opaque.OpaqueConstruction Objects"""

try:
    from typing import Any
except ImportError:
    pass  # Python 2.7


[docs] class OpaqueConstructionPhProperties_FromDictError(Exception): def __init__(self, _expected_types, _input_type): self.msg = 'Error: Expected type of "{}". Got: {}'.format(_expected_types, _input_type) super(OpaqueConstructionPhProperties_FromDictError, self).__init__(self.msg)
[docs] class OpaqueConstructionPhProperties(object): def __init__(self, _host=None): # type (Any) -> None self._host = _host self.id_num = 0 @property def host(self): return self._host
[docs] def duplicate(self, new_host=None): # type: (Any) -> OpaqueConstructionPhProperties return self.__copy__(new_host)
def __copy__(self, new_host=None): # type: (Any) -> OpaqueConstructionPhProperties host = new_host or self.host new_obj = self.__class__(host) new_obj.id_num = self.id_num return new_obj
[docs] def to_dict(self, abridged=False): # type: (bool) -> dict d = {} if abridged: d["type"] = "OpaqueConstructionPhPropertiesAbridged" else: d["type"] = "OpaqueConstructionPhProperties" d["id_num"] = self.id_num return {"ph": d}
[docs] @classmethod def from_dict(cls, _input_dict, host): # type: (dict, Any) -> OpaqueConstructionPhProperties valid_types = ( "OpaqueConstructionPhProperties", "OpaqueConstructionPhPropertiesAbridged", ) if _input_dict["type"] not in valid_types: raise OpaqueConstructionPhProperties_FromDictError(valid_types, _input_dict["type"]) new_obj = cls(host) new_obj.id_num = _input_dict["id_num"] return new_obj
def __str__(self): return "{}(id_num={!r})".format(self.__class__.__name__, self.id_num) def __repr__(self): return str(self)
[docs] def ToString(self): return str(self)