Question-and-Answer Resource for the Building Energy Modeling Community
Get started with the Help page
Ask Your Question

Revision history [back]

With an EnergyPlus Measure, you can add an idf file which describe the "WindowProperty:FrameAndDivider" object. But you cannot set the frame and divider name in the ""FenestrationSurface:Detailed" object. Line 1 in the below script sets the frame and divider name to "Aluminum". Line 2 gets the name of the frame and divider name which is empty.

    fenestration.setString(7,"Aluminum")
    fenestration_frame = fenestration.getString(7)
    runner.registerInfo("Redefined Frame: #{fenestration_frame}")