openstudio-extension 0.3.0 → 0.3.1
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5236e369124bbe20e9e3ac29a5256aa253c952a9476834fcffd16abcdec7759a
|
4
|
+
data.tar.gz: 50ca0367d6b629d120bb5a267ff41c639e25a7efbfd488e9da532b3bb7820dce
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 918c839e7b3540c30c08bdba2f132f5ce7f048f24bd8b8f2143741a38107c503c23e5ffbe977dcda8c5515fff2c12ead86308f9b5b5bb007d6107644b141baa6
|
7
|
+
data.tar.gz: 33bc58b51565be29ad26dc0590838ee2ffddb51a83756fe1184acbbb9398fb57c9836866784eca8beb03f9dbc6207b74c5a80c835624481f50045ce990754f5e
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,8 @@
|
|
1
1
|
# OpenStudio Extension Gem
|
2
2
|
|
3
|
+
## Version 0.3.1
|
4
|
+
* This change first zeroes-out latent (for good measure) and radiant fractions before setting lost fraction to 1.0 to avoid this error.
|
5
|
+
|
3
6
|
## Version 0.3.0
|
4
7
|
|
5
8
|
* remove the os_lib_reporting.rb helpers. This file is only used for OS reporting measure and should not be shared with other users.
|
@@ -2735,8 +2735,9 @@ module OsLib_ModelGeneration
|
|
2735
2735
|
elevator_def = elevators.electricEquipmentDefinition
|
2736
2736
|
design_level = elevator_def.designLevel.get
|
2737
2737
|
runner.registerInfo("Adding #{elevators.multiplier.round(1)} elevators each with power of #{OpenStudio.toNeatString(design_level, 0, true)} (W), plus lights and fans.")
|
2738
|
-
elevator_def.
|
2738
|
+
elevator_def.setFractionLatent(0.0)
|
2739
2739
|
elevator_def.setFractionRadiant(0.0)
|
2740
|
+
elevator_def.setFractionLost(1.0)
|
2740
2741
|
end
|
2741
2742
|
end
|
2742
2743
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: openstudio-extension
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Katherine Fleming
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: exe
|
12
12
|
cert_chain: []
|
13
|
-
date: 2020-
|
13
|
+
date: 2020-10-15 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: bcl
|
@@ -217,7 +217,7 @@ licenses: []
|
|
217
217
|
metadata:
|
218
218
|
bug_tracker_uri: https://github.com/NREL/openstudio-extension-gem/issues
|
219
219
|
changelog_uri: https://github.com/NREL/openstudio-extension-gem/blob/develop/CHANGELOG.md
|
220
|
-
source_code_uri: https://github.com/NREL/openstudio-extension-gem/tree/v0.3.
|
220
|
+
source_code_uri: https://github.com/NREL/openstudio-extension-gem/tree/v0.3.1
|
221
221
|
post_install_message:
|
222
222
|
rdoc_options: []
|
223
223
|
require_paths:
|