forked from NREL/EnergyPlus
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcoeff_check.py
163 lines (143 loc) · 7.34 KB
/
coeff_check.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
# EnergyPlus, Copyright (c) 1996-2023, The Board of Trustees of the University
# of Illinois, The Regents of the University of California, through Lawrence
# Berkeley National Laboratory (subject to receipt of any required approvals
# from the U.S. Dept. of Energy), Oak Ridge National Laboratory, managed by UT-
# Battelle, Alliance for Sustainable Energy, LLC, and other contributors. All
# rights reserved.
#
# NOTICE: This Software was developed under funding from the U.S. Department of
# Energy and the U.S. Government consequently retains certain rights. As such,
# the U.S. Government has been granted for itself and others acting on its
# behalf a paid-up, nonexclusive, irrevocable, worldwide license in the
# Software to reproduce, distribute copies to the public, prepare derivative
# works, and perform publicly and display publicly, and to permit others to do
# so.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# (1) Redistributions of source code must retain the above copyright notice,
# this list of conditions and the following disclaimer.
#
# (2) Redistributions in binary form must reproduce the above copyright notice,
# this list of conditions and the following disclaimer in the documentation
# and/or other materials provided with the distribution.
#
# (3) Neither the name of the University of California, Lawrence Berkeley
# National Laboratory, the University of Illinois, U.S. Dept. of Energy nor
# the names of its contributors may be used to endorse or promote products
# derived from this software without specific prior written permission.
#
# (4) Use of EnergyPlus(TM) Name. If Licensee (i) distributes the software in
# stand-alone form without changes from the version obtained under this
# License, or (ii) Licensee makes a reference solely to the software
# portion of its product, Licensee must refer to the software as
# "EnergyPlus version X" software, where "X" is the version number Licensee
# obtained under this License and may not use a different name for the
# software. Except as specifically required in this Section (4), Licensee
# shall not use in a company name, a product name, in advertising,
# publicity, or other promotional activities any name, trade name,
# trademark, logo, or other designation of "EnergyPlus", "E+", "e+" or
# confusingly similar designation, without the U.S. Department of Energy's
# prior written consent.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
import os
import platform
import shutil
import subprocess
from eplaunch.workflows.base import BaseEPLaunchWorkflow1, EPLaunchWorkflowResponse1
class CoeffCheckWorkflow(BaseEPLaunchWorkflow1):
def name(self):
return "CoeffCheck-${CMAKE_VERSION_MAJOR}.${CMAKE_VERSION_MINOR}.${CMAKE_VERSION_PATCH}"
def context(self):
return "EnergyPlus-${CMAKE_VERSION_MAJOR}.${CMAKE_VERSION_MINOR}.${CMAKE_VERSION_PATCH}-${CMAKE_VERSION_BUILD}"
def description(self):
return "Run Coeff Check"
def get_file_types(self):
return ["*.cci"]
def get_output_suffixes(self):
return [".cco"]
def get_extra_data(self):
return {"Hey, it's extra": "data"}
def get_interface_columns(self):
return []
def main(self, run_directory, file_name, args):
if 'workflow location' in args:
energyplus_root_folder, _ = os.path.split(args['workflow location'])
preprocess_folder = os.path.join(energyplus_root_folder, 'PreProcess')
coeffconv_folder = os.path.join(preprocess_folder, 'CoeffConv')
if platform.system() == 'Windows':
coeffcheck_binary = os.path.join(coeffconv_folder, 'CoeffCheck.exe')
else:
coeffcheck_binary = os.path.join(coeffconv_folder, 'CoeffCheck')
if not os.path.exists(coeffcheck_binary):
return EPLaunchWorkflowResponse1(
success=False,
message="CoeffCheck binary not found: {}!".format(coeffcheck_binary),
column_data=[]
)
else:
return EPLaunchWorkflowResponse1(
success=False,
message="Workflow location missing: {}!".format(args['worflow location']),
column_data=[]
)
cci_file_with_path = os.path.join(run_directory, file_name)
cci_file_no_ext, _ = os.path.splitext(cci_file_with_path)
cco_file_with_path = cci_file_no_ext + '.cco'
# clean up working directory
cc_input_txt_file = os.path.join(run_directory, 'CoeffCheckInput.txt')
if os.path.exists(cc_input_txt_file):
os.remove(cc_input_txt_file)
cc_output_txt_file = os.path.join(run_directory, 'CoeffCheckOutput.txt')
if os.path.exists(cc_output_txt_file):
os.remove(cc_output_txt_file)
# copy input data file to working directory
if os.path.exists(cci_file_with_path) and os.path.exists(coeffcheck_binary) and os.path.exists(run_directory):
shutil.copy2(cci_file_with_path, cc_input_txt_file)
# execute utility
command_line_args = [coeffcheck_binary, ]
process = subprocess.run(
command_line_args,
creationflags=subprocess.CREATE_NEW_CONSOLE,
cwd=run_directory
)
if process.returncode == 0:
# Remove old version of the output file
if os.path.exists(cco_file_with_path):
os.remove(cco_file_with_path)
# Copy output files to input/output path
shutil.copy2(cc_output_txt_file, cco_file_with_path)
# Clean up directory.
if os.path.exists(cc_input_txt_file):
os.remove(cc_input_txt_file)
if os.path.exists(cc_output_txt_file):
os.remove(cc_output_txt_file)
return EPLaunchWorkflowResponse1(
success=True,
message="Ran CoeffCheck OK for file: {}!".format(cci_file_with_path),
column_data=[]
)
else:
return EPLaunchWorkflowResponse1(
success=False,
message="CoeffCheck failed for file: {}!".format(cci_file_with_path),
column_data=[]
)
else:
return EPLaunchWorkflowResponse1(
success=False,
message="CoeffCheck file not found: {}!".format(cci_file_with_path),
column_data=[]
)