-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Modifications for GHE #526
Changes from 1 commit
21ef8e5
1e5a109
b230bc8
899555f
278c168
32cb2b7
55161e8
376e21a
3bae0df
701592c
d41af3d
2ff6522
14b622e
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1294,12 +1294,12 @@ | |
"description": "Pipe properties for Ground Heat Exchanger sizing", | ||
"type": "object", | ||
"properties": { | ||
"inner_radius": { | ||
"description": "The radius of the inner pipe surface, in meters.", | ||
"inner_diameter": { | ||
"description": "The diameter of the inner pipe surface, in meters.", | ||
"type": "number" | ||
}, | ||
"outer_radius": { | ||
"description": "The radius of the outer pipe surface, in meters.", | ||
"outer_diameter": { | ||
"description": "The diameter of the outer pipe surface, in meters.", | ||
"type": "number", | ||
"minimum": 0 | ||
}, | ||
|
@@ -1346,10 +1346,10 @@ | |
"description": "The depth below the ground surface to the top of the borehole, in meters.", | ||
"type": "number" | ||
}, | ||
"radius": { | ||
"description": "The radius of the borehole, in meters.", | ||
"diameter": { | ||
"description": "The diameter of the borehole, in meters.", | ||
"type": "number", | ||
"default": 0.095 | ||
"default": 0.19 | ||
} | ||
} | ||
}, | ||
|
@@ -1400,11 +1400,6 @@ | |
"description": "Length of ground heat exchanger sizing period, in months.", | ||
"type": "integer", | ||
"minimum": 0 | ||
}, | ||
"timestep": { | ||
"description": "Timestep method used for ground heat exchanger sizing.", | ||
"type": "string", | ||
"const": "hybrid" | ||
} | ||
}, | ||
"geometric_constraints_def": { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Are we missing "description" and "type" object attributes here? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We need to have some further discussion around these. The length and width should be filled by the GeoJSON inputs. The rest are OK to expose to the user. |
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There's a typo here I didn't catch earlier. Should be 0.15 m (should have been 0.075 before this change).