Search found 4 matches

by cfrankowski
Mon Apr 22, 2019 3:27 pm
Forum: VE Python API
Topic: Ambiguity in surface opening areas and constructions
Replies: 6
Views: 3075

Re: Ambiguity in surface opening areas and constructions


Hi,

If you call get_openings() on a VESurface object you will get a list of associated openings as VEGeometry objects. If you call get_properties() on these you will get a dictionary that contains data such as the area.

Hope that is of some use?


The piece that is still required is linking a ...
by cfrankowski
Mon Apr 22, 2019 2:41 pm
Forum: VE Python API
Topic: Calculating WWR by orientation
Replies: 7
Views: 4052

Re: Calculating WWR by orientation


Hi,

You can get both of these values from the VEGeometry API. Have a look at the methods get_wwr() and get_building_orientation() .

Hope that helps.



get_wwr() provides a single WWR for the entire building. I'm hoping to get a WWR for each orientation (North, South, East, West), like it is ...
by cfrankowski
Tue Apr 16, 2019 9:10 pm
Forum: VE Python API
Topic: Ambiguity in surface opening areas and constructions
Replies: 6
Views: 3075

Ambiguity in surface opening areas and constructions

I'm attempting to calculate an overall U/R value for a surface.

A single surface can have multiple openings (doors, windows, etc), and each of those openings can have a different construction applied to it.
As the API currently is, you can only get a combined area for each type of opening, and a ...
by cfrankowski
Tue Apr 16, 2019 8:52 pm
Forum: VE Python API
Topic: Calculating WWR by orientation
Replies: 7
Views: 4052

Calculating WWR by orientation

I'd like to recreate the Vertical Fenestration by orientation (Above-grade Wall and Vertical Glazing Area by Orientation) section from the Model report.
I've run into 2 road blocks:
There is no way to determine above-grade / below-grade for a room, so the WWR includes all below grade spaces.
You ...