Skip to content

Commit

Permalink
Merge pull request #40 from LBNL-ETA/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
StephenCzarnecki authored Apr 28, 2023
2 parents f9b08e0 + c93c050 commit c675f05
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists-WinCalc.txt.in
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ include(ExternalProject)

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

UPDATE_COMMAND ""
PATCH_COMMAND ""
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = pywincalc
version = 3.0.0
version = 3.1.0
description = A Python library for calculating thermal and optical properties of glazing systems
long_description = file: README.md
long_description_content_type = text/markdown; charset=UTF-8
Expand Down
3 changes: 3 additions & 0 deletions src/wincalcbindings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -341,9 +341,12 @@ PYBIND11_MODULE(wincalcbindings, m) {
std::shared_ptr<OpticsParser::ProductData>>(m, "ProductData")
.def_readwrite("product_name", &OpticsParser::ProductData::productName)
.def_readwrite("product_type", &OpticsParser::ProductData::productType)
.def_readwrite("product_subtype", &OpticsParser::ProductData::productSubtype)
.def_readwrite("nfrc_id", &OpticsParser::ProductData::nfrcid)
.def_readwrite("thickness", &OpticsParser::ProductData::thickness)
.def_readwrite("conductivity", &OpticsParser::ProductData::conductivity)
.def_readwrite("coating_name", &OpticsParser::ProductData::coatingName)
.def_readwrite("coated_side", &OpticsParser::ProductData::coatedSide)
.def_readwrite("ir_transmittance",
&OpticsParser::ProductData::IRTransmittance)
.def_readwrite("emissivity_front",
Expand Down

0 comments on commit c675f05

Please sign in to comment.