Skip to content

Commit 0c83e5a

Browse files
authored
Merge pull request #30 from NREL/develop
Develop
2 parents 006d0b1 + 53c61a3 commit 0c83e5a

16 files changed

Lines changed: 8449 additions & 9 deletions

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,5 @@ installer_staging
1313
gbxml-to-openstudio-cache
1414
gbxml-to-openstudio-SetupFiles
1515
test/resources/revit_test_models/*.0*.rvt
16-
test/output_models/manual/
16+
test/output_models/manual/
17+
gbxmls/Cases/

Rakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
require 'bundler'
2-
# require 'rake/testtask'
2+
require 'rake/testtask'
33
Bundler.setup
44

55
require 'rake'

gbxml-to-openstudio.aip

Lines changed: 21 additions & 7 deletions
Large diffs are not rendered by default.

gbxmls/analysis (0).xml

165 KB
Binary file not shown.

gbxmls/analysis.xml

100644100755
2.05 MB
Binary file not shown.

measures/gbxml_hvac_import/resources/ptac/ptac.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ def add_supply_fan
2424
end
2525

2626
def add_heating_coil
27+
# Todo: remove this hold
2728
# temporary hold while the gbXML file is missing the heating coil info
2829
heating_coil = nil
2930

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Insert your license here
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
2+
3+
###### (Automatically generated documentation)
4+
5+
# gbxml_to_openstudio_cleanup
6+
7+
## Description
8+
9+
10+
## Modeler Description
11+
12+
13+
## Measure Type
14+
ModelMeasure
15+
16+
## Taxonomy
17+
18+
19+
## Arguments
20+
21+
22+
### New space name
23+
This name will be used as the name of the new space.
24+
**Name:** space_name,
25+
**Type:** String,
26+
**Units:** ,
27+
**Required:** true,
28+
**Model Dependent:** false
29+
30+
31+
32+
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
<%#= README.md.erb is used to auto-generate README.md. %>
2+
<%#= To manually maintain README.md throw away README.md.erb and manually edit README.md %>
3+
###### (Automatically generated documentation)
4+
5+
# <%= name %>
6+
7+
## Description
8+
<%= description %>
9+
10+
## Modeler Description
11+
<%= modelerDescription %>
12+
13+
## Measure Type
14+
<%= measureType %>
15+
16+
## Taxonomy
17+
<%= taxonomy %>
18+
19+
## Arguments
20+
21+
<% arguments.each do |argument| %>
22+
### <%= argument[:display_name] %>
23+
<%= argument[:description] %>
24+
**Name:** <%= argument[:name] %>,
25+
**Type:** <%= argument[:type] %>,
26+
**Units:** <%= argument[:units] %>,
27+
**Required:** <%= argument[:required] %>,
28+
**Model Dependent:** <%= argument[:model_dependent] %>
29+
<% end %>
30+
31+
<% if arguments.size == 0 %>
32+
<%= "This measure does not have any user arguments" %>
33+
<% end %>
34+
35+
<% if outputs.size > 0 %>
36+
## Outputs
37+
<% output_names = [] %>
38+
<% outputs.each do |output| %>
39+
<% output_names << output[:display_name] %>
40+
<% end %>
41+
<%= output_names.join(", ") %>
42+
<% end %>

measures/gbxml_to_openstudio_cleanup/docs/.gitkeep

Whitespace-only changes.

0 commit comments

Comments
 (0)