Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,11 @@ Classify the change according to the following categories:
##### Removed
### Patches

## v3.16.1
### Patches
##### Changed
- `load_builder`: EnSite grid efficiency `grid.eff` was changed from 99% --> 100%

## v3.16.0
### Minor Updates
#### Added
Expand Down
2 changes: 1 addition & 1 deletion load_builder/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ def _num(name, cast=float, positive=False, allow_zero=True):
'type': 'Grid',
'pMax': int(ems_cfg.get('pChgCap', 0)), # no fallback; zero if not derived/overridden
'pMin': 0,
'eff': 0.99,
'eff': 1.0,
}
}
for cat, charger_cfg in chargers.items():
Expand Down