FenestrationPosition
Defines whether the Fenestration is fixed or openable.
Example
.json
{
"type" : "Continuous",
"max" : 1.0,
"min" : 0.0
}
Note: This object cannot be declared by itself in a
SIMPLE
model, as it is always embeded on aFenestration
object
Supported Variants
Fixed
It is fixed at a certain open fraction
Full Specification
FenestrationPosition {
type : "Fixed", // this should not change
fraction : number, // optional
}
Continuous
It can be position at any position, from fully opened to fully closed
Full Specification
FenestrationPosition {
type : "Continuous", // this should not change
max : number, // optional
min : number, // optional,
}
Binary
It can only be opened or closed, no in-between
Full Specification
FenestrationPosition {
type : "Binary", // this should not change
open : number, // optional
closed : number, // optional,
}