release r0.5.58
release r0.5.58
2022-05-04
fixed issue #384
Problem
: surface.area (for Building:Surface:Detailed) does not work when
first 3 points are linear
Solution
: Try the other points until you hit 3 non-linear points. Area will be
calculated if any points are non-linear
release r0.5.57
Date: Thu Dec 9 22:33:17 2021 -0800
fixed issue #368
Problem
: docstrings in modeleditor.py ask for of ALL_CAPS.
Solution
: eppy no longer needs ALL_CAPS keys. Removed ALL_CAPS from
docstrings
Date: Thu Dec 9 22:25:45 2021 -0800
fixed issue #361
Problem
: DeprecationWarning: Using or importing the ABCs from
'collections'Solution
: import from 'collections.abc'
release r0.5.56
Date: Tue Nov 9 08:18:06 2021 -0800
Introduce Silent Verbose Mode (Issue #364)
Date: Sun Nov 7 05:58:16 2021 -0800
Add function to remove all IDF object of a certain type
Date: Sun Oct 3 17:17:05 2021 -0700
Use imap when processing generator-created jobs in runIDFs
Date: Sun Oct 3 16:26:25 2021 -0700
Use output_prefix to determine error filename
Date: Sun Oct 3 15:53:00 2021 -0700
fixed problem: idf.run does not restore sys.stderr properly
Date: Sat Jul 24 06:56:54 2021 -0700
Correctly check if multiprocessing is supported
Date: Sat Jul 24 06:08:47 2021 -0700
made idd path absolute
2021-02-21
fixed issue #326
Problem
: idf = IDF(fname) will fail if isinstance(fname, filepath.Path)
Solution
: update code to read filepath.Path
fixed issue # 315
Problem
: idf.save uses relative path. if the dir is changed, it can save in
the wrong place
Solution
: use absolute path in idf.save
release r0.5.56
2021-02-15
fixed a typo in this file (HISTORY.rst)
release r0.5.55
2021-02-15
- fixed issue #324
Problem
-
The EnergyPlus objects can have legal names in the following format
[Special glass <thickness is 3mm>]{.title-ref} -
Energyplus itself has no problems with such names
This name turns up in the HTML output file.
: - In the HTML file the part name\`\<thickness is 3mm>\` looks
like an HTML tag.
- The browser tries to make sense of it and fix it so that
something can be displayed
- This results in a mangled name in the HTML file as viewed in
the browser
Solution
- Ideally this has to be fixed in Energyplus
- eppy has a stop gap fix
- eppy will ignore any tag within a cell of a table
release r0.5.54
2021-01-10
fixed issue #320
: - Problem: eppy.results.readhtml is very slow. Write similar
function using generators
- Solution: functions in eppy.fasthtml use lazy evaluation to
get the tables quickly. This has been documented in user
documentation in \"Reading outputs from E+\" and in \"New
functions\"