Skip to main content

A Python library for calculating thermal and optical properties of glazing systems

Project description

Berkeley Lab WINDOW Calc Engine (CalcEngine) Copyright (c) 2016 - 2023, The Regents of the University of California, through Lawrence Berkeley National Laboratory (subject to receipt of any required approvals from the U.S. Dept. of Energy). All rights reserved.

If you have questions about your rights to use or distribute this software, please contact Berkeley Lab's Innovation & Partnerships Office at IPO@lbl.gov.

NOTICE. This Software was developed under funding from the U.S. Department of Energy and the U.S. Government consequently retains certain rights. As such, the U.S. Government has been granted for itself and others acting on its behalf a paid-up, nonexclusive, irrevocable, worldwide license in the Software to reproduce, distribute copies to the public, prepare derivative works, and perform publicly and display publicly, and to permit other to do so.

pywincalc

This module provides a simplified method for calculating various thermal and optical properties of glazing systems.

Version 2 has substantially more features but the interface has also changed as a result. For help updating existing code see Migrating from version 1

Version 3 has additional features but should maintain compatability with code written for version 2 with the exception of cases creating user-defined shades. Some methods of creating gases and gaps have been deprecated. If you experience any problems updating code that creates user-defined shades to match the updated examples or problems with gaps or gases please let us know.

Table of contents

  1. Requirements
    1. Windows
    2. Linux/Mac
    3. Building from source
  2. Installation
    1. From PyPi
    2. Building from source
      1. Building From Source On Windows
  3. Use
    1. Overview
      1. Optical Calculations
      2. Thermal Calculations
    2. Units
    3. Optical Standards
      1. Optical Standard File
    4. Solid Layers
      1. Supported Solid Layer Types
    5. Gaps
    6. BSDF (Bidirectional scattering distribution function) Calculations
    7. Example Use Cases
      1. Examples
    8. pywincalc objects
      1. GlazingSystem
      2. Optical Results
        1. Matrix Optical Results
        2. Color Results
        3. Thermal IR Results
      3. Environmental Conditions
      4. Gases
        1. Predefined gases
        2. Custom gases
        3. Gas mixtures
      5. Pydoc Class Documentation
    9. CMA
      1. Context and Background
      2. THERM
      3. CMA Calculations
      4. CMA Examples
    10. Migrating from version 1
      1. Migrating Glazing_System
      2. Migrating Results
        1. Migrating Optical Results
        2. Migrating Thermal Results
    11. IGSDB v2 JSON format
    12. Changelog

Requirements

Windows

Windows requires a version of the Microsoft C++ redistributable >= the version of Visual Studio used to build the library. Currently the wheels on pypi are generated using Visual Studio 16 2019. However in general installing the latest version of the C++ runtime for your architecture should always be sufficient. Installation packages are available from Microsoft here: https://docs.microsoft.com/en-US/cpp/windows/latest-supported-vc-redist

Linux/Mac

The pre-built wheels provided at pypi should work on any x86/x64 version of Linux or Mac that supports at least C++17.

For M2 Macs pre-built wheels are not currently available. From our limited testing building from source (see below) should work. If you have experience problems building from source on a Mac using the M2 architecture please let us know.

Building from source

Git

CMake - Not required for installing from wheel files on Windows.

Install

From PyPi

Once any needed requirements have been installed:

pip install pywincalc

Building from source

Once the requirements have been installed this project can be built from source directly from the repository by

pip install git+https://github.com/LBNL-ETA/pyWinCalc.git

Building from source on windows

Building Python packages from source on Windows is more complicated than Mac/Linux. First the correct C++ compiler first needs to be installed as well as CMake. See https://wiki.python.org/moin/WindowsCompilers for more information about C++ compilers for Python packages on Windows. Once that has been installed pyWinCalc can be built following the build from source steps.

Use

Overview

We recognize that there is a fair amount of complexity in the functionality provided by this library. To attempt to mitigate this somewhat we have provided a selection of examples that we hope cover all potential use cases between them. It may be beneficial to begin by looking at whichever example(s) seem to cover your particular use case and then consulting the rest of this and other documentation.

For example, if you are interested in exploring the effect various gas fills have on glazing systems made from combinations of existing commercial glass products contained in the IGSDB you could look at the gaps_and_gases example.

Or if you are interested in seeing all of the possible optical results that can be calculated from the NFRC standard you can find them in the optical_results_NFRC.py example.

Most of the functionality provided by pywincalc is based around a glazing system. That is the solid and gap layers that make up a window not including frames or dividers. One exception is CMA calculations using frames are also provided, see the CMA section for more information about the CMA process and calculations.

For glazing systems calculations can be grouped into two broad categories: optical and thermal calculations.

In the context of this program optical and thermal refer to the algorithms used to perform the calculations and not the part of the spectrum used in the calculations. E.g. the calculation for the transmittance in the infrared spectrum is considered an optical calculation here not a thermal calculation.

Optical Calculations

Optical calculations are based on optical standards which are defined by .std files and are not affected by environmental conditions. The optical standards define various methods that can be used to generate optical results.

Since optical standards are free to define which methods are provided as well as the names of the methods pywincalcprovides a general way of calculating optical results via a optical_method_results method in the GlazingSystem class.

There are a few important exceptions to this. See the section on optical calculation details for more details.

Thermal Calculations

Currently only ISO 15099 thermal calculations are supported.

Thermal calculations depend on the environmental conditions and, in some cases, optical results calculated using specific methods. E.g. the SHGC calculations can depend on optical results calculated using the SOLAR method from the optical standard.

It is important to note that it is possible to calculate thermal results using an optical standard that does not necessarily conform to the ISO 15099 standard so care should be used when selecting which optical standard is used for thermal calculations.

Units

With the exception of wavelength values which are in microns all units are values are in SI base units. However for documentation some units are expressed as more common derived SI units when the values are equivalent. For example:

  • wavelengths: microns (m-6)
  • conductivity: w⋅m-1⋅K-1 because this is more common than m⋅kg⋅s−3⋅K−1 and 1 w⋅m-1⋅K-1 = 1 m⋅kg⋅s−3⋅K−1
  • temperature: Kelvin
  • pressure: pascals
  • thickness: meters
  • width/height: meters
  • etc...

Optical Standards

Calculations can be performed using predefined optical standards in the form that is expected by WINDOW. The path to the base standard files is all that needs to be passed. Any other files referenced by the standard file must be in the same directory (or specified as a relative directory from within the standard file).

Custom standards can be created by creating a new set of files following the same format.

As of version 3.0.0 the standards files are now bundled with the python package so there should be no longer be a need to clone the repository just to get the standards files.

As of version 3.0.0 optical_standard is no longer a required parameter for GlazingSystem. By default a glazing system created without an optical standard will use the NFRC standard as implemented in the W5_NFRC_2003.std file.

The path to the directory the bundled standards files are in is in the pywincalc.standard_path variable.

Optical Standard File

Optical standards used by pywincalc are defined using a standards file and usually several related files referenced by the standards file.

For an example standards file see W5_NFRC_2003.std

Each standards file contains sections that define the optical methods provided by the standard. In the W5 NFRC 2003 standard file the first method defined looks like this:

Name : SOLAR
Description : NFRC 300-2003 Solar
Source Spectrum : ASTM E891 Table 1 Direct AM1_5.ssp
Detector Spectrum : None
Wavelength Set : Source
Integration Rule : Trapezoidal
Minimum Wavelength : 0.3
Maximum Wavelength : 2.5

The most important part for using pywincalc is the name of the method. Since optical standard files can set anything for a name pywincalc has one generic method for calculating optical results and two other methods to handle exceptions to the generic rule: THERMAL IR and color calculations. See the section on optical calculation details for more on those two cases.

The choice of standards file affects what can be calculated because not all files implement all methods. For example the prEN_410.std file does not contain a definition of the THERMAL IR method.

Calculations that rely on specific methods will not work if the standard does not provide them. Since the prEN_410.std files does not contain a definition for the thermal IR method the pywincalc.calc_thermal_ir function will not work.

Solid layers

Solid layers define the glazing or shading products that make up a glazing system. There are several methods for creating solid layers currently supported which use two broad categories of data sources:

  • Data files exported from either Optics or the IGSDB
  • User-defined data which is data the user has obtained from some other source and needs to be transformed into data structures pywincalc recognizes.

In the examples files with "igsdb" in the name use data downloaded from the IGSDB. Files with "user_defined" in the name show how to create objects using data supplied by the user.

It is possible to use data IGSDB in conjunction with user-defined data. E.g. the example file perforated_screen_user_defined_geometry_igsdb_material uses data downloaded from the IGSDB for a shade material and combines that with a user-defined geometry to create a perforated screen.

Here are some examples of each method of creating a solid layer

Supported solid layer types

The following types of solid layers are currently supported:

  • Glazings that are represented as one set of measured wavelength data. Products that require deconstruction like some laminates and coated glass are not yet supported.
  • Venetian blinds (both horizontal and vertical)
  • Woven shades
  • Perforated screens
  • BSDF shades

Gaps

For systems with more than one solid layer each solid layer must be separated by a gap. The methods for creating gaps currently supported are:

  • From a selection of predefined gases. Current predefined gases are: Air, Argon, Krypton, Xeon.
  • From a mixture of predefined gases.
  • From creating a custom gas by providing molecular weight, specific heat ratio, and coefficients for specific heat at constant pressure (Cp), thermal conductivity, and viscosity.
  • From a mixture of custom gases.

As of version 3.0.0 vacuum gaps are supported.

For examples of each see gaps_and_gases.py in the examples directory.

BSDF Calculations

Shading products require BSDF calculations while glazings do not. If any layer passed to a glazing system is a shading layer the glazing system will also require a BSDF hemisphere. For examples see any of the shade examples e.g. venetian_blind_local_file.py

However it is possible to use BSDF calculations for a system with no shading products. To do so pass a BSDF hemisphere as in the examples with shading systems. For an example that also shows results that are only available for BSDF calculations see optical_results_NFRC.py

If a glazing system is given a BSDF hemisphere as a parameter it will always use that for optical calculations.

Example use cases

Since there are several ways of creating and combining layers plus different calculation options example scripts are provided in the /example directory.

These scripts use optical standards that are included with pywincalc. Some scripts use measured data for example products provided in the /examples/products directory.

A minimum example might look like this

import pywincalc

clear_3_path = "products/CLEAR_3.DAT"
clear_3 = pywincalc.parse_optics_file(clear_3_path)

solid_layers = [clear_3]

glazing_system = pywincalc.GlazingSystem(solid_layers=solid_layers)
print("Single Layer U-value: {u}".format(u=glazing_system.u()))

Please see the following examples which contain more information.

The examples names have the following meanings:

  1. igsdb means the example downloads data from the IGSDB
  2. user-defined means the example does not use a completely defined existing product. This could be anything from using a pre-defined material to make a shade to using user-defined measured spectral data.

NOTE: The igsdb examples require the python requests library and an API token for igsdb.lbl.gov. An API token can be obtained by creating an account there. See https://igsdb.lbl.gov/about/ for more information on creating an account.

Examples

Non-example files

These are files in the example folder that provide some functionality but are not calculation examples.

If there is something you are trying to calculate that does not exist as an example yet please contact us.

pywincalc objects

GlazingSystem

As of version 3.0.0 if you create a GlazingSystem without an optical standard it will default to using the NFRC optical standard and optical_standard is not required.

  • Constructor:
    • Requires parameters:
      • solid_layers
    • Optional parameters:
      • optical_standard Defaults to NFRC
      • gap_layers Defaults to no gap layers. If more than one solid layer is provided then len(solid_layers) - 1 gap_layers must be provided
      • width_meters Defaults to 1.0 meters
      • height_meters Defaults to 1.0 meters
      • environment Defaults to NFRC U environment
      • bsdf_hemisphere Defaults to no BSDF hemisphere. Required if any solid layers require BSDF calculations.
      • spectral_data_wavelength_range_method Defaults to full wavelength range.
      • number_visible_bands Defaults to 5. Not used if spectral_data_wavelength_range_method is set to full.
      • number_solar_bands Defaults to 10. Not used if spectral_data_wavelength_range_method is set to full.
  • Available calculation methods.
    • Thermal
      • u(theta=0, phi=0) Calculates the U-value for the system at incidence angle theta and phi
      • shgc(theta=0, phi=0) Calculates the SHGC value for the system at incidence angle theta and phi
      • layer_temperatures(TarcogSystemType, theta=0, phi=0) Calculates the temperature at each layer based on the given TarcogSystemType (U or SHGC) at theta and phi incidence angle. Returns a list of temperatures for each solid layer in K. Note that the TarcogSystemType is specifying the calculation methodology for this calculation which is independed of the environment used to construct the GlazingSystem. When U system is passed as a parameter the layer temperatures will be calculated for the given environments without taking solar radiation into account. When SHGC system is passed as a parameter solar radiation is taken into account.
      • solid_layers_effective_conductivities(TarcogSystemType, theta=0, phi=0) Calculates the effective conductivity for each solid layer based on the given TarcogSystemType (U or SHGC) at theta and phi incidence angle. Returns a list of effective conductivities for each solid layer. See note in layer_temperatures for the meaning of the TarcogSystemType parameter.
      • gap_layers_effective_conductivities(TarcogSystemType, theta=0, phi=0) Calculates the effective conductivity for each gap layer based on the given TarcogSystemType (U or SHGC) at theta and phi incidence angle. Returns a list of effective conductivities for each gap layer. See note in layer_temperatures for the meaning of the TarcogSystemType parameter.
      • system_effective_conductivities(TarcogSystemType, theta=0, phi=0) Calculates the effective conductivity for the entire system based on the given TarcogSystemType (U or SHGC) at theta and phi incidence angle. Returns a single value. See note in layer_temperatures for the meaning of the TarcogSystemType parameter.
    • Optical
      • optical_method_results(method_name, theta=0, phi=0) Calculates all optical results for the method in the optical standard with the name of method_name at theta and phi incidence angle. Returns an OpticalResults object containing all of the results. See Optical Results section below.
      • color(theta=0, phi=0) Calculates color results and theta and phi incidence angle. Returns a ColorResults object. See the Color Results section in Optical Results below.
Optical Calculations Details

Most optical results can be calculated by passing the name of the optical method to the optical_method_resultsmethod of the GlazingSystem. However there are two exceptions:

  1. Colors. Color calculations are calculated using three tristimulus optical methods, not one. In the NFRC standard provided these three methods are named COLOR_TRISTIMX, COLOR_TRISTIMY, and COLOR_TRISTIMZ. While it is possible to calculate results for each of these methods individually the results will not give accurate color information.
  2. THERMAL IRmethod. Thermal IR optical results are only available for a single layer and cannot be calculated for a system. These results should be calculated using the calc_thermal_irfunction.

Optical Results

There are two types of optical results available: those calculated from any method that is not a color method and color results. Color calculations are a special case and therefore have their own method used to calculate them and their own results structure. The differences between color results and other optical results is discussed in the section below.

An OpticalResults object has two parts: system_results and layer_results.

system_results apply to the system as a whole and are objects nested as follows: system_results.side.transmission_type.flux_type With the following options available for each

  • side: front, back
  • transmission_type: transmittance, reflectance
  • flux_type: direct_direct, direct_diffuse, direct_hemispherical, diffuse_diffuse, matrix
    • Note: direct_hemisperical = direct_direct + direct_diffuse

E.g. the direct-diffuse front reflectance is system_results.front.reflectance.direct_diffuse

layer_results contain a list of results corresponding to each solid layer. Results for both sides are provided for each layer. Currently the only supported result per side is absorptance. Absorptance is available for both direct and diffuse cases.

As of version 2.4.0 absorptance results are available as heat and electricity. Electricity absoprtance is only non-zero for layers with PV data. The following results are available for each side of each layer: total_direct, total_diffuse, heat_direct, heat_diffuse, electricity_direct, electricity_diffuse, direct, diffuse NOTE: direct and diffuse are deprecated and equal to total_direct and total_diffuse.

As of version 3.0.0 angular absorptance results are also available. These results are only available for systems that have a BSDF hemisphere.

E.g the diffuse back absorptance for the first solid layer is layer_results[0].back.absorptance.diffuse

Matrix Optical Results

Matrix results are only available for systems that have a BSDF basis. See the section on BSDF Calculations for information on how to create and use a BSDF basis. For systems with a BSDF basis the matrix result is a square matrix of the same size as the number of patches in the basis.

Color Results

The structure of color results is similar to, but different from, the structure of other optical results. There are two main differences. First individual layer results are not yet supported for colors. And second instead of one value at each flux type (direct-direct, direct-diffuse, etc...) color results have RGB, Lab, and Trichromatic values. Those represent the same result mapped into three common color spaces for convenience.

So while for other results results.front.transmittance.direct_direct would return a single value for colors that returns an object that contains RGB, Lab, and Trichromatic objects. E.g. to get the RGB blue value from a color result this is required: results.front.transmittance.direct_direct.rgb.B

Thermal IR Results

Thermal IR results are only available for a single layer and only have four results available. They are:

  1. transmittance_front_diffuse_diffuse
  2. transmittance_back_diffuse_diffuse
  3. emissivity_front_hemispheric
  4. emissivity_back_hemispheric

Environmental Conditions

Environmental conditions consists of two parts: the inside and outside environment. The exterior environment will be used as the environment before the first solid layer in the system and the interior environment will be used after the last solid layer in the system. Each contains the same fields. To use custom values for thermal calculations create an Environments object from inside and outside Environment objects. See environmental_conditions_user_defined.py

Environment fields:

  • air_temperature
  • pressure
  • convection_coefficient
  • coefficient_model
  • radiation_temperature
  • emissivity
  • air_speed
  • air_direction
  • direct_solar_radiation

Pre-constructed NFRC U and SHGC environments are available by calling pywincalc.nfrc_u_environments() and pywincalc.nfrc_shgc_environments()

Gases

There are several options for gases. Gases can be created either from pre-defined gases (e.g. Air, Argon, etc...), by supplying physical parameters to create arbitrary custom gases, or by mixtures containing either predefined or custom gases.

Predefined gases

Gases can be created from a PredefinedGasType. Current supported predefined gas types are: AIR, ARGON, KRYPTON, and XENON.

As of version 3.0.0 the below is deprecated. See See gaps_and_gases.py for the new method of creating gases.

A gap layer can be created from a predefined gas type like so:

gap_1 = pywincalc.Gap(pywincalc.PredefinedGasType.AIR, .0127)  # .0127 is gap thickness in meters
Custom gases

A CustomGasData object can be created by providing the following information:

  • Name
  • molecular_weight
  • specific_heat_ratio
  • Cp
    • Expressed as a GasCoefficients object with A, B, and C fields.
  • thermal_conductivity
    • Expressed as a GasCoefficients object with A, B, and C fields.
  • viscosity
    • Expressed as a GasCoefficients object with A, B, and C fields.

See gaps_and_gases.py for more on creating custom gases.

Gas mixtures

Gas mixtures can be created from custom and predefined gases by specifying the percentage of each in the mixtures.

As of version 3.0.0 the below is deprecated. See gaps_and_gases.py for the new method of creating gases.

# The following creates a gas that is 80% sulfur hexafluoride, 15% Argonm and 5% Air
gap_4_component_1 = pywincalc.CustomGasMixtureComponent(sulfur_hexafluoride, 0.8)
gap_4_component_2 = pywincalc.PredefinedGasMixtureComponent(pywincalc.PredefinedGasType.ARGON, .15)
gap_4_component_3 = pywincalc.PredefinedGasMixtureComponent(pywincalc.PredefinedGasType.AIR, .05)
gap_4 = pywincalc.Gap([gap_4_component_1, gap_4_component_2, gap_4_component_3], .025)  # 2.5mm thick gap

Pydoc Class Documentation

Complete class documentation generated by pydoc can be found here: https://github.com/LBNL-ETA/pyWinCalc/blob/main/pywincalc_class_documentation.html

CMA

Context and Background

See this paper for context and background about the CMA modeling process: Component Modeling Methodology for Predicting Thermal Performance of Non-Residential Fenestration Systems

THERM

In THERM, when inserting a glazing system, on the first Glazing Systems dialog box, instead of clicking the "Import" button, click the "NFRC CMA..." button. This will take you to a special "Insert Glazing System" dialog box specifically for the CMA calculation. The THMX file created when this THERM file is saved has the required CMA information in it for use with the pyWinCalc code.

CMA Calculations

The CMA calculation process can be summarized with the following steps:

  1. Create frames and spacer thmx CMA files in THERM. See previous section for the correct way to do this.
  2. Parse the thmx files using pywincalc.parse_thmx_file
  3. Get the effective conductivity for the spacer using pywincalc.get_spacer_keff
  4. Create a CMA window. Currently three configurations are supported: pywincalc.get_cma_window_single_vision, pywincalc.get_cma_window_double_vision_vertical, and pywincalc.get_cma_window_double_vision_horizontal.
  5. Get CMA results by calling pywincalc.calc_cma with the CMA window from step 4, the glazing system U, SHGC, and visibile transmittance, and the spacer keff from step 3. Note: The glazing system values can be calculated using a pywincalc.GlazingSystem (see glazing system examples above) or from other sources. However the dimensions of the glazing system used calculate those results should match the dimensions that will be used in the CMA window. pywincalc.CMAWindow provides a glazing_system_dimensions function that will return the appropriate glazing system size.

CMA Examples

The examples folder has the following examples:

  • cma_single_vision.py: Perform a CMA calculation for a single vision window using sample THERM frames and spacer thmx files and precalculated glazing system results.
  • cma_double_vision_vertical.py: Perform a CMA calculation for a double vision vertical window using sample THERM frames and spacer thmx files and precalculated glazing system results.
  • cma_double_vision_horizontal.py: Perform a CMA calculation for a double vision horizontal using sample THERM frames and spacer thmx files and precalculated glazing system results.
  • cma_single_vision_igsdb_parametric.py: An example of how a parametric calculation might be performed. Makes all possible double layer glazing systems from IGSDB glazing records with the inner layer set to generic clear 3mm glass. Runs CMA calculations on them using sample frames and spacers. Reports the systems with the highest and lowest U, SHGC, and visible transmittance.

Migrating from version plder versions

From version 2 to 3

Most of the interface in version 2 should work in version 3 with the exception of user-defined shades. Creating shades with user-defined data should hopefully be easier and clearer. There are now factory methods for each non-BSDF shade type: create_perforated_screen, create_venetian_blind and create_woven_shade. See perforated_screen_user_defined_geometry_and_user_defined_nband_material.py, perforated_screen_user_defined_geometry_igsdb_material.py, venetian_blind_user_defined_geometry_igsdb_material.py, venetian_blind_user_defined_geometry_user_defined_dual_band_material.py, vertical_venetian_user_defined_geometry_igsdb_material.py, or woven_shade_user_defined_geometry_igsdb_material.py

Creating gases and gaps has changed but the prior interface has been retained and flagged as deprecated. If you run into any problems with existing code and cannot easily convert it following the examples in gaps_and_gases.py contact us and hopefully we will be able to help.

From version 1

There were several interface changes that resulted from the new functionality. These changes are mostly contained in two places: The GlazingSystem constructor and the results structures. Each section will start with a guide on how to convert existing code and will follow with some rational and explination. This conversion will convert the code in the v1 example.py file to code that will work in v2.

# Code prior to line 16 in the v1 example.py does not need to be changed

# v1 code
glazing_system_single_layer = pywincalc.Glazing_System(solid_layers, gaps, standard, width, height)
u_results = glazing_system_single_layer.u() # calculate U-value according to ISO15099
print("Single Layer U-value: {u}".format(u=u_results.result))

# v2 code
glazing_system_single_layer = pywincalc.GlazingSystem(optical_standard=optical_standard, solid_layers=solid_layers, width=width, height=height, environment=pywincalc.nfrc_u_environments())
u_result = glazing_system_single_layer.u() # calculate U-value according to ISO15099
print("Single Layer U-value: {u}".format(u=u_result))

# These results are not available in the thermal results but are available in optical results
# See the section on available optical results for how to obtain them
print("Single Layer u t_sol: {t}".format(t=u_results.t_sol))
print("Single Layer u solar absorptances per layer: {a}".format(a=u_results.layer_solar_absorptances))

#v1 code 
shgc_results = glazing_system_single_layer.shgc() # calculate SHGC according to ISO15099
print("Single Layer SHGC: {shgc}".format(shgc=shgc_results.result))

# v2 code
# Important Note:  While it is still possible to calculate the SHGC value for the 
# glazing_system_single_layer system created above it will do so using the NFRC U 
# environments.  This will not result in the same SHGC as before.  To achieve the
# same SHGC as before a glazing system with the correct environment needs to be created

glazing_system_single_layer_nfrc_shgc_env = pywincalc.GlazingSystem(optical_standard=optical_standard, solid_layers=solid_layers, width=width, height=height, environment=pywincalc.nfrc_shgc_environments())
shgc_result = glazing_system_single_layer_nfrc_shgc_env.shgc() # calculate SHGC according to ISO15099
print("Single Layer SHGC: {shgc}".format(shgc=shgc_result))

# v1 code
# These results are not available in the thermal results but are available in optical results
# See the section on available optical results for how to obtain them
print("Single Layer SHGC t_sol: {t}".format(t=shgc_results.t_sol))
print("Single Layer SHGC solar absorptances per layer: {a}".format(a=shgc_results.layer_solar_absorptances))

#v1 code
solar_optical_results_single_layer = glazing_system_single_layer.all_method_values(pywincalc.Method_Type.SOLAR)

# v2 code
solar_optical_results_single_layer = glazing_system_single_layer.optical_method_results("SOLAR")

# v1 code
print("Single Layer Solar optical transmittance front direct-direct: {r}".format(r=solar_optical_results_single_layer.direct_direct.tf))

# v2 code
print("Single Layer Solar optical transmittance front direct-direct: {r}".format(r=solar_optical_results_single_layer.system_results.front.transmittance.direct_direct))

# v1 code
gap_1 = pywincalc.Gap_Data(pywincalc.Gas_Type.AIR, .0127) # .0127 is gap thickness in meters
gap_2 = pywincalc.Gap_Data(pywincalc.Gas_Type.ARGON, .02) # .02 is gap thickness in meters

# v2 code
gap_1 = pywincalc.Gap(pywincalc.PredefinedGasType.AIR, .0127)  # .0127 is gap thickness in meters
gap_2 = pywincalc.Gap_Data(pywincalc.PredefinedGasType.ARGON, .02) # .02 is gap thickness in meters

# v1 code
tf_rgb_results_triple_layer = color_results_triple_layer.direct_direct.tf.rgb
print("Triple Layer color results transmittance front direct-direct RGB: ({r}, {g}, {b})".format(r=tf_rgb_results_triple_layer.R, g=tf_rgb_results_triple_layer.G, b=tf_rgb_results_triple_layer.B))

# v2 code
tf_rgb_results_triple_layer = color_results_triple_layer.system_results.front.transmittance.direct_direct.rgb
print("Triple Layer color results transmittance front direct-direct RGB: ({r}, {g}, {b})".format(r=tf_rgb_results_triple_layer.R, g=tf_rgb_results_triple_layer.G, b=tf_rgb_results_triple_layer.B))

Migrating Glazing_System

First Glazing_System was changed to GlazingSystem to be more in line with python's naming conventions.

Second the GlazingSystem constructor parameter order changed and there are additional paramters that can be passed in. All parameters are now able to be passed using keywords. e.g.

glazing_system = pywincalc.GlazingSystem(optical_standard=optical_standard, solid_layers=solid_layers)

Finally there is a change to how environmental conditions are handled. In v1 GlazingSystem had two built-in environments -- NFRC U and NFRC SHGC. In v2 a GlazingSystem has one environment passed in as a parameter. This allows for any environmental conditions to be used in thermal calculations.

For convenience there are methods to get the NFRC envionmnents, pywincalc.nfrc_u_environments() and pywincalc.nfrc_shgc_environments() To create custom environments see the Environments section above.

However this means that some care should be taken when constructing glazing systems for thermal results. The NFRC U and SHGC environments are simply standardized environmental conditions used by NFRC to generate their respective thermal result. But any environmental conditions can be used to calculate both U and SHGC values.

For example, in the example.py file in v1 there is code to get U and SHGC values that looks like this

u_results = glazing_system_single_layer.u() # calculate U-value according to ISO15099
shgc_results = glazing_system_single_layer.shgc() # calculate SHGC according to ISO15099

That behavior used to calculate U and SHGC from the respective built-in environments. Now in order to do the equivalent two glazing systems need to be created:

glazing_system_nfrc_u_env = pywincalc.GlazingSystem(optical_standard=optical_standard, solid_layers=solid_layers, environment=pywincalc.nfrc_u_environments())
glazing_system_nfrc_shgc_env = pywincalc.GlazingSystem(optical_standard=optical_standard, solid_layers=solid_layers, environment=pywincalc.nfrc_shgc_environments())

nfrc_u_value = glazing_system_nfrc_u_env.u()
nfrc_shgc_value = glazing_system_nfrc_shgc_env.shgc()

Or one glazing system can be created with one set of environmental conditions, run calculations, and then change the environmental conditions and run different calculations:

glazing_system = pywincalc.GlazingSystem(optical_standard=optical_standard, solid_layers=solid_layers, environment=pywincalc.nfrc_u_environments())

nfrc_u_value = glazing_system.u()
glazing_system.environments(pywincalc.nfrc_shgc_environments())
nfrc_shgc_value = glazing_system.shgc()

Migrating Results

Migrating Optical Results

The all_method_results function has been renamed to optical_method_results. It still requires an optical method but now also accepts optional theta and phi values for angular calculations.

The top level object returned by the optical_method_results now has two components: system_results and layer_results. As the names imply system_results contains results that apply to the system as a whole while layer_results have results on a per-solid-layer basis.

Under system_results then it goes side (front or back), then transmittance or reflectance, then flux type (direct-direct, direct-diffuse, direct-hemispherical, diffuse-diffuse, or matrix)

Migrating Thermal Results

GlazingSystem.u() and GlazingSystem.shgc() now return single values Both u() and shgc() take optional theta and phi values for angular calculations. Both theta and phi default to zero so if neither are provided the result will be for normal incidence angle.

IGSDB v2 JSON format

Note: This should only be used for creating glazing layers with PV properties. This format is not yet supported for any other solid layer types.

Please refer to the generic_pv.json file provided for a working example.

Fields:

  • id: This field is required by the parser but not used in calculations.
    • Required: Yes
    • Allowed values:
      • any int
      • null
  • name: This field is required by the parser but not used in calculations.
    • Required: Yes
    • Allowed values:
      • any string (including empty string)
  • manufacturer: This field is required by the parser but not used in calculations.
    • Required: Yes
    • Allowed values:
      • any string (including empty string)
  • type: This field is required by the parser but not used in calculations.
    • Required: Yes
    • Allowed values:
      • any string (including empty string)
  • subtype:
    • Required: Optional in general but likely required for any PV layers.
    • Allowed values:
      • A string equal to one of the following (case insensitive):
        • "monolithic"
        • "coated-glass"
        • "coated"
        • "applied-film"
        • "applied film"
        • "laminate"
  • coated_side:
    • Required: Optional in general but likely required for any PV layers.
    • Allowed values:
      • A string equal to one of the following (case insensitive):
        • "front"
        • "back"
        • "both"
        • "neither"
        • "na"
  • power_properties: These are values used for PV calculations.
    • Required: Optional in general but required for any PV layers.
    • type: A list of objects where each object has the following properties:
      • temperature: In Kelvin
        • Allowed values:
          • A string that is convertible to a float.
      • values: A list of objects with the following properties:
        • jsc: short-circuit current density (Jsc) in solar cell [mA/cm2]
          • Allowed values:
            • A string that is convertible to a float.
        • voc: open-circuit voltage (Voc) in solar cell [V]
          • Allowed values:
            • A string that is convertible to a float.
        • ff: fill factor [-]
          • Allowed values:
            • A string that is convertible to a float.
    • Note: Currently only power properties for one temperature is supported. If power properties for multiple temperatures are provided only the first will be used.
  • predefined_tir_front:
    • Required: Optional in general. Required for calculating results requiring IR values if wavelength measurements do not extend to the IR.
    • Allowed values:
      • non-null float
  • predefined_tir_back:
    • Required: Optional in general. Required for calculating results requiring IR values if wavelength measurements do not extend to the IR.
    • Allowed values:
      • non-null float
  • predefined_emissivity_front:
    • Required: Optional in general. Required for calculating results requiring IR values if wavelength measurements do not extend to the IR.
    • Allowed values:
      • non-null float
  • predefined_emissivity_back:
    • Required: Optional in general. Required for calculating results requiring IR values if wavelength measurements do not extend to the IR.
    • Allowed values:
      • non-null float
  • thickness: Layer thickness in mm.
    • Required: Optional in general but likely required for any PV layers.
    • Allowed values:
      • non-null float
  • conductivity:
    • Required: Optional in general but likely required for any PV layers.
    • Allowed values:
      • non-null float
  • permeability_factor:
    • Required: Optional
    • Allowed values:
      • null
      • float
  • optical_properties:
    • Required: Yes.
    • Allowed values:
      • optical_data
    • optical_data:
      • Required: Yes.
      • Note: Currently only normal incidence values are supported. If multiple lists of angle_blocks are provided only the first will be used and it will be treated as normal incidence.
      • Allowed values:
        • angle_blocks
      • angle_blocks:
        • Required: Yes.
        • Allowed values:
          • wavelength_data
        • wavelength_data:
          • Required: Yes
          • Allowed values:
            • Object with these fields:
              • wavelength: The wavelength in microns
                • Required: Yes
                • Allowed values:
                  • A string that is convertible to a float.
              • specular: An object with these fields:
                • Required: Optional
                • tf: front surface transmittance
                  • Required: Yes
                  • Allowed values:
                    • A string that is convertible to a float.
                • tb: back surface transmittance
                  • Required: Yes
                  • Allowed values:
                    • A string that is convertible to a float.
                • rf: front surface reflectance
                  • Required: Yes
                  • Allowed values:
                    • A string that is convertible to a float.
                • rb: back surface reflectance
                  • Required: Yes
                  • Allowed values:
                    • A string that is convertible to a float.
              • pv: An object with these fields:
                • Required: Optional
                • eqef: front surface external quantum efficiency (EQE)
                  • Required: Yes
                  • Allowed values:
                    • A string that is convertible to a float.
                • eqeb: back surface external quantum efficiency (EQE)
                  • Required: Yes
                  • Allowed values:
                    • A string that is convertible to a float.

Changelog

v3.2.0

  • Added ability to model gaps with forced ventilation. See gap #7 in gaps_and_gases.py
  • Added the ability to use measured gap deflection in deflection calculations. See deflection.py
    • Note: This change involves a change to the argument names in set_deflection_properties when using temperature and pressure. Arguments are now named temperature_at_construction and pressure_at_construction to better reflect usage.

v3.0.0

  • Included optical standards with package installed from pypi.
  • Added angular absorptance to layer optical results for glazing systems with a BSDF hemisphere.
  • Added the ability to model vacuum gaps.
  • Added the ability to integrate BSDF matrices.
  • Refactored the method of creating user-defined shade layers.
  • Fixes for issues creating user-defined Venetian blinds.
  • Simplified and expanded examples. Changed the names of the examples to make finding functionality easier. Simplified the code in the examples to try to make them easier to understand.

v2.4.2

  • Changed the behavior of dual-band BSDF materials. Now if there a system only has a single layer that is a dual band BSDF and the requested optical method is solar or photopic the layer is treated as a single band using the appropritate band values. In all other cases the layer is created as a dual band layer as before. This change is needed so that the single layer calculated solar and visible properties are derived from the values specified for those bands in the input data.

v.2.4.0

  • Added the ability to use PV data.
    • Can now parse a modified subset of IGSDB v2 json format to create PV layers.
  • Layer absorptances now return separate heat and electricity values.
    • Available absoprtance results are now: total_direct, total_diffuse, heat_direct, heat_diffuse, electricity_direct, electricity_diffuse, direct, diffuse.
    • Direct and diffuse are equal to total_direct and total_diffuse. Direct and diffuse are deprecated.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

pywincalc-3.2.0-cp311-cp311-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.11 Windows x86-64

pywincalc-3.2.0-cp311-cp311-win32.whl (1.0 MB view details)

Uploaded CPython 3.11 Windows x86

pywincalc-3.2.0-cp311-cp311-macosx_13_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.11 macOS 13.0+ ARM64

pywincalc-3.2.0-cp311-cp311-macosx_12_0_universal2.whl (1.3 MB view details)

Uploaded CPython 3.11 macOS 12.0+ universal2 (ARM64, x86-64)

pywincalc-3.2.0-cp310-cp310-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.10 Windows x86-64

pywincalc-3.2.0-cp310-cp310-win32.whl (1.0 MB view details)

Uploaded CPython 3.10 Windows x86

pywincalc-3.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

pywincalc-3.2.0-cp310-cp310-macosx_13_0_universal2.whl (1.1 MB view details)

Uploaded CPython 3.10 macOS 13.0+ universal2 (ARM64, x86-64)

pywincalc-3.2.0-cp310-cp310-macosx_12_0_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.10 macOS 12.0+ x86-64

pywincalc-3.2.0-cp39-cp39-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.9 Windows x86-64

pywincalc-3.2.0-cp39-cp39-win32.whl (1.0 MB view details)

Uploaded CPython 3.9 Windows x86

pywincalc-3.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

pywincalc-3.2.0-cp39-cp39-macosx_13_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.9 macOS 13.0+ ARM64

pywincalc-3.2.0-cp39-cp39-macosx_12_0_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.9 macOS 12.0+ x86-64

pywincalc-3.2.0-cp38-cp38-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.8 Windows x86-64

pywincalc-3.2.0-cp38-cp38-win32.whl (1.0 MB view details)

Uploaded CPython 3.8 Windows x86

pywincalc-3.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

pywincalc-3.2.0-cp38-cp38-macosx_13_0_universal2.whl (1.1 MB view details)

Uploaded CPython 3.8 macOS 13.0+ universal2 (ARM64, x86-64)

pywincalc-3.2.0-cp38-cp38-macosx_10_9_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

pywincalc-3.2.0-cp37-cp37m-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.7m Windows x86-64

pywincalc-3.2.0-cp37-cp37m-win32.whl (1.0 MB view details)

Uploaded CPython 3.7m Windows x86

pywincalc-3.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

pywincalc-3.2.0-cp37-cp37m-macosx_12_0_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.7m macOS 12.0+ x86-64

pywincalc-3.2.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ x86-64

File details

Details for the file pywincalc-3.2.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for pywincalc-3.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 573906b7768b01d5f1370c54ee8c66056f5c7a8838a75d8fea09c74920bdd137
MD5 143bbb518ed801e5b8873a6362a36e2b
BLAKE2b-256 1a164c7b853b6f53495eda70c24f82c9c8c18c124b90a7f38379d4a2aa1dbaa3

See more details on using hashes here.

File details

Details for the file pywincalc-3.2.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: pywincalc-3.2.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.1

File hashes

Hashes for pywincalc-3.2.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 314e96816c8df075cd18bd550a079326e1eb170452044236d0bacc67a01edc44
MD5 72deba9946427857653b8a4b9be04ecf
BLAKE2b-256 3f32d8200857516a420d6c0a9ceb982912044934516babf730691974e7906cd2

See more details on using hashes here.

File details

Details for the file pywincalc-3.2.0-cp311-cp311-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for pywincalc-3.2.0-cp311-cp311-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 cead2c1143841d8673763c7d7f84b25024140b5fa7d834730707f0e9c02299d8
MD5 5a310f67c41d81513372961c6c70e454
BLAKE2b-256 27186b63830f66666ddeeb538e449fb2cbfc7c9aeee5dcda2438365ccc26cf1b

See more details on using hashes here.

File details

Details for the file pywincalc-3.2.0-cp311-cp311-macosx_12_0_universal2.whl.

File metadata

File hashes

Hashes for pywincalc-3.2.0-cp311-cp311-macosx_12_0_universal2.whl
Algorithm Hash digest
SHA256 f235ba25cbb3f56484b48e58f8e5fb3efe4f054c0ede8945401f3749d506fdc7
MD5 0c16a09ccd55c2ff1c1e6b6cddfdb964
BLAKE2b-256 5ff4f6e600c2c00cb5612e1ad8c1c6e7375d110ad7f8d723b088822795486884

See more details on using hashes here.

File details

Details for the file pywincalc-3.2.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for pywincalc-3.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b8ad465036eca50294ecf2799deee36ec0e863b8df80072072c64e0df04d89d7
MD5 22fb487834269925ff7b9a9ad8124e71
BLAKE2b-256 78744c073b07c799ec4cee76eb34fb214f4efb5146fa259e0231cfd4278a2554

See more details on using hashes here.

File details

Details for the file pywincalc-3.2.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: pywincalc-3.2.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.1

File hashes

Hashes for pywincalc-3.2.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 56382921b299ded55cadb6f75879db217b220c3ea90a30bc443fd11e9f3e26fc
MD5 0fbe1cb899f6ebae6dac87d82b4f2757
BLAKE2b-256 63ca4a2280d91ac2872a70a86707130c1750fb5e9b69eaeeb427aafbf18e69d9

See more details on using hashes here.

File details

Details for the file pywincalc-3.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pywincalc-3.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 650cfaae4a212216bfeb13bcd33e7b319e2784c9a191f1b38083105444e58025
MD5 823160b7027613354305b08a41f8e1a4
BLAKE2b-256 bcd1e091c1c5463c370c7a549dbba3c2c0d89459eb9891eff5b35a856cd283ab

See more details on using hashes here.

File details

Details for the file pywincalc-3.2.0-cp310-cp310-macosx_13_0_universal2.whl.

File metadata

File hashes

Hashes for pywincalc-3.2.0-cp310-cp310-macosx_13_0_universal2.whl
Algorithm Hash digest
SHA256 8b6c87a45f09be279434c86d6e4686698147a8735bf33731cc407389758f4fc4
MD5 bf8dc86d9ac75625653a704aa02d6ca8
BLAKE2b-256 5f5a229bc220492a811a23140485eb7b4a96490dbb83fac2e4584cf6df50dc99

See more details on using hashes here.

File details

Details for the file pywincalc-3.2.0-cp310-cp310-macosx_12_0_x86_64.whl.

File metadata

File hashes

Hashes for pywincalc-3.2.0-cp310-cp310-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 3cab039f4cb45a291bf87b06f6235cbec06f9ac51d8879864e8e82178cca228f
MD5 15b63aa28c7046a67e4220690bb592e4
BLAKE2b-256 62fa71f4dd4b9d6d377074a7467841d25d09c0a50092ff5438fa0fa0c8820c4f

See more details on using hashes here.

File details

Details for the file pywincalc-3.2.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pywincalc-3.2.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.1

File hashes

Hashes for pywincalc-3.2.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 952551f02869be8e16f763b430386fa134408d4c888f4a4e70d7bedfc1464cdc
MD5 772285ee77d969ed5f7b03c9e3a0876a
BLAKE2b-256 72ddd7f5a8de289016bc4f2a71c49d556ceb091bffceda36344d210fe89754f7

See more details on using hashes here.

File details

Details for the file pywincalc-3.2.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: pywincalc-3.2.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.1

File hashes

Hashes for pywincalc-3.2.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 cb3535a2ee2627404f1bc8295bce288fadbd8435b2b3648ed9302d6327297952
MD5 4738b7e6457b1405dc9bcefe541ae1ee
BLAKE2b-256 1914834c12fb52f51685072018245ebba12c0f642e90db4052772bd0b59db2fc

See more details on using hashes here.

File details

Details for the file pywincalc-3.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pywincalc-3.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7cbd9d838e4f88de84872f4eab01303a298f247329e8ad38f3d830ae1c220f9f
MD5 a00be6409dd58ecbdb8eb8f3c094a996
BLAKE2b-256 1060376ea5217bfa08fc487347ba94080a5691c8d0841514c9dc7b85f6314e0c

See more details on using hashes here.

File details

Details for the file pywincalc-3.2.0-cp39-cp39-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for pywincalc-3.2.0-cp39-cp39-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 099558fb983003440b9d2cd11830d8d027978ee317aaa649905bb96fb36d7957
MD5 4524667c52fba134054b9df4927bddea
BLAKE2b-256 61e44d91cf1f3baae1f6413c20e3385b20e18c62c8c1013e17410c72acf1f991

See more details on using hashes here.

File details

Details for the file pywincalc-3.2.0-cp39-cp39-macosx_12_0_x86_64.whl.

File metadata

File hashes

Hashes for pywincalc-3.2.0-cp39-cp39-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 f220199f6d7295ec43cb989be433ffcaef1269a429ac3a99432ae8b58f9b2cab
MD5 5c4d130e857dc561d734a2cec9e6c61d
BLAKE2b-256 852b353d5ba2ac817d3887590dd18df4d5515f89431b4c0bbca7cba14f083bf4

See more details on using hashes here.

File details

Details for the file pywincalc-3.2.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: pywincalc-3.2.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.1

File hashes

Hashes for pywincalc-3.2.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 7c6c46cfedcca7db684fc3989c7ed8f4e938f82af40927221704c2292e56a5d7
MD5 418f67a23168b1b602bf41746489edc3
BLAKE2b-256 1e6420d020606dece396e5cbced91f925de49796d4efbca02d5b21dc7a4fdf3c

See more details on using hashes here.

File details

Details for the file pywincalc-3.2.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: pywincalc-3.2.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.1

File hashes

Hashes for pywincalc-3.2.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 e2e69c07b2a39162c8749ddcfa856c47330b7d3702aaa2732e923c22fa216df9
MD5 b80396e6880fcb11d82a497f63688c70
BLAKE2b-256 9120cc7b95dd675ca49016c2314fd862b895c91bcb37d936e6c374de7c635e13

See more details on using hashes here.

File details

Details for the file pywincalc-3.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pywincalc-3.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 08a08e2db152c99d900ea74923396b077e98ab4846444903b279a4882c91ba83
MD5 8fb8593776db935b7e2eced27d5cc80d
BLAKE2b-256 f0635f0d9c716ca01cf14e37abbe01b126304bca7e4940c59c7587a83f13a290

See more details on using hashes here.

File details

Details for the file pywincalc-3.2.0-cp38-cp38-macosx_13_0_universal2.whl.

File metadata

File hashes

Hashes for pywincalc-3.2.0-cp38-cp38-macosx_13_0_universal2.whl
Algorithm Hash digest
SHA256 85f0c3d5875cef4347ff890836603ec9319e5f168add42492f2d1ed2ae5d5f34
MD5 54d018fce5d2bc5f7c9128120c05658e
BLAKE2b-256 8bd60da0108c9fd2ad1138759361b12f1b3aa249711e2fa534877558c4f3e74a

See more details on using hashes here.

File details

Details for the file pywincalc-3.2.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pywincalc-3.2.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4408b11bcaa7eeede99203f1c20cdb40d8297a92cd438a3ab638715816a2e631
MD5 6198199f9aed2cbfc7e174020552c165
BLAKE2b-256 321664d9e9c51e6a8931ba3dc6c453e7a3f4c8f14e86c7a644f564502de8c4ff

See more details on using hashes here.

File details

Details for the file pywincalc-3.2.0-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for pywincalc-3.2.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 2ad532f78402af6ecb3234267554bb63adc9b4825c8b1c99ac264c329b8f2359
MD5 95202b4908b4cff7e8ac6557425100f3
BLAKE2b-256 efe0d5dff46371b5a38e3801247026478c6f56d4593e46b8ccb03e8005afc7cc

See more details on using hashes here.

File details

Details for the file pywincalc-3.2.0-cp37-cp37m-win32.whl.

File metadata

  • Download URL: pywincalc-3.2.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.1

File hashes

Hashes for pywincalc-3.2.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 30e201220cc022f53bea1f07d3a0b6dd687a845db7851142fef4c80d60353cb1
MD5 b768aa4a42cabde95beee36c93ddf22d
BLAKE2b-256 366a90abd2a508de001c1eb4abd15f5363f73e1fde4909a36bdb800c49523d19

See more details on using hashes here.

File details

Details for the file pywincalc-3.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pywincalc-3.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 732624eb26829a8f561e7ae3b347327458153c2ba823bd8cffbddc0555c25ea9
MD5 b59a46a72a302bff8c03f3c40de956ee
BLAKE2b-256 7980968f349f2a9fe284b64887a0d40bd8be19dccc74e93ec4188ebb17fd3997

See more details on using hashes here.

File details

Details for the file pywincalc-3.2.0-cp37-cp37m-macosx_12_0_x86_64.whl.

File metadata

File hashes

Hashes for pywincalc-3.2.0-cp37-cp37m-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 deb0ca2889094302b53fa9a3ef5f2470530d2f53e2f155fbb9b2e9dfdd66fb06
MD5 00f06ad3eadadc0bc65cdcff4976e335
BLAKE2b-256 2576b2f4e9e41f9fc9936ebf98aebe530867de7158f029ca9c7d06c10c529bb3

See more details on using hashes here.

File details

Details for the file pywincalc-3.2.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pywincalc-3.2.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1c9deac3730343faab89392114ddaf74a25735ffa8cd8ae9ec6f58cb27426987
MD5 358aadaa763f60086307505fc9b055a9
BLAKE2b-256 e22fe602fd5ebb272de862c73c991a33988e3f021fa9baecaf953b60b579a8f0

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page