コード例 #1
0
def test_model_shoe_box():
    root = os.path.dirname(os.path.dirname(__file__))
    target_folder = os.path.join(root, 'app', 'models', 'samples', 'json')
    file_path = os.path.join(target_folder, 'model_shoe_box.json')
    Model.parse_file(file_path)
コード例 #2
0
def test_model_single_zone_tiny_house():
    root = os.path.dirname(os.path.dirname(__file__))
    target_folder = os.path.join(root, 'app', 'models', 'samples', 'json')
    file_path = os.path.join(target_folder,
                             'model_single_zone_tiny_house.json')
    Model.parse_file(file_path)
コード例 #3
0
def test_model_multi_zone_single_family_house():
    file_path = os.path.join(target_folder,
                             'model_multi_zone_single_family_house.json')
    Model.parse_file(file_path)
コード例 #4
0
def test_model_with_humidity_setpoints():
    file_path = os.path.join(target_folder,
                             'model_complete_with_humidity_setpoints.json')
    Model.parse_file(file_path)
コード例 #5
0
def test_model_single_zone_office_detailed_loads():
    file_path = os.path.join(
        target_folder, 'model_complete_single_zone_office_detailed_loads.json')
    Model.parse_file(file_path)
コード例 #6
0
def test_model_multi_zone_office():
    file_path = os.path.join(target_folder,
                             'model_complete_multi_zone_office.json')
    Model.parse_file(file_path)
コード例 #7
0
def test_model_shoe_box():
    file_path = os.path.join(target_folder, 'model_shoe_box.json')
    Model.parse_file(file_path)