Skip to content

Commit 3ccc7ca

Browse files
committed
UserModels: refactor, add bases and wrappers for all model types.
1 parent 35118ef commit 3ccc7ca

File tree

4 files changed

+448
-285
lines changed

4 files changed

+448
-285
lines changed

dss/UserModels/GenUserModel.py

Lines changed: 0 additions & 177 deletions
This file was deleted.

dss/UserModels/__init__.py

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
from __future__ import absolute_import
22
from ..enums import SolveModes
3-
from . import GenUserModelBase #, CapUserControlBase, PVSystemUserModelBase, StoreDynaModelBase, StoreUserModelBase
4-
# from .CapUserControl import CapUserControl
5-
from .GenUserModel import GenUserModel
6-
# from .PVSystemUserModel import PVSystemUserModel
7-
# from .StoreDynaModel import StoreDynaModel
8-
# from .StoreUserModel import StoreUserModel
9-
10-
3+
from .wrappers import (
4+
CapUserControl,
5+
GenUserModel,
6+
PVSystemUserModel,
7+
StoreDynaModel,
8+
StoreUserModel
9+
)

0 commit comments

Comments
 (0)