-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Kyle Skolfield
committed
Oct 17, 2024
1 parent
32bb5ed
commit da353fe
Showing
3 changed files
with
43 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
import pyomo.common.unittest as unittest | ||
from gtep.gtep_model import ExpansionPlanningModel | ||
from gtep.gtep_data import ExpansionPlanningData | ||
from gtep.gtep_solution import ExpansionPlanningSolution | ||
import logging | ||
|
||
input_data_source = "./gtep/data/5bus" | ||
|
||
class TestValidation(unittest.TestCase): | ||
def test_populate_generators(self): | ||
pass | ||
|
||
def test_populate_transmission(self): | ||
pass | ||
|
||
def test_filter_pointers(self): | ||
pass | ||
|
||
def test_clone_timeseries(self): | ||
pass |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
from pyomo.environ import * | ||
from gtep.gtep_model import ExpansionPlanningModel | ||
import logging | ||
|
||
import pandas as pd | ||
|
||
logger = logging.getLogger(__name__) | ||
|
||
def populate_generators(data_input_path, sol_object, data_output_path): | ||
pass | ||
|
||
def populate_transmission(data_input_path, sol_object, data_output_path): | ||
pass | ||
|
||
def filter_pointers(data_input_path, sol_object, data_output_path): | ||
pass | ||
|
||
def clone_timeseries(data_input_path, sol_object, data_output_path): | ||
pass |