honeybee-schema 1.53.1__py2.py3-none-any.whl → 1.53.2__py2.py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- honeybee_schema/energy/material.py +2 -0
- honeybee_schema/validation.py +19 -7
- {honeybee_schema-1.53.1.dist-info → honeybee_schema-1.53.2.dist-info}/METADATA +1 -1
- {honeybee_schema-1.53.1.dist-info → honeybee_schema-1.53.2.dist-info}/RECORD +8 -8
- {honeybee_schema-1.53.1.dist-info → honeybee_schema-1.53.2.dist-info}/LICENSE +0 -0
- {honeybee_schema-1.53.1.dist-info → honeybee_schema-1.53.2.dist-info}/WHEEL +0 -0
- {honeybee_schema-1.53.1.dist-info → honeybee_schema-1.53.2.dist-info}/entry_points.txt +0 -0
- {honeybee_schema-1.53.1.dist-info → honeybee_schema-1.53.2.dist-info}/top_level.txt +0 -0
| @@ -311,6 +311,8 @@ class EnergyWindowMaterialGlazing(IDdEnergyBaseModel): | |
| 311 311 |  | 
| 312 312 | 
             
                solar_reflectance_back: Union[Autocalculate, float] = Field(
         | 
| 313 313 | 
             
                    default=Autocalculate(),
         | 
| 314 | 
            +
                    ge=0,
         | 
| 315 | 
            +
                    le=1,
         | 
| 314 316 | 
             
                    description='Reflectance of solar radiation off of the back side of the glass at'
         | 
| 315 317 | 
             
                    ' normal incidence, averaged over the solar spectrum.'
         | 
| 316 318 | 
             
                )
         | 
    
        honeybee_schema/validation.py
    CHANGED
    
    | @@ -5,7 +5,7 @@ from enum import Enum | |
| 5 5 |  | 
| 6 6 |  | 
| 7 7 | 
             
            class ExtensionTypes(str, Enum):
         | 
| 8 | 
            -
                """Types of Honeybee extensions."""
         | 
| 8 | 
            +
                """Types of Honeybee/Dragonfly extensions."""
         | 
| 9 9 | 
             
                core = 'Core'
         | 
| 10 10 | 
             
                radiance = 'Radiance'
         | 
| 11 11 | 
             
                energy = 'Energy'
         | 
| @@ -31,6 +31,10 @@ class ObjectTypes(str, Enum): | |
| 31 31 | 
             
                program_type = 'ProgramType'
         | 
| 32 32 | 
             
                hvac = 'HVAC'
         | 
| 33 33 | 
             
                shw = 'SHW'
         | 
| 34 | 
            +
                roof_spec = 'RoofSpecification'
         | 
| 35 | 
            +
                room_2d = 'Room2D'
         | 
| 36 | 
            +
                story = 'Story'
         | 
| 37 | 
            +
                building = 'Building'
         | 
| 34 38 |  | 
| 35 39 |  | 
| 36 40 | 
             
            class ParentTypes(str, Enum):
         | 
| @@ -39,6 +43,8 @@ class ParentTypes(str, Enum): | |
| 39 43 | 
             
                door = 'Door'
         | 
| 40 44 | 
             
                face = 'Face'
         | 
| 41 45 | 
             
                room = 'Room'
         | 
| 46 | 
            +
                story = 'Story'
         | 
| 47 | 
            +
                building = 'Building'
         | 
| 42 48 |  | 
| 43 49 |  | 
| 44 50 | 
             
            class ValidationParent(BaseModel):
         | 
| @@ -142,18 +148,24 @@ class ValidationReport(BaseModel): | |
| 142 148 |  | 
| 143 149 | 
             
                type: constr(regex='^ValidationReport$') = 'ValidationReport'
         | 
| 144 150 |  | 
| 145 | 
            -
                 | 
| 151 | 
            +
                app_name: str = Field(
         | 
| 152 | 
            +
                    'Honeybee',
         | 
| 153 | 
            +
                    description='Text string for the name of the application that performed '
         | 
| 154 | 
            +
                    'the validation. This is typically either Honeybee or Dragonfly.'
         | 
| 155 | 
            +
                )
         | 
| 156 | 
            +
             | 
| 157 | 
            +
                app_version: str = Field(
         | 
| 146 158 | 
             
                    ...,
         | 
| 147 159 | 
             
                    regex=r'([0-9]+)\.([0-9]+)\.([0-9]+)',
         | 
| 148 | 
            -
                    description='Text string for the version of honeybee-core  | 
| 149 | 
            -
                    'performed the validation.'
         | 
| 160 | 
            +
                    description='Text string for the version of honeybee-core or dragonfly-core '
         | 
| 161 | 
            +
                    'that performed the validation.'
         | 
| 150 162 | 
             
                )
         | 
| 151 163 |  | 
| 152 | 
            -
                 | 
| 164 | 
            +
                schema_version: str = Field(
         | 
| 153 165 | 
             
                    ...,
         | 
| 154 166 | 
             
                    regex=r'([0-9]+)\.([0-9]+)\.([0-9]+)',
         | 
| 155 | 
            -
                    description='Text string for the version of honeybee-schema  | 
| 156 | 
            -
                    'performed the validation.'
         | 
| 167 | 
            +
                    description='Text string for the version of honeybee-schema or dragonfly-schema '
         | 
| 168 | 
            +
                    'that performed the validation.'
         | 
| 157 169 | 
             
                )
         | 
| 158 170 |  | 
| 159 171 | 
             
                valid: bool = Field(
         | 
| @@ -7,7 +7,7 @@ honeybee_schema/cli.py,sha256=QhhgNsgz55FBmJuHrg16nQoEmzD9ZIL6ugD2lofQqMg,4387 | |
| 7 7 | 
             
            honeybee_schema/comparison.py,sha256=I2CCDmPLl-awBhGkSVd8b9yZncn8u2wUE-wBePrbB3c,8006
         | 
| 8 8 | 
             
            honeybee_schema/geometry.py,sha256=192jMkdzYe2qITb1jketXmlhVAJwLtPo8Mrwj6jTsY0,3338
         | 
| 9 9 | 
             
            honeybee_schema/model.py,sha256=TymhCL_ae9Ux4g5oKFtzJE-sP7wH2HSiBvMTi8chuAw,12828
         | 
| 10 | 
            -
            honeybee_schema/validation.py,sha256= | 
| 10 | 
            +
            honeybee_schema/validation.py,sha256=JGyu2c33VcuTaS_dvvdeOLLgaMrh8S5e2A9u6hVr3zQ,5838
         | 
| 11 11 | 
             
            honeybee_schema/energy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
         | 
| 12 12 | 
             
            honeybee_schema/energy/_base.py,sha256=drAW-DguuwB2ahBGG1lboGcfJKJESnXjyAWicMtjQ-U,2305
         | 
| 13 13 | 
             
            honeybee_schema/energy/construction.py,sha256=1HldU4TO5vy4y4oCFt7GPsLBRaOJSbDPQgQX6OrWsWU,12742
         | 
| @@ -17,7 +17,7 @@ honeybee_schema/energy/designday.py,sha256=as5OCxNAqU549NRlCQms10X1ylFr-oayTKH0w | |
| 17 17 | 
             
            honeybee_schema/energy/global_constructionset.py,sha256=Dym_36OPtxSJof0_UMDB98zDio6ubh56j9nfbWIk6_c,4958
         | 
| 18 18 | 
             
            honeybee_schema/energy/internalmass.py,sha256=QBHGnoem9ZxwoU7Dii02HGCPDJt13Q6yIMEU9vcdZPc,771
         | 
| 19 19 | 
             
            honeybee_schema/energy/load.py,sha256=MPvOQdv5HzimlLjW9v5IzaJy-AKQwczZxXwjfnYmLls,19952
         | 
| 20 | 
            -
            honeybee_schema/energy/material.py,sha256= | 
| 20 | 
            +
            honeybee_schema/energy/material.py,sha256=vdfvTaTpMRDoomzb91ujLdbxOxFY_pHdTfXxiNbD91k,28276
         | 
| 21 21 | 
             
            honeybee_schema/energy/programtype.py,sha256=1keIS_BX8pKSUtjE4PJ1PP-Tbs5KQVwtsQ0RNdiACUE,4307
         | 
| 22 22 | 
             
            honeybee_schema/energy/properties.py,sha256=p12f5mH3Sjl8TpYu7GaYVHUrWbN5T0-mTbpO9DAmfUo,12674
         | 
| 23 23 | 
             
            honeybee_schema/energy/schedule.py,sha256=x0b1uCTo-qkZN3Dd2ILd5024GNz6LHWjpALlFYgxN8Q,12696
         | 
| @@ -45,9 +45,9 @@ honeybee_schema/updater/version_1_40_1.py,sha256=Fx70M8H9HZ_apCkdFn6njEd6lG9ZWrl | |
| 45 45 | 
             
            honeybee_schema/updater/version_1_43_1.py,sha256=0kZ1z7MzBhToljgOUCGWaTW1mq2F72oS39jn9sEf5mU,932
         | 
| 46 46 | 
             
            honeybee_schema/updater/version_1_43_2.py,sha256=XnPCdpjVN3hFzZqIIEjX4BYTtCxuIYCuO96n_y64aVw,617
         | 
| 47 47 | 
             
            honeybee_schema/updater/version_1_43_5.py,sha256=ci790Qh7xtRtgMj_RdldBXCScwiBkvMt2K1Mpe7oWQE,499
         | 
| 48 | 
            -
            honeybee_schema-1.53. | 
| 49 | 
            -
            honeybee_schema-1.53. | 
| 50 | 
            -
            honeybee_schema-1.53. | 
| 51 | 
            -
            honeybee_schema-1.53. | 
| 52 | 
            -
            honeybee_schema-1.53. | 
| 53 | 
            -
            honeybee_schema-1.53. | 
| 48 | 
            +
            honeybee_schema-1.53.2.dist-info/LICENSE,sha256=EwA6Jt85TmMNyAsFb5GWv-tZ0vGYo8hZHBMcI391qjw,1709
         | 
| 49 | 
            +
            honeybee_schema-1.53.2.dist-info/METADATA,sha256=GvSYka5uswUxQwsIhhsc1u6L1xz3t0jqLMA-8rsR__w,2505
         | 
| 50 | 
            +
            honeybee_schema-1.53.2.dist-info/WHEEL,sha256=unfA4MOaH0icIyIA5oH6E2sn2Hq5zKtLlHsWapZGwes,110
         | 
| 51 | 
            +
            honeybee_schema-1.53.2.dist-info/entry_points.txt,sha256=suHpy6-iPhAylFCa-KopQHRJIwLhTCIVO2NHMzdEn8M,61
         | 
| 52 | 
            +
            honeybee_schema-1.53.2.dist-info/top_level.txt,sha256=rTScYvlcOBkdc0is-F6Q3tRkmy-vf4bMTJGXzsxI2sA,16
         | 
| 53 | 
            +
            honeybee_schema-1.53.2.dist-info/RECORD,,
         | 
| 
            File without changes
         | 
| 
            File without changes
         | 
| 
            File without changes
         | 
| 
            File without changes
         |