Skip to content

Commit c675f05

Browse files
Merge pull request #40 from LBNL-ETA/develop
Develop
2 parents f9b08e0 + c93c050 commit c675f05

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

CMakeLists-WinCalc.txt.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ include(ExternalProject)
44

55
ExternalProject_Add(wincalc
66
GIT_REPOSITORY https://github.com/LBNL-ETA/WinCalc.git
7-
GIT_TAG "develop"
7+
GIT_TAG "v2.3.0"
88

99
UPDATE_COMMAND ""
1010
PATCH_COMMAND ""

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = pywincalc
3-
version = 3.0.0
3+
version = 3.1.0
44
description = A Python library for calculating thermal and optical properties of glazing systems
55
long_description = file: README.md
66
long_description_content_type = text/markdown; charset=UTF-8

src/wincalcbindings.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -341,9 +341,12 @@ PYBIND11_MODULE(wincalcbindings, m) {
341341
std::shared_ptr<OpticsParser::ProductData>>(m, "ProductData")
342342
.def_readwrite("product_name", &OpticsParser::ProductData::productName)
343343
.def_readwrite("product_type", &OpticsParser::ProductData::productType)
344+
.def_readwrite("product_subtype", &OpticsParser::ProductData::productSubtype)
344345
.def_readwrite("nfrc_id", &OpticsParser::ProductData::nfrcid)
345346
.def_readwrite("thickness", &OpticsParser::ProductData::thickness)
346347
.def_readwrite("conductivity", &OpticsParser::ProductData::conductivity)
348+
.def_readwrite("coating_name", &OpticsParser::ProductData::coatingName)
349+
.def_readwrite("coated_side", &OpticsParser::ProductData::coatedSide)
347350
.def_readwrite("ir_transmittance",
348351
&OpticsParser::ProductData::IRTransmittance)
349352
.def_readwrite("emissivity_front",

0 commit comments

Comments
 (0)