Skip to content

Instantly share code, notes, and snippets.

@hollywas
hollywas / Python: Parsing text files from DOE2.1 building energy simulation results
Created February 11, 2013 21:25
This Python script will extract the heating, cooling and totals from the BEPS tables of a .sim file. This script was tested on DOE 2.1e .sim files.
import glob
import re
import csv
'''
This script will extract the heating, cooling
and totals from the BEPS tables of a .sim file.
This script was tested on DOE 2.1e .sim files.