개정판 4a293b4c
issue #1213 : Line Sizing Criteria
Change-Id: I1d3e7b420bc38f9151a3a20891bec33e8a406498
HYTOS/HYTOS/Line_Sizing_VaporDialog.py | ||
---|---|---|
21 | 21 |
|
22 | 22 |
self.ui = Line_Sizing_Vapor_UI.Ui_Dialog() |
23 | 23 |
self.ui.setupUi(self) |
24 |
self.units = {} |
|
25 |
self.isAccepted = False |
|
26 |
self.velocity = None |
|
27 |
self.drop_pressure = None |
|
28 |
|
|
29 |
self.init_units() |
|
30 |
self.initialize() |
|
24 | 31 |
|
25 | 32 |
def show_dialog(self): |
26 | 33 |
self.setWindowFlags(self.windowFlags() & ~QtCore.Qt.WindowContextHelpButtonHint) |
27 | 34 |
|
28 | 35 |
self.exec_() |
29 | 36 |
|
37 |
return self.isAccepted, self.velocity, self.drop_pressure |
|
38 |
|
|
39 |
def init_units(self): |
|
40 |
app_doc_data = AppDocData.instance() |
|
41 |
active_drawing = app_doc_data.activeDrawing |
|
42 |
|
|
43 |
for attr in active_drawing.attrs: |
|
44 |
if attr[0] == 'Units': |
|
45 |
self.units = attr[1] |
|
46 |
|
|
47 |
def initialize(self): |
|
48 |
try: |
|
49 |
self.ui.label_Velocity_Unit.setText(self.units['Velocity']) |
|
50 |
self.ui.label_Drop_Pressure_Unit.setText('{}/100{}'.format(self.units['Pressure'], self.units['Length'])) |
|
51 |
|
|
52 |
pressure_unit = self.units['Pressure'] |
|
53 |
if pressure_unit == 'kg/cm2': |
|
54 |
# General Service |
|
55 |
self.ui.radioButton_Pressure_1.setText('~ 4.55 kg/cm2(g)') |
|
56 |
self.ui.radioButton_Pressure_2.setText('4.55 ~ 15.1 kg/cm2(g)') |
|
57 |
self.ui.radioButton_Pressure_3.setText('15.1 ~ 36.2 kg/cm2(g)') |
|
58 |
self.ui.radioButton_Pressure_4.setText('36.2 kg/cm2(g) ~') |
|
59 |
# Tower Overhead |
|
60 |
self.ui.radioButton_Pressure_5.setText('~ 0.7 kg/cm2(g)') |
|
61 |
self.ui.radioButton_Pressure_6.setText('3.5 kg/cm2(g) ~') |
|
62 |
# Stream Lines |
|
63 |
self.ui.radioButton_Pressure_7.setText('~ 4.55 kg/cm2(g)') |
|
64 |
self.ui.radioButton_Pressure_8.setText('4.55 ~ 15.1 kg/cm2(g)') |
|
65 |
self.ui.radioButton_Pressure_9.setText('21 kg/cm2(g) ~') |
|
66 |
elif pressure_unit == 'psi': |
|
67 |
# General Service |
|
68 |
self.ui.radioButton_Pressure_1.setText('~ 64.71 psi(g)') |
|
69 |
self.ui.radioButton_Pressure_2.setText('64.71 ~ 214.7 psi(g)') |
|
70 |
self.ui.radioButton_Pressure_3.setText('214.7 ~ 514.9 psi(g)') |
|
71 |
self.ui.radioButton_Pressure_4.setText('514.9 psi(g) ~') |
|
72 |
# Tower Overhead |
|
73 |
self.ui.radioButton_Pressure_5.setText('~ 9.9 psi(g)') |
|
74 |
self.ui.radioButton_Pressure_6.setText('49.7 psi(g) ~') |
|
75 |
# Stream Lines |
|
76 |
self.ui.radioButton_Pressure_7.setText('~ 64.71 psi(g)') |
|
77 |
self.ui.radioButton_Pressure_8.setText('64.71 ~ 214.7 psi(g)') |
|
78 |
self.ui.radioButton_Pressure_9.setText('298.7 psi(g) ~') |
|
79 |
elif pressure_unit == 'atm': |
|
80 |
# General Service |
|
81 |
self.ui.radioButton_Pressure_1.setText('~ 5.4 atm') |
|
82 |
self.ui.radioButton_Pressure_2.setText('5.4 ~ 15.6 atm') |
|
83 |
self.ui.radioButton_Pressure_3.setText('15.6 ~ 36 atm') |
|
84 |
self.ui.radioButton_Pressure_4.setText('36 atm ~') |
|
85 |
# Tower Overhead |
|
86 |
self.ui.radioButton_Pressure_5.setText('~ 1.67 atm') |
|
87 |
self.ui.radioButton_Pressure_6.setText('4.38 atm ~') |
|
88 |
# Stream Lines |
|
89 |
self.ui.radioButton_Pressure_7.setText('~ 5.4 atm') |
|
90 |
self.ui.radioButton_Pressure_8.setText('5.4 ~ 15.6 atm') |
|
91 |
self.ui.radioButton_Pressure_9.setText('21.3 atm ~') |
|
92 |
elif pressure_unit == 'bar': |
|
93 |
# General Service |
|
94 |
self.ui.radioButton_Pressure_1.setText('~ 4.46 bar(g)') |
|
95 |
self.ui.radioButton_Pressure_2.setText('4.46 ~ 14.8 bar(g)') |
|
96 |
self.ui.radioButton_Pressure_3.setText('14.8 ~ 35.5 bar(g)') |
|
97 |
self.ui.radioButton_Pressure_4.setText('35.5 bar(g) ~') |
|
98 |
# Tower Overhead |
|
99 |
self.ui.radioButton_Pressure_5.setText('~ 0.68 bar(g)') |
|
100 |
self.ui.radioButton_Pressure_6.setText('3.43 bar(g) ~') |
|
101 |
# Stream Lines |
|
102 |
self.ui.radioButton_Pressure_7.setText('~ 4.46 bar(g)') |
|
103 |
self.ui.radioButton_Pressure_8.setText('4.46 ~ 14.8 bar(g)') |
|
104 |
self.ui.radioButton_Pressure_9.setText('20.6 bar(g) ~') |
|
105 |
elif pressure_unit == 'mmHg': |
|
106 |
# General Service |
|
107 |
self.ui.radioButton_Pressure_1.setText('~ 3346.8 mmHg(g)') |
|
108 |
self.ui.radioButton_Pressure_2.setText('3346.8 ~ 11107 mmHg(g)') |
|
109 |
self.ui.radioButton_Pressure_3.setText('11107mmHg ~ 26627 mmHg(g)') |
|
110 |
self.ui.radioButton_Pressure_4.setText('26627 mmHg(g) ~') |
|
111 |
# Tower Overhead |
|
112 |
self.ui.radioButton_Pressure_5.setText('~ 514.9 mmHg(g)') |
|
113 |
self.ui.radioButton_Pressure_6.setText('2574 mmHg(g) ~') |
|
114 |
# Stream Lines |
|
115 |
self.ui.radioButton_Pressure_7.setText('~ 3346.8 mmHg(g)') |
|
116 |
self.ui.radioButton_Pressure_8.setText('3346.8 ~ 11107 mmHg(g)') |
|
117 |
self.ui.radioButton_Pressure_9.setText('15446.7 mmHg(g) ~') |
|
118 |
elif pressure_unit == 'kPa': |
|
119 |
# General Service |
|
120 |
self.ui.radioButton_Pressure_1.setText('~ 446.2 kPa(g)') |
|
121 |
self.ui.radioButton_Pressure_2.setText('446.2 ~ 1480.8 kPa(g)') |
|
122 |
self.ui.radioButton_Pressure_3.setText('1480.8 ~ 3550 kPa(g)') |
|
123 |
self.ui.radioButton_Pressure_4.setText('3550 kPa(g) ~') |
|
124 |
# Tower Overhead |
|
125 |
self.ui.radioButton_Pressure_5.setText('~ 64.65 kPa(g)') |
|
126 |
self.ui.radioButton_Pressure_6.setText('343.2 kPa(g) ~') |
|
127 |
# Stream Lines |
|
128 |
self.ui.radioButton_Pressure_7.setText('~ 446.2 kPa(g)') |
|
129 |
self.ui.radioButton_Pressure_8.setText('446.2 ~ 1480.8 kPa(g)') |
|
130 |
self.ui.radioButton_Pressure_9.setText('2059.4 kPa(g) ~') |
|
131 |
elif pressure_unit == 'MPa': |
|
132 |
# General Service |
|
133 |
self.ui.radioButton_Pressure_1.setText('~ 0.4462 MPa(g)') |
|
134 |
self.ui.radioButton_Pressure_2.setText('0.4462 ~ 1.4808 MPa(g)') |
|
135 |
self.ui.radioButton_Pressure_3.setText('1.4808 ~ 3.55 MPa(g)') |
|
136 |
self.ui.radioButton_Pressure_4.setText('3.55 MPa(g) ~') |
|
137 |
# Tower Overhead |
|
138 |
self.ui.radioButton_Pressure_5.setText('~ 0.06465 MPa(g)') |
|
139 |
self.ui.radioButton_Pressure_6.setText('0.3432 MPa(g) ~') |
|
140 |
# Stream Lines |
|
141 |
self.ui.radioButton_Pressure_7.setText('~ 0.4462 MPa(g)') |
|
142 |
self.ui.radioButton_Pressure_8.setText('0.4462 ~ 1.4808 MPa(g)') |
|
143 |
self.ui.radioButton_Pressure_9.setText('2.0594 MPa(g) ~') |
|
144 |
|
|
145 |
# 압력의 기준 |
|
146 |
# 초기값 (kg/cm2/100m) 설정 |
|
147 |
seclvdp = [0.023, 0.058, 0.115, 0.138, 0.231, 0.346, 0.557, 1.461] |
|
148 |
length_unit = self.units['Length'] |
|
149 |
pressure_unit = self.units['Pressure'] |
|
150 |
if pressure_unit == 'kg/cm2': |
|
151 |
if length_unit == 'm': |
|
152 |
seclvdp = seclvdp |
|
153 |
elif length_unit == 'in': |
|
154 |
for i in range(len(seclvdp)): |
|
155 |
seclvdp[i] *= 0.0254 |
|
156 |
elif length_unit == 'ft': |
|
157 |
for i in range(len(seclvdp)): |
|
158 |
seclvdp[i] /= 3.28084 |
|
159 |
elif length_unit == 'yd': |
|
160 |
for i in range(len(seclvdp)): |
|
161 |
seclvdp[i] /= 1.09361 |
|
162 |
elif length_unit == 'mile': |
|
163 |
for i in range(len(seclvdp)): |
|
164 |
seclvdp[i] /= 0.000621371 |
|
165 |
elif length_unit == 'mm': |
|
166 |
for i in range(len(seclvdp)): |
|
167 |
seclvdp[i] /= 1000 |
|
168 |
elif pressure_unit == 'psi': |
|
169 |
for i in range(len(seclvdp)): |
|
170 |
seclvdp[i] = seclvdp[i] / 1.033 * 14.7 |
|
171 |
|
|
172 |
if length_unit == 'm': |
|
173 |
seclvdp = seclvdp |
|
174 |
elif length_unit == 'in': |
|
175 |
for i in range(len(seclvdp)): |
|
176 |
seclvdp[i] *= 0.0254 |
|
177 |
elif length_unit == 'ft': |
|
178 |
for i in range(len(seclvdp)): |
|
179 |
seclvdp[i] /= 3.28084 |
|
180 |
elif length_unit == 'yd': |
|
181 |
for i in range(len(seclvdp)): |
|
182 |
seclvdp[i] /= 1.09361 |
|
183 |
elif length_unit == 'mile': |
|
184 |
for i in range(len(seclvdp)): |
|
185 |
seclvdp[i] /= 0.000621371 |
|
186 |
elif length_unit == 'mm': |
|
187 |
for i in range(len(seclvdp)): |
|
188 |
seclvdp[i] /= 1000 |
|
189 |
elif pressure_unit == 'atm': |
|
190 |
for i in range(len(seclvdp)): |
|
191 |
seclvdp[i] = seclvdp[i] / 1.033 |
|
192 |
|
|
193 |
if length_unit == 'm': |
|
194 |
seclvdp = seclvdp |
|
195 |
elif length_unit == 'in': |
|
196 |
for i in range(len(seclvdp)): |
|
197 |
seclvdp[i] *= 0.0254 |
|
198 |
elif length_unit == 'ft': |
|
199 |
for i in range(len(seclvdp)): |
|
200 |
seclvdp[i] /= 3.28084 |
|
201 |
elif length_unit == 'yd': |
|
202 |
for i in range(len(seclvdp)): |
|
203 |
seclvdp[i] /= 1.09361 |
|
204 |
elif length_unit == 'mile': |
|
205 |
for i in range(len(seclvdp)): |
|
206 |
seclvdp[i] /= 0.000621371 |
|
207 |
elif length_unit == 'mm': |
|
208 |
for i in range(len(seclvdp)): |
|
209 |
seclvdp[i] /= 1000 |
|
210 |
elif pressure_unit == 'bar': |
|
211 |
for i in range(len(seclvdp)): |
|
212 |
seclvdp[i] = seclvdp[i] / 1.033 * 1.013 |
|
213 |
|
|
214 |
if length_unit == 'm': |
|
215 |
seclvdp = seclvdp |
|
216 |
elif length_unit == 'in': |
|
217 |
for i in range(len(seclvdp)): |
|
218 |
seclvdp[i] *= 0.0254 |
|
219 |
elif length_unit == 'ft': |
|
220 |
for i in range(len(seclvdp)): |
|
221 |
seclvdp[i] /= 3.28084 |
|
222 |
elif length_unit == 'yd': |
|
223 |
for i in range(len(seclvdp)): |
|
224 |
seclvdp[i] /= 1.09361 |
|
225 |
elif length_unit == 'mile': |
|
226 |
for i in range(len(seclvdp)): |
|
227 |
seclvdp[i] /= 0.000621371 |
|
228 |
elif length_unit == 'mm': |
|
229 |
for i in range(len(seclvdp)): |
|
230 |
seclvdp[i] /= 1000 |
|
231 |
elif pressure_unit == 'mmHg': |
|
232 |
for i in range(len(seclvdp)): |
|
233 |
seclvdp[i] = seclvdp[i] / 1.033 * 760 |
|
234 |
|
|
235 |
if length_unit == 'm': |
|
236 |
seclvdp = seclvdp |
|
237 |
elif length_unit == 'in': |
|
238 |
for i in range(len(seclvdp)): |
|
239 |
seclvdp[i] *= 0.0254 |
|
240 |
elif length_unit == 'ft': |
|
241 |
for i in range(len(seclvdp)): |
|
242 |
seclvdp[i] /= 3.28084 |
|
243 |
elif length_unit == 'yd': |
|
244 |
for i in range(len(seclvdp)): |
|
245 |
seclvdp[i] /= 1.09361 |
|
246 |
elif length_unit == 'mile': |
|
247 |
for i in range(len(seclvdp)): |
|
248 |
seclvdp[i] /= 0.000621371 |
|
249 |
elif length_unit == 'mm': |
|
250 |
for i in range(len(seclvdp)): |
|
251 |
seclvdp[i] /= 1000 |
|
252 |
elif pressure_unit == 'kPa': |
|
253 |
for i in range(len(seclvdp)): |
|
254 |
seclvdp[i] = seclvdp[i] / 1.033 * 101.325 |
|
255 |
|
|
256 |
if length_unit == 'm': |
|
257 |
seclvdp = seclvdp |
|
258 |
elif length_unit == 'in': |
|
259 |
for i in range(len(seclvdp)): |
|
260 |
seclvdp[i] *= 0.0254 |
|
261 |
elif length_unit == 'ft': |
|
262 |
for i in range(len(seclvdp)): |
|
263 |
seclvdp[i] /= 3.28084 |
|
264 |
elif length_unit == 'yd': |
|
265 |
for i in range(len(seclvdp)): |
|
266 |
seclvdp[i] /= 1.09361 |
|
267 |
elif length_unit == 'mile': |
|
268 |
for i in range(len(seclvdp)): |
|
269 |
seclvdp[i] /= 0.000621371 |
|
270 |
elif length_unit == 'mm': |
|
271 |
for i in range(len(seclvdp)): |
|
272 |
seclvdp[i] /= 1000 |
|
273 |
elif pressure_unit == 'MPa': |
|
274 |
for i in range(len(seclvdp)): |
|
275 |
seclvdp[i] = seclvdp[i] / 1.033 * 0.101325 |
|
276 |
|
|
277 |
if length_unit == 'm': |
|
278 |
seclvdp = seclvdp |
|
279 |
elif length_unit == 'in': |
|
280 |
for i in range(len(seclvdp)): |
|
281 |
seclvdp[i] *= 0.0254 |
|
282 |
elif length_unit == 'ft': |
|
283 |
for i in range(len(seclvdp)): |
|
284 |
seclvdp[i] /= 3.28084 |
|
285 |
elif length_unit == 'yd': |
|
286 |
for i in range(len(seclvdp)): |
|
287 |
seclvdp[i] /= 1.09361 |
|
288 |
elif length_unit == 'mile': |
|
289 |
for i in range(len(seclvdp)): |
|
290 |
seclvdp[i] /= 0.000621371 |
|
291 |
elif length_unit == 'mm': |
|
292 |
for i in range(len(seclvdp)): |
|
293 |
seclvdp[i] /= 1000 |
|
294 |
|
|
295 |
# General Service |
|
296 |
self.ui.label_Pressure_1_Drop_Pressure.setText(str(round(seclvdp[0], 3))) |
|
297 |
self.ui.label_Pressure_2_Drop_Pressure.setText(str(round(seclvdp[3], 3))) |
|
298 |
self.ui.label_Pressure_3_Drop_Pressure.setText(str(round(seclvdp[5], 3))) |
|
299 |
self.ui.label_Pressure_4_Drop_Pressure.setText(str(round(seclvdp[7], 3))) |
|
300 |
self.ui.label_Air_Service_Drop_Pressure.setText(str(round(seclvdp[6], 3))) |
|
301 |
|
|
302 |
# Compressor LInes |
|
303 |
self.ui.label_Discharge_Drop_Pressure.setText(str(round(seclvdp[4], 3))) |
|
304 |
|
|
305 |
# Tower Overhead |
|
306 |
self.ui.label_Pressure_5_Drop_Pressure.setText(str(round(seclvdp[0], 3))) |
|
307 |
self.ui.label_Atm_Drop_Pressure.setText(str(round(seclvdp[2], 3))) |
|
308 |
self.ui.label_Pressure_6_Drop_Pressure.setText(str(round(seclvdp[2], 3))) |
|
309 |
|
|
310 |
# Stream Lines |
|
311 |
self.ui.label_Pressure_7_Drop_Pressure.setText(str(round(seclvdp[1], 3))) |
|
312 |
self.ui.label_Pressure_8_Drop_Pressure.setText(str(round(seclvdp[4], 3))) |
|
313 |
self.ui.label_Pressure_9_Drop_Pressure.setText(str(round(seclvdp[5], 3))) |
|
314 |
self.ui.label_High_Pressure_Steam_Drop_Pressure.setText(str(round(seclvdp[2], 3))) |
|
315 |
|
|
316 |
# Flare |
|
317 |
self.ui.label_Header_Drop_Pressure.setText(str(round(seclvdp[2], 3))) |
|
318 |
|
|
319 |
# 속도의 기준 |
|
320 |
velocity_unit = self.units['Velocity'] |
|
321 |
if velocity_unit == 'm/s': |
|
322 |
# General Service |
|
323 |
self.ui.label_Air_Service_Velocity.setText('18.3') |
|
324 |
|
|
325 |
# Compressor Lines |
|
326 |
self.ui.label_Suction_Reciprocating_Velocity.setText('12.2') |
|
327 |
self.ui.label_Suction_Centrifugal_Velocity.setText('24.4') |
|
328 |
self.ui.label_Discharge_Velocity.setText('13') |
|
329 |
|
|
330 |
# Tower Overhead |
|
331 |
self.ui.label_Pressure_5_Velocity.setText('61') |
|
332 |
self.ui.label_Atm_Velocity.setText('30.5') |
|
333 |
self.ui.label_Pressure_6_Velocity.setText('15.2') |
|
334 |
|
|
335 |
# Steam Lines |
|
336 |
self.ui.label_Pressure_7_Velocity.setText('50') |
|
337 |
self.ui.label_Pressure_8_Velocity.setText('40') |
|
338 |
self.ui.label_Pressure_9_Velocity.setText('30') |
|
339 |
self.ui.label_High_Pressure_Steam_Velocity.setText('20') |
|
340 |
|
|
341 |
# Flare |
|
342 |
self.ui.label_Branch_Velocity.setText('10.7') |
|
343 |
elif velocity_unit == 'ft/s': |
|
344 |
# General Service |
|
345 |
self.ui.label_Air_Service_Velocity.setText('60') |
|
346 |
|
|
347 |
# Compressor Lines |
|
348 |
self.ui.label_Suction_Reciprocating_Velocity.setText('40') |
|
349 |
self.ui.label_Suction_Centrifugal_Velocity.setText('80') |
|
350 |
self.ui.label_Discharge_Velocity.setText('42.6') |
|
351 |
|
|
352 |
# Tower Overhead |
|
353 |
self.ui.label_Pressure_5_Velocity.setText('200') |
|
354 |
self.ui.label_Atm_Velocity.setText('100') |
|
355 |
self.ui.label_Pressure_6_Velocity.setText('49.8') |
|
356 |
|
|
357 |
# Steam Lines |
|
358 |
self.ui.label_Pressure_7_Velocity.setText('164') |
|
359 |
self.ui.label_Pressure_8_Velocity.setText('131.2') |
|
360 |
self.ui.label_Pressure_9_Velocity.setText('98.4') |
|
361 |
self.ui.label_High_Pressure_Steam_Velocity.setText('65.6') |
|
362 |
|
|
363 |
# Flare |
|
364 |
self.ui.label_Branch_Velocity.setText('35.1') |
|
365 |
except Exception as ex: |
|
366 |
from App import App |
|
367 |
from AppDocData import MessageType |
|
368 |
|
|
369 |
message = 'error occurred({}) in {}:{}'.format(ex, sys.exc_info()[-1].tb_frame.f_code.co_filename, |
|
370 |
sys.exc_info()[-1].tb_lineno) |
|
371 |
App.mainWnd().addMessage.emit(MessageType.Error, message) |
|
372 |
|
|
30 | 373 |
def accept(self): |
374 |
if self.ui.radioButton_Pressure_1.isChecked(): |
|
375 |
self.velocity = None |
|
376 |
self.drop_pressure = self.ui.label_Pressure_1_Drop_Pressure.text() |
|
377 |
elif self.ui.radioButton_Pressure_2.isChecked(): |
|
378 |
self.velocity = None |
|
379 |
self.drop_pressure = self.ui.label_Pressure_2_Drop_Pressure.text() |
|
380 |
elif self.ui.radioButton_Pressure_3.isChecked(): |
|
381 |
self.velocity = None |
|
382 |
self.drop_pressure = self.ui.label_Pressure_3_Drop_Pressure.text() |
|
383 |
elif self.ui.radioButton_Pressure_4.isChecked(): |
|
384 |
self.velocity = None |
|
385 |
self.drop_pressure = self.ui.label_Pressure_4_Drop_Pressure.text() |
|
386 |
elif self.ui.radioButton_Air_Service.isChecked(): |
|
387 |
self.velocity = self.ui.label_Air_Service_Velocity.text() |
|
388 |
self.drop_pressure = self.ui.label_Air_Service_Drop_Pressure.text() |
|
389 |
elif self.ui.radioButton_Suction_Reciprocating.isChecked(): |
|
390 |
self.velocity = self.ui.label_Suction_Reciprocating_Velocity.text() |
|
391 |
self.drop_pressure = None |
|
392 |
elif self.ui.radioButton_Suction_Centrifugal.isChecked(): |
|
393 |
self.velocity = self.ui.label_Suction_Centrifugal_Velocity.text() |
|
394 |
self.drop_pressure = None |
|
395 |
elif self.ui.radioButton_Discharge.isChecked(): |
|
396 |
self.velocity = self.ui.label_Discharge_Velocity.text() |
|
397 |
self.drop_pressure = self.ui.label_Discharge_Drop_Pressure.text() |
|
398 |
elif self.ui.radioButton_Pressure_5.isChecked(): |
|
399 |
self.velocity = self.ui.label_Pressure_5_Velocity.text() |
|
400 |
self.drop_pressure = self.ui.label_Pressure_5_Drop_Pressure.text() |
|
401 |
elif self.ui.radioButton_Atm.isChecked(): |
|
402 |
self.velocity = self.ui.label_Atm_Velocity.text() |
|
403 |
self.drop_pressure = self.ui.label_Atm_Drop_Pressure.text() |
|
404 |
elif self.ui.radioButton_Pressure_6.isChecked(): |
|
405 |
self.velocity = self.ui.label_Pressure_6_Velocity.text() |
|
406 |
self.drop_pressure = self.ui.label_Pressure_6_Drop_Pressure.text() |
|
407 |
elif self.ui.radioButton_Pressure_7.isChecked(): |
|
408 |
self.velocity = self.ui.label_Pressure_7_Velocity.text() |
|
409 |
self.drop_pressure = self.ui.label_Pressure_7_Drop_Pressure.text() |
|
410 |
elif self.ui.radioButton_Pressure_8.isChecked(): |
|
411 |
self.velocity = self.ui.label_Pressure_8_Velocity.text() |
|
412 |
self.drop_pressure = self.ui.label_Pressure_8_Drop_Pressure.text() |
|
413 |
elif self.ui.radioButton_Pressure_9.isChecked(): |
|
414 |
self.velocity = self.ui.label_Pressure_9_Velocity.text() |
|
415 |
self.drop_pressure = self.ui.label_Pressure_9_Drop_Pressure.text() |
|
416 |
elif self.ui.radioButton_High_Pressure_Steam.isChecked(): |
|
417 |
self.velocity = self.ui.label_High_Pressure_Steam_Velocity.text() |
|
418 |
self.drop_pressure = self.ui.label_High_Pressure_Steam_Drop_Pressure.text() |
|
419 |
elif self.ui.radioButton_Header.isChecked(): |
|
420 |
self.velocity = None |
|
421 |
self.drop_pressure = self.ui.label_Header_Drop_Pressure.text() |
|
422 |
elif self.ui.radioButton_Branch.isChecked(): |
|
423 |
self.velocity = self.ui.label_Branch_Velocity.text() |
|
424 |
self.drop_pressure = None |
|
425 |
|
|
426 |
if self.velocity is None and self.drop_pressure is None: |
|
427 |
self.isAccepted = False |
|
428 |
else: |
|
429 |
self.isAccepted = True |
|
430 |
|
|
31 | 431 |
QDialog.accept(self) |
32 | 432 |
|
33 | 433 |
def reject(self): |
HYTOS/HYTOS/Line_Sizing_Vapor_UI.py | ||
---|---|---|
13 | 13 |
class Ui_Dialog(object): |
14 | 14 |
def setupUi(self, Dialog): |
15 | 15 |
Dialog.setObjectName("Dialog") |
16 |
Dialog.resize(440, 398)
|
|
16 |
Dialog.resize(450, 440)
|
|
17 | 17 |
font = QtGui.QFont() |
18 | 18 |
font.setFamily("맑은 고딕") |
19 | 19 |
Dialog.setFont(font) |
... | ... | |
26 | 26 |
self.scrollArea.setWidgetResizable(True) |
27 | 27 |
self.scrollArea.setObjectName("scrollArea") |
28 | 28 |
self.scrollAreaWidgetContents = QtWidgets.QWidget() |
29 |
self.scrollAreaWidgetContents.setGeometry(QtCore.QRect(0, 0, 403, 637))
|
|
29 |
self.scrollAreaWidgetContents.setGeometry(QtCore.QRect(0, 0, 413, 637))
|
|
30 | 30 |
self.scrollAreaWidgetContents.setObjectName("scrollAreaWidgetContents") |
31 | 31 |
self.horizontalLayout_27 = QtWidgets.QHBoxLayout(self.scrollAreaWidgetContents) |
32 | 32 |
self.horizontalLayout_27.setObjectName("horizontalLayout_27") |
... | ... | |
73 | 73 |
self.gridLayout.addLayout(self.horizontalLayout_2, 0, 0, 1, 1) |
74 | 74 |
self.horizontalLayout_5 = QtWidgets.QHBoxLayout() |
75 | 75 |
self.horizontalLayout_5.setObjectName("horizontalLayout_5") |
76 |
self.radioButton_17 = QtWidgets.QRadioButton(self.scrollAreaWidgetContents) |
|
77 |
self.radioButton_17.setObjectName("radioButton_17") |
|
78 |
self.horizontalLayout_5.addWidget(self.radioButton_17) |
|
79 |
self.label_43 = QtWidgets.QLabel(self.scrollAreaWidgetContents) |
|
80 |
self.label_43.setMinimumSize(QtCore.QSize(100, 0)) |
|
81 |
self.label_43.setMaximumSize(QtCore.QSize(100, 16777215)) |
|
82 |
self.label_43.setAlignment(QtCore.Qt.AlignCenter) |
|
83 |
self.label_43.setObjectName("label_43") |
|
84 |
self.horizontalLayout_5.addWidget(self.label_43) |
|
85 |
self.label_44 = QtWidgets.QLabel(self.scrollAreaWidgetContents) |
|
86 |
self.label_44.setMinimumSize(QtCore.QSize(100, 0)) |
|
87 |
self.label_44.setMaximumSize(QtCore.QSize(100, 16777215)) |
|
88 |
self.label_44.setAlignment(QtCore.Qt.AlignCenter) |
|
89 |
self.label_44.setObjectName("label_44") |
|
90 |
self.horizontalLayout_5.addWidget(self.label_44) |
|
76 |
self.radioButton_High_Pressure_Steam = QtWidgets.QRadioButton(self.scrollAreaWidgetContents) |
|
77 |
self.radioButton_High_Pressure_Steam.setObjectName("radioButton_High_Pressure_Steam") |
|
78 |
self.horizontalLayout_5.addWidget(self.radioButton_High_Pressure_Steam) |
|
79 |
self.label_High_Pressure_Steam_Velocity = QtWidgets.QLabel(self.scrollAreaWidgetContents) |
|
80 |
self.label_High_Pressure_Steam_Velocity.setMinimumSize(QtCore.QSize(100, 0)) |
|
81 |
self.label_High_Pressure_Steam_Velocity.setMaximumSize(QtCore.QSize(100, 16777215)) |
|
82 |
self.label_High_Pressure_Steam_Velocity.setText("") |
|
83 |
self.label_High_Pressure_Steam_Velocity.setAlignment(QtCore.Qt.AlignCenter) |
|
84 |
self.label_High_Pressure_Steam_Velocity.setObjectName("label_High_Pressure_Steam_Velocity") |
|
85 |
self.horizontalLayout_5.addWidget(self.label_High_Pressure_Steam_Velocity) |
|
86 |
self.label_High_Pressure_Steam_Drop_Pressure = QtWidgets.QLabel(self.scrollAreaWidgetContents) |
|
87 |
self.label_High_Pressure_Steam_Drop_Pressure.setMinimumSize(QtCore.QSize(100, 0)) |
|
88 |
self.label_High_Pressure_Steam_Drop_Pressure.setMaximumSize(QtCore.QSize(100, 16777215)) |
|
89 |
self.label_High_Pressure_Steam_Drop_Pressure.setText("") |
|
90 |
self.label_High_Pressure_Steam_Drop_Pressure.setAlignment(QtCore.Qt.AlignCenter) |
|
91 |
self.label_High_Pressure_Steam_Drop_Pressure.setObjectName("label_High_Pressure_Steam_Drop_Pressure") |
|
92 |
self.horizontalLayout_5.addWidget(self.label_High_Pressure_Steam_Drop_Pressure) |
|
91 | 93 |
self.gridLayout.addLayout(self.horizontalLayout_5, 20, 0, 1, 1) |
92 | 94 |
self.horizontalLayout = QtWidgets.QHBoxLayout() |
93 | 95 |
self.horizontalLayout.setObjectName("horizontalLayout") |
94 |
self.radioButton_20 = QtWidgets.QRadioButton(self.scrollAreaWidgetContents) |
|
95 |
self.radioButton_20.setObjectName("radioButton_20") |
|
96 |
self.horizontalLayout.addWidget(self.radioButton_20) |
|
97 |
self.label_49 = QtWidgets.QLabel(self.scrollAreaWidgetContents) |
|
98 |
self.label_49.setMinimumSize(QtCore.QSize(100, 0)) |
|
99 |
self.label_49.setMaximumSize(QtCore.QSize(100, 16777215)) |
|
100 |
self.label_49.setAlignment(QtCore.Qt.AlignCenter) |
|
101 |
self.label_49.setObjectName("label_49") |
|
102 |
self.horizontalLayout.addWidget(self.label_49) |
|
103 |
self.label_50 = QtWidgets.QLabel(self.scrollAreaWidgetContents) |
|
104 |
self.label_50.setMinimumSize(QtCore.QSize(100, 0)) |
|
105 |
self.label_50.setMaximumSize(QtCore.QSize(100, 16777215)) |
|
106 |
self.label_50.setAlignment(QtCore.Qt.AlignCenter) |
|
107 |
self.label_50.setObjectName("label_50") |
|
108 |
self.horizontalLayout.addWidget(self.label_50) |
|
96 |
self.radioButton_Branch = QtWidgets.QRadioButton(self.scrollAreaWidgetContents) |
|
97 |
self.radioButton_Branch.setObjectName("radioButton_Branch") |
|
98 |
self.horizontalLayout.addWidget(self.radioButton_Branch) |
|
99 |
self.label_Branch_Velocity = QtWidgets.QLabel(self.scrollAreaWidgetContents) |
|
100 |
self.label_Branch_Velocity.setMinimumSize(QtCore.QSize(100, 0)) |
|
101 |
self.label_Branch_Velocity.setMaximumSize(QtCore.QSize(100, 16777215)) |
|
102 |
self.label_Branch_Velocity.setText("") |
|
103 |
self.label_Branch_Velocity.setAlignment(QtCore.Qt.AlignCenter) |
|
104 |
self.label_Branch_Velocity.setObjectName("label_Branch_Velocity") |
|
105 |
self.horizontalLayout.addWidget(self.label_Branch_Velocity) |
|
106 |
self.label_Branch_Drop_Pressure = QtWidgets.QLabel(self.scrollAreaWidgetContents) |
|
107 |
self.label_Branch_Drop_Pressure.setMinimumSize(QtCore.QSize(100, 0)) |
|
108 |
self.label_Branch_Drop_Pressure.setMaximumSize(QtCore.QSize(100, 16777215)) |
|
109 |
self.label_Branch_Drop_Pressure.setAlignment(QtCore.Qt.AlignCenter) |
|
110 |
self.label_Branch_Drop_Pressure.setObjectName("label_Branch_Drop_Pressure") |
|
111 |
self.horizontalLayout.addWidget(self.label_Branch_Drop_Pressure) |
|
109 | 112 |
self.gridLayout.addLayout(self.horizontalLayout, 23, 0, 1, 1) |
110 | 113 |
self.horizontalLayout_15 = QtWidgets.QHBoxLayout() |
111 | 114 |
self.horizontalLayout_15.setObjectName("horizontalLayout_15") |
112 |
self.radioButton_4 = QtWidgets.QRadioButton(self.scrollAreaWidgetContents) |
|
113 |
self.radioButton_4.setObjectName("radioButton_4") |
|
114 |
self.horizontalLayout_15.addWidget(self.radioButton_4) |
|
115 |
self.label_15 = QtWidgets.QLabel(self.scrollAreaWidgetContents) |
|
116 |
self.label_15.setMinimumSize(QtCore.QSize(100, 0)) |
|
117 |
self.label_15.setMaximumSize(QtCore.QSize(100, 16777215)) |
|
118 |
self.label_15.setAlignment(QtCore.Qt.AlignCenter) |
|
119 |
self.label_15.setObjectName("label_15") |
|
120 |
self.horizontalLayout_15.addWidget(self.label_15) |
|
121 |
self.label_16 = QtWidgets.QLabel(self.scrollAreaWidgetContents) |
|
122 |
self.label_16.setMinimumSize(QtCore.QSize(100, 0)) |
|
123 |
self.label_16.setMaximumSize(QtCore.QSize(100, 16777215)) |
|
124 |
self.label_16.setAlignment(QtCore.Qt.AlignCenter) |
|
125 |
self.label_16.setObjectName("label_16") |
|
126 |
self.horizontalLayout_15.addWidget(self.label_16) |
|
115 |
self.radioButton_Pressure_3 = QtWidgets.QRadioButton(self.scrollAreaWidgetContents) |
|
116 |
self.radioButton_Pressure_3.setObjectName("radioButton_Pressure_3") |
|
117 |
self.horizontalLayout_15.addWidget(self.radioButton_Pressure_3) |
|
118 |
self.label_Pressure_3_Velocity = QtWidgets.QLabel(self.scrollAreaWidgetContents) |
|
119 |
self.label_Pressure_3_Velocity.setMinimumSize(QtCore.QSize(100, 0)) |
|
120 |
self.label_Pressure_3_Velocity.setMaximumSize(QtCore.QSize(100, 16777215)) |
|
121 |
self.label_Pressure_3_Velocity.setAlignment(QtCore.Qt.AlignCenter) |
|
122 |
self.label_Pressure_3_Velocity.setObjectName("label_Pressure_3_Velocity") |
|
123 |
self.horizontalLayout_15.addWidget(self.label_Pressure_3_Velocity) |
|
124 |
self.label_Pressure_3_Drop_Pressure = QtWidgets.QLabel(self.scrollAreaWidgetContents) |
|
125 |
self.label_Pressure_3_Drop_Pressure.setMinimumSize(QtCore.QSize(100, 0)) |
|
126 |
self.label_Pressure_3_Drop_Pressure.setMaximumSize(QtCore.QSize(100, 16777215)) |
|
127 |
self.label_Pressure_3_Drop_Pressure.setText("") |
|
128 |
self.label_Pressure_3_Drop_Pressure.setAlignment(QtCore.Qt.AlignCenter) |
|
129 |
self.label_Pressure_3_Drop_Pressure.setObjectName("label_Pressure_3_Drop_Pressure") |
|
130 |
self.horizontalLayout_15.addWidget(self.label_Pressure_3_Drop_Pressure) |
|
127 | 131 |
self.gridLayout.addLayout(self.horizontalLayout_15, 5, 0, 1, 1) |
128 | 132 |
self.horizontalLayout_8 = QtWidgets.QHBoxLayout() |
129 | 133 |
self.horizontalLayout_8.setObjectName("horizontalLayout_8") |
... | ... | |
137 | 141 |
self.gridLayout.addLayout(self.horizontalLayout_8, 8, 0, 1, 1) |
138 | 142 |
self.horizontalLayout_7 = QtWidgets.QHBoxLayout() |
139 | 143 |
self.horizontalLayout_7.setObjectName("horizontalLayout_7") |
140 |
self.radioButton_11 = QtWidgets.QRadioButton(self.scrollAreaWidgetContents) |
|
141 |
self.radioButton_11.setObjectName("radioButton_11") |
|
142 |
self.horizontalLayout_7.addWidget(self.radioButton_11) |
|
143 |
self.label_30 = QtWidgets.QLabel(self.scrollAreaWidgetContents) |
|
144 |
self.label_30.setMinimumSize(QtCore.QSize(100, 0)) |
|
145 |
self.label_30.setMaximumSize(QtCore.QSize(100, 16777215)) |
|
146 |
self.label_30.setAlignment(QtCore.Qt.AlignCenter) |
|
147 |
self.label_30.setObjectName("label_30") |
|
148 |
self.horizontalLayout_7.addWidget(self.label_30) |
|
149 |
self.label_31 = QtWidgets.QLabel(self.scrollAreaWidgetContents) |
|
150 |
self.label_31.setMinimumSize(QtCore.QSize(100, 0)) |
|
151 |
self.label_31.setMaximumSize(QtCore.QSize(100, 16777215)) |
|
152 |
self.label_31.setAlignment(QtCore.Qt.AlignCenter) |
|
153 |
self.label_31.setObjectName("label_31") |
|
154 |
self.horizontalLayout_7.addWidget(self.label_31) |
|
144 |
self.radioButton_Pressure_5 = QtWidgets.QRadioButton(self.scrollAreaWidgetContents) |
|
145 |
self.radioButton_Pressure_5.setObjectName("radioButton_Pressure_5") |
|
146 |
self.horizontalLayout_7.addWidget(self.radioButton_Pressure_5) |
|
147 |
self.label_Pressure_5_Velocity = QtWidgets.QLabel(self.scrollAreaWidgetContents) |
|
148 |
self.label_Pressure_5_Velocity.setMinimumSize(QtCore.QSize(100, 0)) |
|
149 |
self.label_Pressure_5_Velocity.setMaximumSize(QtCore.QSize(100, 16777215)) |
|
150 |
self.label_Pressure_5_Velocity.setText("") |
|
151 |
self.label_Pressure_5_Velocity.setAlignment(QtCore.Qt.AlignCenter) |
|
152 |
self.label_Pressure_5_Velocity.setObjectName("label_Pressure_5_Velocity") |
|
153 |
self.horizontalLayout_7.addWidget(self.label_Pressure_5_Velocity) |
|
154 |
self.label_Pressure_5_Drop_Pressure = QtWidgets.QLabel(self.scrollAreaWidgetContents) |
|
155 |
self.label_Pressure_5_Drop_Pressure.setMinimumSize(QtCore.QSize(100, 0)) |
|
156 |
self.label_Pressure_5_Drop_Pressure.setMaximumSize(QtCore.QSize(100, 16777215)) |
|
157 |
self.label_Pressure_5_Drop_Pressure.setText("") |
|
158 |
self.label_Pressure_5_Drop_Pressure.setAlignment(QtCore.Qt.AlignCenter) |
|
159 |
self.label_Pressure_5_Drop_Pressure.setObjectName("label_Pressure_5_Drop_Pressure") |
|
160 |
self.horizontalLayout_7.addWidget(self.label_Pressure_5_Drop_Pressure) |
|
155 | 161 |
self.gridLayout.addLayout(self.horizontalLayout_7, 13, 0, 1, 1) |
156 | 162 |
self.horizontalLayout_3 = QtWidgets.QHBoxLayout() |
157 | 163 |
self.horizontalLayout_3.setObjectName("horizontalLayout_3") |
158 |
self.radioButton_19 = QtWidgets.QRadioButton(self.scrollAreaWidgetContents) |
|
159 |
self.radioButton_19.setObjectName("radioButton_19") |
|
160 |
self.horizontalLayout_3.addWidget(self.radioButton_19) |
|
161 |
self.label_47 = QtWidgets.QLabel(self.scrollAreaWidgetContents) |
|
162 |
self.label_47.setMinimumSize(QtCore.QSize(100, 0)) |
|
163 |
self.label_47.setMaximumSize(QtCore.QSize(100, 16777215)) |
|
164 |
self.label_47.setAlignment(QtCore.Qt.AlignCenter) |
|
165 |
self.label_47.setObjectName("label_47") |
|
166 |
self.horizontalLayout_3.addWidget(self.label_47) |
|
167 |
self.label_48 = QtWidgets.QLabel(self.scrollAreaWidgetContents) |
|
168 |
self.label_48.setMinimumSize(QtCore.QSize(100, 0)) |
|
169 |
self.label_48.setMaximumSize(QtCore.QSize(100, 16777215)) |
|
170 |
self.label_48.setAlignment(QtCore.Qt.AlignCenter) |
|
171 |
self.label_48.setObjectName("label_48") |
|
172 |
self.horizontalLayout_3.addWidget(self.label_48) |
|
164 |
self.radioButton_Header = QtWidgets.QRadioButton(self.scrollAreaWidgetContents) |
|
165 |
self.radioButton_Header.setObjectName("radioButton_Header") |
|
166 |
self.horizontalLayout_3.addWidget(self.radioButton_Header) |
|
167 |
self.label_Header_Velocity = QtWidgets.QLabel(self.scrollAreaWidgetContents) |
|
168 |
self.label_Header_Velocity.setMinimumSize(QtCore.QSize(100, 0)) |
|
169 |
self.label_Header_Velocity.setMaximumSize(QtCore.QSize(100, 16777215)) |
|
170 |
self.label_Header_Velocity.setAlignment(QtCore.Qt.AlignCenter) |
|
171 |
self.label_Header_Velocity.setObjectName("label_Header_Velocity") |
|
172 |
self.horizontalLayout_3.addWidget(self.label_Header_Velocity) |
|
173 |
self.label_Header_Drop_Pressure = QtWidgets.QLabel(self.scrollAreaWidgetContents) |
|
174 |
self.label_Header_Drop_Pressure.setMinimumSize(QtCore.QSize(100, 0)) |
|
175 |
self.label_Header_Drop_Pressure.setMaximumSize(QtCore.QSize(100, 16777215)) |
|
176 |
self.label_Header_Drop_Pressure.setText("") |
|
177 |
self.label_Header_Drop_Pressure.setAlignment(QtCore.Qt.AlignCenter) |
|
178 |
self.label_Header_Drop_Pressure.setObjectName("label_Header_Drop_Pressure") |
|
179 |
self.horizontalLayout_3.addWidget(self.label_Header_Drop_Pressure) |
|
173 | 180 |
self.gridLayout.addLayout(self.horizontalLayout_3, 22, 0, 1, 1) |
174 | 181 |
self.horizontalLayout_20 = QtWidgets.QHBoxLayout() |
175 | 182 |
self.horizontalLayout_20.setObjectName("horizontalLayout_20") |
176 |
self.radioButton_9 = QtWidgets.QRadioButton(self.scrollAreaWidgetContents) |
|
177 |
self.radioButton_9.setObjectName("radioButton_9") |
|
178 |
self.horizontalLayout_20.addWidget(self.radioButton_9) |
|
179 |
self.label_26 = QtWidgets.QLabel(self.scrollAreaWidgetContents) |
|
180 |
self.label_26.setMinimumSize(QtCore.QSize(100, 0)) |
|
181 |
self.label_26.setMaximumSize(QtCore.QSize(100, 16777215)) |
|
182 |
self.label_26.setAlignment(QtCore.Qt.AlignCenter) |
|
183 |
self.label_26.setObjectName("label_26") |
|
184 |
self.horizontalLayout_20.addWidget(self.label_26) |
|
185 |
self.label_27 = QtWidgets.QLabel(self.scrollAreaWidgetContents) |
|
186 |
self.label_27.setMinimumSize(QtCore.QSize(100, 0)) |
|
187 |
self.label_27.setMaximumSize(QtCore.QSize(100, 16777215)) |
|
188 |
self.label_27.setAlignment(QtCore.Qt.AlignCenter) |
|
189 |
self.label_27.setObjectName("label_27") |
|
190 |
self.horizontalLayout_20.addWidget(self.label_27) |
|
183 |
self.radioButton_Discharge = QtWidgets.QRadioButton(self.scrollAreaWidgetContents) |
|
184 |
self.radioButton_Discharge.setObjectName("radioButton_Discharge") |
|
185 |
self.horizontalLayout_20.addWidget(self.radioButton_Discharge) |
|
186 |
self.label_Discharge_Velocity = QtWidgets.QLabel(self.scrollAreaWidgetContents) |
|
187 |
self.label_Discharge_Velocity.setMinimumSize(QtCore.QSize(100, 0)) |
|
188 |
self.label_Discharge_Velocity.setMaximumSize(QtCore.QSize(100, 16777215)) |
|
189 |
self.label_Discharge_Velocity.setText("") |
|
190 |
self.label_Discharge_Velocity.setAlignment(QtCore.Qt.AlignCenter) |
|
191 |
self.label_Discharge_Velocity.setObjectName("label_Discharge_Velocity") |
|
192 |
self.horizontalLayout_20.addWidget(self.label_Discharge_Velocity) |
|
193 |
self.label_Discharge_Drop_Pressure = QtWidgets.QLabel(self.scrollAreaWidgetContents) |
|
194 |
self.label_Discharge_Drop_Pressure.setMinimumSize(QtCore.QSize(100, 0)) |
|
195 |
self.label_Discharge_Drop_Pressure.setMaximumSize(QtCore.QSize(100, 16777215)) |
|
196 |
self.label_Discharge_Drop_Pressure.setText("") |
|
197 |
self.label_Discharge_Drop_Pressure.setAlignment(QtCore.Qt.AlignCenter) |
|
198 |
self.label_Discharge_Drop_Pressure.setObjectName("label_Discharge_Drop_Pressure") |
|
199 |
self.horizontalLayout_20.addWidget(self.label_Discharge_Drop_Pressure) |
|
191 | 200 |
self.gridLayout.addLayout(self.horizontalLayout_20, 11, 0, 1, 1) |
192 | 201 |
self.horizontalLayout_21 = QtWidgets.QHBoxLayout() |
193 | 202 |
self.horizontalLayout_21.setObjectName("horizontalLayout_21") |
194 |
self.radioButton_2 = QtWidgets.QRadioButton(self.scrollAreaWidgetContents) |
|
195 |
self.radioButton_2.setObjectName("radioButton_2") |
|
196 |
self.horizontalLayout_21.addWidget(self.radioButton_2) |
|
197 |
self.label_10 = QtWidgets.QLabel(self.scrollAreaWidgetContents) |
|
198 |
self.label_10.setMinimumSize(QtCore.QSize(100, 0)) |
|
199 |
self.label_10.setMaximumSize(QtCore.QSize(100, 16777215)) |
|
200 |
self.label_10.setAlignment(QtCore.Qt.AlignCenter) |
|
201 |
self.label_10.setObjectName("label_10") |
|
202 |
self.horizontalLayout_21.addWidget(self.label_10) |
|
203 |
self.label_11 = QtWidgets.QLabel(self.scrollAreaWidgetContents) |
|
204 |
self.label_11.setMinimumSize(QtCore.QSize(100, 0)) |
|
205 |
self.label_11.setMaximumSize(QtCore.QSize(100, 16777215)) |
|
206 |
self.label_11.setAlignment(QtCore.Qt.AlignCenter) |
|
207 |
self.label_11.setObjectName("label_11") |
|
208 |
self.horizontalLayout_21.addWidget(self.label_11) |
|
203 |
self.radioButton_Pressure_1 = QtWidgets.QRadioButton(self.scrollAreaWidgetContents) |
|
204 |
self.radioButton_Pressure_1.setObjectName("radioButton_Pressure_1") |
|
205 |
self.horizontalLayout_21.addWidget(self.radioButton_Pressure_1) |
|
206 |
self.label_Pressure_1_Velocity = QtWidgets.QLabel(self.scrollAreaWidgetContents) |
|
207 |
self.label_Pressure_1_Velocity.setMinimumSize(QtCore.QSize(100, 0)) |
|
208 |
self.label_Pressure_1_Velocity.setMaximumSize(QtCore.QSize(100, 16777215)) |
|
209 |
self.label_Pressure_1_Velocity.setAlignment(QtCore.Qt.AlignCenter) |
|
210 |
self.label_Pressure_1_Velocity.setObjectName("label_Pressure_1_Velocity") |
|
211 |
self.horizontalLayout_21.addWidget(self.label_Pressure_1_Velocity) |
|
212 |
self.label_Pressure_1_Drop_Pressure = QtWidgets.QLabel(self.scrollAreaWidgetContents) |
|
213 |
self.label_Pressure_1_Drop_Pressure.setMinimumSize(QtCore.QSize(100, 0)) |
|
214 |
self.label_Pressure_1_Drop_Pressure.setMaximumSize(QtCore.QSize(100, 16777215)) |
|
215 |
self.label_Pressure_1_Drop_Pressure.setText("") |
|
216 |
self.label_Pressure_1_Drop_Pressure.setAlignment(QtCore.Qt.AlignCenter) |
|
217 |
self.label_Pressure_1_Drop_Pressure.setObjectName("label_Pressure_1_Drop_Pressure") |
|
218 |
self.horizontalLayout_21.addWidget(self.label_Pressure_1_Drop_Pressure) |
|
209 | 219 |
self.gridLayout.addLayout(self.horizontalLayout_21, 3, 0, 1, 1) |
210 | 220 |
self.horizontalLayout_9 = QtWidgets.QHBoxLayout() |
211 | 221 |
self.horizontalLayout_9.setObjectName("horizontalLayout_9") |
... | ... | |
229 | 239 |
self.gridLayout.addLayout(self.horizontalLayout_11, 16, 0, 1, 1) |
230 | 240 |
self.horizontalLayout_14 = QtWidgets.QHBoxLayout() |
231 | 241 |
self.horizontalLayout_14.setObjectName("horizontalLayout_14") |
232 |
self.radioButton_13 = QtWidgets.QRadioButton(self.scrollAreaWidgetContents) |
|
233 |
self.radioButton_13.setObjectName("radioButton_13") |
|
234 |
self.horizontalLayout_14.addWidget(self.radioButton_13) |
|
235 |
self.label_34 = QtWidgets.QLabel(self.scrollAreaWidgetContents) |
|
236 |
self.label_34.setMinimumSize(QtCore.QSize(100, 0)) |
|
237 |
self.label_34.setMaximumSize(QtCore.QSize(100, 16777215)) |
|
238 |
self.label_34.setAlignment(QtCore.Qt.AlignCenter) |
|
239 |
self.label_34.setObjectName("label_34") |
|
240 |
self.horizontalLayout_14.addWidget(self.label_34) |
|
241 |
self.label_35 = QtWidgets.QLabel(self.scrollAreaWidgetContents) |
|
242 |
self.label_35.setMinimumSize(QtCore.QSize(100, 0)) |
|
243 |
self.label_35.setMaximumSize(QtCore.QSize(100, 16777215)) |
|
244 |
self.label_35.setAlignment(QtCore.Qt.AlignCenter) |
|
245 |
self.label_35.setObjectName("label_35") |
|
246 |
self.horizontalLayout_14.addWidget(self.label_35) |
|
242 |
self.radioButton_Pressure_6 = QtWidgets.QRadioButton(self.scrollAreaWidgetContents) |
|
243 |
self.radioButton_Pressure_6.setObjectName("radioButton_Pressure_6") |
|
244 |
self.horizontalLayout_14.addWidget(self.radioButton_Pressure_6) |
|
245 |
self.label_Pressure_6_Velocity = QtWidgets.QLabel(self.scrollAreaWidgetContents) |
|
246 |
self.label_Pressure_6_Velocity.setMinimumSize(QtCore.QSize(100, 0)) |
|
247 |
self.label_Pressure_6_Velocity.setMaximumSize(QtCore.QSize(100, 16777215)) |
|
248 |
self.label_Pressure_6_Velocity.setText("") |
|
249 |
self.label_Pressure_6_Velocity.setAlignment(QtCore.Qt.AlignCenter) |
|
250 |
self.label_Pressure_6_Velocity.setObjectName("label_Pressure_6_Velocity") |
|
251 |
self.horizontalLayout_14.addWidget(self.label_Pressure_6_Velocity) |
|
252 |
self.label_Pressure_6_Drop_Pressure = QtWidgets.QLabel(self.scrollAreaWidgetContents) |
|
253 |
self.label_Pressure_6_Drop_Pressure.setMinimumSize(QtCore.QSize(100, 0)) |
|
254 |
self.label_Pressure_6_Drop_Pressure.setMaximumSize(QtCore.QSize(100, 16777215)) |
|
255 |
self.label_Pressure_6_Drop_Pressure.setText("") |
|
256 |
self.label_Pressure_6_Drop_Pressure.setAlignment(QtCore.Qt.AlignCenter) |
|
257 |
self.label_Pressure_6_Drop_Pressure.setObjectName("label_Pressure_6_Drop_Pressure") |
|
258 |
self.horizontalLayout_14.addWidget(self.label_Pressure_6_Drop_Pressure) |
|
247 | 259 |
self.gridLayout.addLayout(self.horizontalLayout_14, 15, 0, 1, 1) |
248 | 260 |
self.horizontalLayout_10 = QtWidgets.QHBoxLayout() |
249 | 261 |
self.horizontalLayout_10.setObjectName("horizontalLayout_10") |
250 |
self.radioButton_15 = QtWidgets.QRadioButton(self.scrollAreaWidgetContents) |
|
251 |
self.radioButton_15.setObjectName("radioButton_15") |
|
252 |
self.horizontalLayout_10.addWidget(self.radioButton_15) |
|
253 |
self.label_39 = QtWidgets.QLabel(self.scrollAreaWidgetContents) |
|
254 |
self.label_39.setMinimumSize(QtCore.QSize(100, 0)) |
|
255 |
self.label_39.setMaximumSize(QtCore.QSize(100, 16777215)) |
|
256 |
self.label_39.setAlignment(QtCore.Qt.AlignCenter) |
|
257 |
self.label_39.setObjectName("label_39") |
|
258 |
self.horizontalLayout_10.addWidget(self.label_39) |
|
259 |
self.label_40 = QtWidgets.QLabel(self.scrollAreaWidgetContents) |
|
260 |
self.label_40.setMinimumSize(QtCore.QSize(100, 0)) |
|
261 |
self.label_40.setMaximumSize(QtCore.QSize(100, 16777215)) |
|
262 |
self.label_40.setAlignment(QtCore.Qt.AlignCenter) |
|
263 |
self.label_40.setObjectName("label_40") |
|
264 |
self.horizontalLayout_10.addWidget(self.label_40) |
|
262 |
self.radioButton_Pressure_8 = QtWidgets.QRadioButton(self.scrollAreaWidgetContents) |
|
263 |
self.radioButton_Pressure_8.setObjectName("radioButton_Pressure_8") |
|
264 |
self.horizontalLayout_10.addWidget(self.radioButton_Pressure_8) |
|
265 |
self.label_Pressure_8_Velocity = QtWidgets.QLabel(self.scrollAreaWidgetContents) |
|
266 |
self.label_Pressure_8_Velocity.setMinimumSize(QtCore.QSize(100, 0)) |
|
267 |
self.label_Pressure_8_Velocity.setMaximumSize(QtCore.QSize(100, 16777215)) |
|
268 |
self.label_Pressure_8_Velocity.setText("") |
|
269 |
self.label_Pressure_8_Velocity.setAlignment(QtCore.Qt.AlignCenter) |
|
270 |
self.label_Pressure_8_Velocity.setObjectName("label_Pressure_8_Velocity") |
|
271 |
self.horizontalLayout_10.addWidget(self.label_Pressure_8_Velocity) |
|
272 |
self.label_Pressure_8_Drop_Pressure = QtWidgets.QLabel(self.scrollAreaWidgetContents) |
|
273 |
self.label_Pressure_8_Drop_Pressure.setMinimumSize(QtCore.QSize(100, 0)) |
|
274 |
self.label_Pressure_8_Drop_Pressure.setMaximumSize(QtCore.QSize(100, 16777215)) |
|
275 |
self.label_Pressure_8_Drop_Pressure.setText("") |
|
276 |
self.label_Pressure_8_Drop_Pressure.setAlignment(QtCore.Qt.AlignCenter) |
|
277 |
self.label_Pressure_8_Drop_Pressure.setObjectName("label_Pressure_8_Drop_Pressure") |
|
278 |
self.horizontalLayout_10.addWidget(self.label_Pressure_8_Drop_Pressure) |
|
265 | 279 |
self.gridLayout.addLayout(self.horizontalLayout_10, 18, 0, 1, 1) |
266 | 280 |
self.horizontalLayout_18 = QtWidgets.QHBoxLayout() |
267 | 281 |
self.horizontalLayout_18.setObjectName("horizontalLayout_18") |
268 |
self.radioButton_7 = QtWidgets.QRadioButton(self.scrollAreaWidgetContents) |
|
269 |
self.radioButton_7.setObjectName("radioButton_7") |
|
270 |
self.horizontalLayout_18.addWidget(self.radioButton_7) |
|
271 |
self.label_22 = QtWidgets.QLabel(self.scrollAreaWidgetContents) |
|
272 |
self.label_22.setMinimumSize(QtCore.QSize(100, 0)) |
|
273 |
self.label_22.setMaximumSize(QtCore.QSize(100, 16777215)) |
|
274 |
self.label_22.setAlignment(QtCore.Qt.AlignCenter) |
|
275 |
self.label_22.setObjectName("label_22") |
|
276 |
self.horizontalLayout_18.addWidget(self.label_22) |
|
277 |
self.label_23 = QtWidgets.QLabel(self.scrollAreaWidgetContents) |
|
278 |
self.label_23.setMinimumSize(QtCore.QSize(100, 0)) |
|
279 |
self.label_23.setMaximumSize(QtCore.QSize(100, 16777215)) |
|
280 |
self.label_23.setAlignment(QtCore.Qt.AlignCenter) |
|
281 |
self.label_23.setObjectName("label_23") |
|
282 |
self.horizontalLayout_18.addWidget(self.label_23) |
|
282 |
self.radioButton_Suction_Reciprocating = QtWidgets.QRadioButton(self.scrollAreaWidgetContents) |
|
283 |
self.radioButton_Suction_Reciprocating.setObjectName("radioButton_Suction_Reciprocating") |
|
284 |
self.horizontalLayout_18.addWidget(self.radioButton_Suction_Reciprocating) |
|
285 |
self.label_Suction_Reciprocating_Velocity = QtWidgets.QLabel(self.scrollAreaWidgetContents) |
|
286 |
self.label_Suction_Reciprocating_Velocity.setMinimumSize(QtCore.QSize(100, 0)) |
|
287 |
self.label_Suction_Reciprocating_Velocity.setMaximumSize(QtCore.QSize(100, 16777215)) |
|
288 |
self.label_Suction_Reciprocating_Velocity.setText("") |
|
289 |
self.label_Suction_Reciprocating_Velocity.setAlignment(QtCore.Qt.AlignCenter) |
|
290 |
self.label_Suction_Reciprocating_Velocity.setObjectName("label_Suction_Reciprocating_Velocity") |
|
291 |
self.horizontalLayout_18.addWidget(self.label_Suction_Reciprocating_Velocity) |
|
292 |
self.label_Suction_Reciprocating_Drop_Pressure = QtWidgets.QLabel(self.scrollAreaWidgetContents) |
|
293 |
self.label_Suction_Reciprocating_Drop_Pressure.setMinimumSize(QtCore.QSize(100, 0)) |
|
294 |
self.label_Suction_Reciprocating_Drop_Pressure.setMaximumSize(QtCore.QSize(100, 16777215)) |
|
295 |
self.label_Suction_Reciprocating_Drop_Pressure.setAlignment(QtCore.Qt.AlignCenter) |
|
296 |
self.label_Suction_Reciprocating_Drop_Pressure.setObjectName("label_Suction_Reciprocating_Drop_Pressure") |
|
297 |
self.horizontalLayout_18.addWidget(self.label_Suction_Reciprocating_Drop_Pressure) |
|
283 | 298 |
self.gridLayout.addLayout(self.horizontalLayout_18, 9, 0, 1, 1) |
284 | 299 |
self.horizontalLayout_26 = QtWidgets.QHBoxLayout() |
285 | 300 |
self.horizontalLayout_26.setObjectName("horizontalLayout_26") |
286 |
self.radioButton_3 = QtWidgets.QRadioButton(self.scrollAreaWidgetContents) |
|
287 |
self.radioButton_3.setObjectName("radioButton_3") |
|
288 |
self.horizontalLayout_26.addWidget(self.radioButton_3) |
|
289 |
self.label_12 = QtWidgets.QLabel(self.scrollAreaWidgetContents) |
|
290 |
self.label_12.setMinimumSize(QtCore.QSize(100, 0)) |
|
291 |
self.label_12.setMaximumSize(QtCore.QSize(100, 16777215)) |
|
292 |
self.label_12.setAlignment(QtCore.Qt.AlignCenter) |
|
293 |
self.label_12.setObjectName("label_12") |
|
294 |
self.horizontalLayout_26.addWidget(self.label_12) |
|
295 |
self.label_13 = QtWidgets.QLabel(self.scrollAreaWidgetContents) |
|
296 |
self.label_13.setMinimumSize(QtCore.QSize(100, 0)) |
|
297 |
self.label_13.setMaximumSize(QtCore.QSize(100, 16777215)) |
|
298 |
self.label_13.setAlignment(QtCore.Qt.AlignCenter) |
|
299 |
self.label_13.setObjectName("label_13") |
|
300 |
self.horizontalLayout_26.addWidget(self.label_13) |
|
301 |
self.radioButton_Pressure_2 = QtWidgets.QRadioButton(self.scrollAreaWidgetContents) |
|
302 |
self.radioButton_Pressure_2.setObjectName("radioButton_Pressure_2") |
|
303 |
self.horizontalLayout_26.addWidget(self.radioButton_Pressure_2) |
|
304 |
self.label_Pressure_2_Velocity = QtWidgets.QLabel(self.scrollAreaWidgetContents) |
|
305 |
self.label_Pressure_2_Velocity.setMinimumSize(QtCore.QSize(100, 0)) |
|
306 |
self.label_Pressure_2_Velocity.setMaximumSize(QtCore.QSize(100, 16777215)) |
|
307 |
self.label_Pressure_2_Velocity.setAlignment(QtCore.Qt.AlignCenter) |
|
308 |
self.label_Pressure_2_Velocity.setObjectName("label_Pressure_2_Velocity") |
|
309 |
self.horizontalLayout_26.addWidget(self.label_Pressure_2_Velocity) |
|
310 |
self.label_Pressure_2_Drop_Pressure = QtWidgets.QLabel(self.scrollAreaWidgetContents) |
|
311 |
self.label_Pressure_2_Drop_Pressure.setMinimumSize(QtCore.QSize(100, 0)) |
|
312 |
self.label_Pressure_2_Drop_Pressure.setMaximumSize(QtCore.QSize(100, 16777215)) |
|
313 |
self.label_Pressure_2_Drop_Pressure.setText("") |
|
314 |
self.label_Pressure_2_Drop_Pressure.setAlignment(QtCore.Qt.AlignCenter) |
|
315 |
self.label_Pressure_2_Drop_Pressure.setObjectName("label_Pressure_2_Drop_Pressure") |
|
316 |
self.horizontalLayout_26.addWidget(self.label_Pressure_2_Drop_Pressure) |
|
301 | 317 |
self.gridLayout.addLayout(self.horizontalLayout_26, 4, 0, 1, 1) |
302 | 318 |
self.horizontalLayout_19 = QtWidgets.QHBoxLayout() |
303 | 319 |
self.horizontalLayout_19.setObjectName("horizontalLayout_19") |
304 |
self.radioButton_8 = QtWidgets.QRadioButton(self.scrollAreaWidgetContents) |
|
305 |
self.radioButton_8.setObjectName("radioButton_8") |
|
306 |
self.horizontalLayout_19.addWidget(self.radioButton_8) |
|
307 |
self.label_24 = QtWidgets.QLabel(self.scrollAreaWidgetContents) |
|
308 |
self.label_24.setMinimumSize(QtCore.QSize(100, 0)) |
|
309 |
self.label_24.setMaximumSize(QtCore.QSize(100, 16777215)) |
|
310 |
self.label_24.setAlignment(QtCore.Qt.AlignCenter) |
|
311 |
self.label_24.setObjectName("label_24") |
|
312 |
self.horizontalLayout_19.addWidget(self.label_24) |
|
313 |
self.label_25 = QtWidgets.QLabel(self.scrollAreaWidgetContents) |
|
314 |
self.label_25.setMinimumSize(QtCore.QSize(100, 0)) |
|
315 |
self.label_25.setMaximumSize(QtCore.QSize(100, 16777215)) |
|
316 |
self.label_25.setAlignment(QtCore.Qt.AlignCenter) |
|
317 |
self.label_25.setObjectName("label_25") |
|
318 |
self.horizontalLayout_19.addWidget(self.label_25) |
|
320 |
self.radioButton_Suction_Centrifugal = QtWidgets.QRadioButton(self.scrollAreaWidgetContents) |
|
321 |
self.radioButton_Suction_Centrifugal.setObjectName("radioButton_Suction_Centrifugal") |
|
322 |
self.horizontalLayout_19.addWidget(self.radioButton_Suction_Centrifugal) |
|
323 |
self.label_Suction_Centrifugal_Velocity = QtWidgets.QLabel(self.scrollAreaWidgetContents) |
|
324 |
self.label_Suction_Centrifugal_Velocity.setMinimumSize(QtCore.QSize(100, 0)) |
|
325 |
self.label_Suction_Centrifugal_Velocity.setMaximumSize(QtCore.QSize(100, 16777215)) |
|
326 |
self.label_Suction_Centrifugal_Velocity.setText("") |
|
327 |
self.label_Suction_Centrifugal_Velocity.setAlignment(QtCore.Qt.AlignCenter) |
|
328 |
self.label_Suction_Centrifugal_Velocity.setObjectName("label_Suction_Centrifugal_Velocity") |
|
329 |
self.horizontalLayout_19.addWidget(self.label_Suction_Centrifugal_Velocity) |
|
330 |
self.label_Suction_Centrifugal_Drop_Pressure = QtWidgets.QLabel(self.scrollAreaWidgetContents) |
|
331 |
self.label_Suction_Centrifugal_Drop_Pressure.setMinimumSize(QtCore.QSize(100, 0)) |
|
332 |
self.label_Suction_Centrifugal_Drop_Pressure.setMaximumSize(QtCore.QSize(100, 16777215)) |
|
333 |
self.label_Suction_Centrifugal_Drop_Pressure.setAlignment(QtCore.Qt.AlignCenter) |
|
334 |
self.label_Suction_Centrifugal_Drop_Pressure.setObjectName("label_Suction_Centrifugal_Drop_Pressure") |
|
335 |
self.horizontalLayout_19.addWidget(self.label_Suction_Centrifugal_Drop_Pressure) |
|
319 | 336 |
self.gridLayout.addLayout(self.horizontalLayout_19, 10, 0, 1, 1) |
320 | 337 |
self.horizontalLayout_23 = QtWidgets.QHBoxLayout() |
321 | 338 |
self.horizontalLayout_23.setObjectName("horizontalLayout_23") |
... | ... | |
324 | 341 |
self.label_4.setAlignment(QtCore.Qt.AlignCenter) |
325 | 342 |
self.label_4.setObjectName("label_4") |
326 | 343 |
self.horizontalLayout_23.addWidget(self.label_4) |
327 |
self.label_5 = QtWidgets.QLabel(self.scrollAreaWidgetContents)
|
|
328 |
self.label_5.setMinimumSize(QtCore.QSize(100, 0))
|
|
329 |
self.label_5.setMaximumSize(QtCore.QSize(100, 16777215))
|
|
330 |
self.label_5.setAlignment(QtCore.Qt.AlignCenter)
|
|
331 |
self.label_5.setObjectName("label_5")
|
|
332 |
self.horizontalLayout_23.addWidget(self.label_5)
|
|
333 |
self.label_6 = QtWidgets.QLabel(self.scrollAreaWidgetContents)
|
|
334 |
self.label_6.setMinimumSize(QtCore.QSize(100, 0))
|
|
335 |
self.label_6.setMaximumSize(QtCore.QSize(100, 16777215))
|
|
336 |
self.label_6.setAlignment(QtCore.Qt.AlignCenter)
|
|
337 |
self.label_6.setObjectName("label_6")
|
|
338 |
self.horizontalLayout_23.addWidget(self.label_6)
|
|
344 |
self.label_Velocity_Unit = QtWidgets.QLabel(self.scrollAreaWidgetContents)
|
|
345 |
self.label_Velocity_Unit.setMinimumSize(QtCore.QSize(100, 0))
|
|
346 |
self.label_Velocity_Unit.setMaximumSize(QtCore.QSize(100, 16777215))
|
|
347 |
self.label_Velocity_Unit.setAlignment(QtCore.Qt.AlignCenter)
|
|
348 |
self.label_Velocity_Unit.setObjectName("label_Velocity_Unit")
|
|
349 |
self.horizontalLayout_23.addWidget(self.label_Velocity_Unit)
|
|
350 |
self.label_Drop_Pressure_Unit = QtWidgets.QLabel(self.scrollAreaWidgetContents)
|
|
351 |
self.label_Drop_Pressure_Unit.setMinimumSize(QtCore.QSize(100, 0))
|
|
352 |
self.label_Drop_Pressure_Unit.setMaximumSize(QtCore.QSize(100, 16777215))
|
|
353 |
self.label_Drop_Pressure_Unit.setAlignment(QtCore.Qt.AlignCenter)
|
|
354 |
self.label_Drop_Pressure_Unit.setObjectName("label_Drop_Pressure_Unit")
|
|
355 |
self.horizontalLayout_23.addWidget(self.label_Drop_Pressure_Unit)
|
|
339 | 356 |
self.gridLayout.addLayout(self.horizontalLayout_23, 1, 0, 1, 1) |
340 | 357 |
self.horizontalLayout_13 = QtWidgets.QHBoxLayout() |
341 | 358 |
self.horizontalLayout_13.setObjectName("horizontalLayout_13") |
342 |
self.radioButton_14 = QtWidgets.QRadioButton(self.scrollAreaWidgetContents) |
|
343 |
self.radioButton_14.setObjectName("radioButton_14") |
|
344 |
self.horizontalLayout_13.addWidget(self.radioButton_14) |
|
345 |
self.label_37 = QtWidgets.QLabel(self.scrollAreaWidgetContents) |
|
346 |
self.label_37.setMinimumSize(QtCore.QSize(100, 0)) |
|
347 |
self.label_37.setMaximumSize(QtCore.QSize(100, 16777215)) |
|
348 |
self.label_37.setAlignment(QtCore.Qt.AlignCenter) |
|
349 |
self.label_37.setObjectName("label_37") |
|
350 |
self.horizontalLayout_13.addWidget(self.label_37) |
|
351 |
self.label_38 = QtWidgets.QLabel(self.scrollAreaWidgetContents) |
|
352 |
self.label_38.setMinimumSize(QtCore.QSize(100, 0)) |
|
353 |
self.label_38.setMaximumSize(QtCore.QSize(100, 16777215)) |
|
354 |
self.label_38.setAlignment(QtCore.Qt.AlignCenter) |
|
355 |
self.label_38.setObjectName("label_38") |
|
356 |
self.horizontalLayout_13.addWidget(self.label_38) |
|
359 |
self.radioButton_Pressure_7 = QtWidgets.QRadioButton(self.scrollAreaWidgetContents) |
|
360 |
self.radioButton_Pressure_7.setObjectName("radioButton_Pressure_7") |
|
361 |
self.horizontalLayout_13.addWidget(self.radioButton_Pressure_7) |
|
362 |
self.label_Pressure_7_Velocity = QtWidgets.QLabel(self.scrollAreaWidgetContents) |
|
363 |
self.label_Pressure_7_Velocity.setMinimumSize(QtCore.QSize(100, 0)) |
|
364 |
self.label_Pressure_7_Velocity.setMaximumSize(QtCore.QSize(100, 16777215)) |
|
365 |
self.label_Pressure_7_Velocity.setText("") |
|
366 |
self.label_Pressure_7_Velocity.setAlignment(QtCore.Qt.AlignCenter) |
|
367 |
self.label_Pressure_7_Velocity.setObjectName("label_Pressure_7_Velocity") |
|
368 |
self.horizontalLayout_13.addWidget(self.label_Pressure_7_Velocity) |
|
369 |
self.label_Pressure_7_Drop_Pressure = QtWidgets.QLabel(self.scrollAreaWidgetContents) |
|
370 |
self.label_Pressure_7_Drop_Pressure.setMinimumSize(QtCore.QSize(100, 0)) |
|
371 |
self.label_Pressure_7_Drop_Pressure.setMaximumSize(QtCore.QSize(100, 16777215)) |
|
372 |
self.label_Pressure_7_Drop_Pressure.setText("") |
|
373 |
self.label_Pressure_7_Drop_Pressure.setAlignment(QtCore.Qt.AlignCenter) |
|
374 |
self.label_Pressure_7_Drop_Pressure.setObjectName("label_Pressure_7_Drop_Pressure") |
|
375 |
self.horizontalLayout_13.addWidget(self.label_Pressure_7_Drop_Pressure) |
|
357 | 376 |
self.gridLayout.addLayout(self.horizontalLayout_13, 17, 0, 1, 1) |
358 | 377 |
self.horizontalLayout_22 = QtWidgets.QHBoxLayout() |
359 | 378 |
self.horizontalLayout_22.setObjectName("horizontalLayout_22") |
360 |
self.radioButton_5 = QtWidgets.QRadioButton(self.scrollAreaWidgetContents) |
|
361 |
self.radioButton_5.setObjectName("radioButton_5") |
|
362 |
self.horizontalLayout_22.addWidget(self.radioButton_5) |
|
363 |
self.label_17 = QtWidgets.QLabel(self.scrollAreaWidgetContents) |
|
364 |
self.label_17.setMinimumSize(QtCore.QSize(100, 0)) |
|
365 |
self.label_17.setMaximumSize(QtCore.QSize(100, 16777215)) |
|
366 |
self.label_17.setAlignment(QtCore.Qt.AlignCenter) |
|
367 |
self.label_17.setObjectName("label_17") |
|
368 |
self.horizontalLayout_22.addWidget(self.label_17) |
|
369 |
self.label_18 = QtWidgets.QLabel(self.scrollAreaWidgetContents) |
|
370 |
self.label_18.setMinimumSize(QtCore.QSize(100, 0)) |
|
371 |
self.label_18.setMaximumSize(QtCore.QSize(100, 16777215)) |
|
372 |
self.label_18.setAlignment(QtCore.Qt.AlignCenter) |
|
373 |
self.label_18.setObjectName("label_18") |
|
374 |
self.horizontalLayout_22.addWidget(self.label_18) |
|
379 |
self.radioButton_Pressure_4 = QtWidgets.QRadioButton(self.scrollAreaWidgetContents) |
|
380 |
self.radioButton_Pressure_4.setObjectName("radioButton_Pressure_4") |
|
381 |
self.horizontalLayout_22.addWidget(self.radioButton_Pressure_4) |
|
382 |
self.label_Pressure_4_Velocity = QtWidgets.QLabel(self.scrollAreaWidgetContents) |
|
383 |
self.label_Pressure_4_Velocity.setMinimumSize(QtCore.QSize(100, 0)) |
|
384 |
self.label_Pressure_4_Velocity.setMaximumSize(QtCore.QSize(100, 16777215)) |
|
385 |
self.label_Pressure_4_Velocity.setAlignment(QtCore.Qt.AlignCenter) |
|
386 |
self.label_Pressure_4_Velocity.setObjectName("label_Pressure_4_Velocity") |
|
387 |
self.horizontalLayout_22.addWidget(self.label_Pressure_4_Velocity) |
|
388 |
self.label_Pressure_4_Drop_Pressure = QtWidgets.QLabel(self.scrollAreaWidgetContents) |
|
389 |
self.label_Pressure_4_Drop_Pressure.setMinimumSize(QtCore.QSize(100, 0)) |
|
390 |
self.label_Pressure_4_Drop_Pressure.setMaximumSize(QtCore.QSize(100, 16777215)) |
|
391 |
self.label_Pressure_4_Drop_Pressure.setText("") |
|
392 |
self.label_Pressure_4_Drop_Pressure.setAlignment(QtCore.Qt.AlignCenter) |
|
393 |
self.label_Pressure_4_Drop_Pressure.setObjectName("label_Pressure_4_Drop_Pressure") |
|
394 |
self.horizontalLayout_22.addWidget(self.label_Pressure_4_Drop_Pressure) |
|
375 | 395 |
self.gridLayout.addLayout(self.horizontalLayout_22, 6, 0, 1, 1) |
376 | 396 |
self.horizontalLayout_17 = QtWidgets.QHBoxLayout() |
377 | 397 |
self.horizontalLayout_17.setObjectName("horizontalLayout_17") |
378 |
self.radioButton_6 = QtWidgets.QRadioButton(self.scrollAreaWidgetContents) |
|
379 |
self.radioButton_6.setObjectName("radioButton_6") |
|
380 |
self.horizontalLayout_17.addWidget(self.radioButton_6) |
|
381 |
self.label_19 = QtWidgets.QLabel(self.scrollAreaWidgetContents) |
|
382 |
self.label_19.setMinimumSize(QtCore.QSize(100, 0)) |
|
383 |
self.label_19.setMaximumSize(QtCore.QSize(100, 16777215)) |
|
384 |
self.label_19.setAlignment(QtCore.Qt.AlignCenter) |
|
385 |
self.label_19.setObjectName("label_19") |
|
386 |
self.horizontalLayout_17.addWidget(self.label_19) |
|
387 |
self.label_20 = QtWidgets.QLabel(self.scrollAreaWidgetContents) |
|
388 |
self.label_20.setMinimumSize(QtCore.QSize(100, 0)) |
|
389 |
self.label_20.setMaximumSize(QtCore.QSize(100, 16777215)) |
|
390 |
self.label_20.setAlignment(QtCore.Qt.AlignCenter) |
|
391 |
self.label_20.setObjectName("label_20") |
|
392 |
self.horizontalLayout_17.addWidget(self.label_20) |
|
398 |
self.radioButton_Air_Service = QtWidgets.QRadioButton(self.scrollAreaWidgetContents) |
|
399 |
self.radioButton_Air_Service.setObjectName("radioButton_Air_Service") |
|
400 |
self.horizontalLayout_17.addWidget(self.radioButton_Air_Service) |
|
401 |
self.label_Air_Service_Velocity = QtWidgets.QLabel(self.scrollAreaWidgetContents) |
|
402 |
self.label_Air_Service_Velocity.setMinimumSize(QtCore.QSize(100, 0)) |
|
403 |
self.label_Air_Service_Velocity.setMaximumSize(QtCore.QSize(100, 16777215)) |
|
404 |
self.label_Air_Service_Velocity.setText("") |
|
405 |
self.label_Air_Service_Velocity.setAlignment(QtCore.Qt.AlignCenter) |
|
406 |
self.label_Air_Service_Velocity.setObjectName("label_Air_Service_Velocity") |
|
407 |
self.horizontalLayout_17.addWidget(self.label_Air_Service_Velocity) |
|
408 |
self.label_Air_Service_Drop_Pressure = QtWidgets.QLabel(self.scrollAreaWidgetContents) |
|
409 |
self.label_Air_Service_Drop_Pressure.setMinimumSize(QtCore.QSize(100, 0)) |
|
410 |
self.label_Air_Service_Drop_Pressure.setMaximumSize(QtCore.QSize(100, 16777215)) |
|
411 |
self.label_Air_Service_Drop_Pressure.setText("") |
|
412 |
self.label_Air_Service_Drop_Pressure.setAlignment(QtCore.Qt.AlignCenter) |
|
413 |
self.label_Air_Service_Drop_Pressure.setObjectName("label_Air_Service_Drop_Pressure") |
|
414 |
self.horizontalLayout_17.addWidget(self.label_Air_Service_Drop_Pressure) |
|
393 | 415 |
self.gridLayout.addLayout(self.horizontalLayout_17, 7, 0, 1, 1) |
394 | 416 |
self.horizontalLayout_6 = QtWidgets.QHBoxLayout() |
395 | 417 |
self.horizontalLayout_6.setObjectName("horizontalLayout_6") |
396 |
self.radioButton_16 = QtWidgets.QRadioButton(self.scrollAreaWidgetContents) |
|
397 |
self.radioButton_16.setObjectName("radioButton_16") |
|
398 |
self.horizontalLayout_6.addWidget(self.radioButton_16) |
|
399 |
self.label_41 = QtWidgets.QLabel(self.scrollAreaWidgetContents) |
|
400 |
self.label_41.setMinimumSize(QtCore.QSize(100, 0)) |
|
401 |
self.label_41.setMaximumSize(QtCore.QSize(100, 16777215)) |
|
402 |
self.label_41.setAlignment(QtCore.Qt.AlignCenter) |
|
403 |
self.label_41.setObjectName("label_41") |
|
404 |
self.horizontalLayout_6.addWidget(self.label_41) |
|
405 |
self.label_42 = QtWidgets.QLabel(self.scrollAreaWidgetContents) |
|
406 |
self.label_42.setMinimumSize(QtCore.QSize(100, 0)) |
|
407 |
self.label_42.setMaximumSize(QtCore.QSize(100, 16777215)) |
|
408 |
self.label_42.setAlignment(QtCore.Qt.AlignCenter) |
|
409 |
self.label_42.setObjectName("label_42") |
|
410 |
self.horizontalLayout_6.addWidget(self.label_42) |
|
418 |
self.radioButton_Pressure_9 = QtWidgets.QRadioButton(self.scrollAreaWidgetContents) |
|
419 |
self.radioButton_Pressure_9.setObjectName("radioButton_Pressure_9") |
|
420 |
self.horizontalLayout_6.addWidget(self.radioButton_Pressure_9) |
|
421 |
self.label_Pressure_9_Velocity = QtWidgets.QLabel(self.scrollAreaWidgetContents) |
|
422 |
self.label_Pressure_9_Velocity.setMinimumSize(QtCore.QSize(100, 0)) |
|
423 |
self.label_Pressure_9_Velocity.setMaximumSize(QtCore.QSize(100, 16777215)) |
|
424 |
self.label_Pressure_9_Velocity.setText("") |
|
425 |
self.label_Pressure_9_Velocity.setAlignment(QtCore.Qt.AlignCenter) |
|
426 |
self.label_Pressure_9_Velocity.setObjectName("label_Pressure_9_Velocity") |
|
427 |
self.horizontalLayout_6.addWidget(self.label_Pressure_9_Velocity) |
|
428 |
self.label_Pressure_9_Drop_Pressure = QtWidgets.QLabel(self.scrollAreaWidgetContents) |
|
429 |
self.label_Pressure_9_Drop_Pressure.setMinimumSize(QtCore.QSize(100, 0)) |
|
430 |
self.label_Pressure_9_Drop_Pressure.setMaximumSize(QtCore.QSize(100, 16777215)) |
|
431 |
self.label_Pressure_9_Drop_Pressure.setText("") |
|
432 |
self.label_Pressure_9_Drop_Pressure.setAlignment(QtCore.Qt.AlignCenter) |
|
433 |
self.label_Pressure_9_Drop_Pressure.setObjectName("label_Pressure_9_Drop_Pressure") |
|
434 |
self.horizontalLayout_6.addWidget(self.label_Pressure_9_Drop_Pressure) |
|
411 | 435 |
self.gridLayout.addLayout(self.horizontalLayout_6, 19, 0, 1, 1) |
412 | 436 |
self.horizontalLayout_4 = QtWidgets.QHBoxLayout() |
413 | 437 |
self.horizontalLayout_4.setObjectName("horizontalLayout_4") |
... | ... | |
421 | 445 |
self.gridLayout.addLayout(self.horizontalLayout_4, 21, 0, 1, 1) |
422 | 446 |
self.horizontalLayout_12 = QtWidgets.QHBoxLayout() |
423 | 447 |
self.horizontalLayout_12.setObjectName("horizontalLayout_12") |
424 |
self.radioButton_12 = QtWidgets.QRadioButton(self.scrollAreaWidgetContents) |
|
425 |
self.radioButton_12.setObjectName("radioButton_12") |
|
426 |
self.horizontalLayout_12.addWidget(self.radioButton_12) |
|
427 |
self.label_32 = QtWidgets.QLabel(self.scrollAreaWidgetContents) |
|
428 |
self.label_32.setMinimumSize(QtCore.QSize(100, 0)) |
|
429 |
self.label_32.setMaximumSize(QtCore.QSize(100, 16777215)) |
|
430 |
self.label_32.setAlignment(QtCore.Qt.AlignCenter) |
|
431 |
self.label_32.setObjectName("label_32") |
|
432 |
self.horizontalLayout_12.addWidget(self.label_32) |
|
433 |
self.label_33 = QtWidgets.QLabel(self.scrollAreaWidgetContents) |
|
434 |
self.label_33.setMinimumSize(QtCore.QSize(100, 0)) |
|
435 |
self.label_33.setMaximumSize(QtCore.QSize(100, 16777215)) |
|
436 |
self.label_33.setAlignment(QtCore.Qt.AlignCenter) |
|
437 |
self.label_33.setObjectName("label_33") |
|
438 |
self.horizontalLayout_12.addWidget(self.label_33) |
|
448 |
self.radioButton_Atm = QtWidgets.QRadioButton(self.scrollAreaWidgetContents) |
|
449 |
self.radioButton_Atm.setObjectName("radioButton_Atm") |
|
450 |
self.horizontalLayout_12.addWidget(self.radioButton_Atm) |
|
451 |
self.label_Atm_Velocity = QtWidgets.QLabel(self.scrollAreaWidgetContents) |
|
452 |
self.label_Atm_Velocity.setMinimumSize(QtCore.QSize(100, 0)) |
|
453 |
self.label_Atm_Velocity.setMaximumSize(QtCore.QSize(100, 16777215)) |
|
454 |
self.label_Atm_Velocity.setText("") |
|
455 |
self.label_Atm_Velocity.setAlignment(QtCore.Qt.AlignCenter) |
|
456 |
self.label_Atm_Velocity.setObjectName("label_Atm_Velocity") |
|
457 |
self.horizontalLayout_12.addWidget(self.label_Atm_Velocity) |
|
458 |
self.label_Atm_Drop_Pressure = QtWidgets.QLabel(self.scrollAreaWidgetContents) |
|
459 |
self.label_Atm_Drop_Pressure.setMinimumSize(QtCore.QSize(100, 0)) |
|
460 |
self.label_Atm_Drop_Pressure.setMaximumSize(QtCore.QSize(100, 16777215)) |
|
461 |
self.label_Atm_Drop_Pressure.setText("") |
|
462 |
self.label_Atm_Drop_Pressure.setAlignment(QtCore.Qt.AlignCenter) |
|
463 |
self.label_Atm_Drop_Pressure.setObjectName("label_Atm_Drop_Pressure") |
|
464 |
self.horizontalLayout_12.addWidget(self.label_Atm_Drop_Pressure) |
|
439 | 465 |
self.gridLayout.addLayout(self.horizontalLayout_12, 14, 0, 1, 1) |
440 | 466 |
self.horizontalLayout_27.addLayout(self.gridLayout) |
441 | 467 |
self.scrollArea.setWidget(self.scrollAreaWidgetContents) |
... | ... | |
458 | 484 |
self.label.setText(_translate("Dialog", "Type")) |
459 | 485 |
self.label_3.setText(_translate("Dialog", "Velocity")) |
460 | 486 |
self.label_2.setText(_translate("Dialog", "△P")) |
461 |
self.radioButton_17.setText(_translate("Dialog", "Concentrated H2SO4")) |
|
462 |
self.label_43.setText(_translate("Dialog", "TextLabel")) |
|
463 |
self.label_44.setText(_translate("Dialog", "-")) |
|
464 |
self.radioButton_20.setText(_translate("Dialog", "CO2 Rich Amine Liquid")) |
|
465 |
self.label_49.setText(_translate("Dialog", "TextLabel")) |
|
466 |
self.label_50.setText(_translate("Dialog", "-")) |
|
467 |
self.radioButton_4.setText(_translate("Dialog", "RadioButton")) |
|
468 |
self.label_15.setText(_translate("Dialog", "TextLabel")) |
|
469 |
self.label_16.setText(_translate("Dialog", "TextLabel")) |
|
487 |
self.radioButton_High_Pressure_Steam.setText(_translate("Dialog", "High Pressure Steam")) |
|
488 |
self.radioButton_Branch.setText(_translate("Dialog", "Branch")) |
|
489 |
self.label_Branch_Drop_Pressure.setText(_translate("Dialog", "-")) |
|
490 |
self.radioButton_Pressure_3.setText(_translate("Dialog", "RadioButton")) |
|
491 |
self.label_Pressure_3_Velocity.setText(_translate("Dialog", "-")) |
|
470 | 492 |
self.label_21.setText(_translate("Dialog", "- Compressor Lines")) |
471 |
self.radioButton_11.setText(_translate("Dialog", "From Condenser")) |
|
472 |
self.label_30.setText(_translate("Dialog", "TextLabel")) |
|
473 |
self.label_31.setText(_translate("Dialog", "-")) |
|
474 |
self.radioButton_19.setText(_translate("Dialog", "Caustic Solution")) |
|
475 |
self.label_47.setText(_translate("Dialog", "TextLabel")) |
|
476 |
self.label_48.setText(_translate("Dialog", "-")) |
|
477 |
self.radioButton_9.setText(_translate("Dialog", "Gravity Flow Service")) |
|
478 |
self.label_26.setText(_translate("Dialog", "TextLabel")) |
|
479 |
self.label_27.setText(_translate("Dialog", "TextLabel")) |
|
480 |
self.radioButton_2.setText(_translate("Dialog", "Boiling Liquids")) |
|
481 |
self.label_10.setText(_translate("Dialog", "TextLabel")) |
|
482 |
self.label_11.setText(_translate("Dialog", "TextLabel")) |
|
493 |
self.radioButton_Pressure_5.setText(_translate("Dialog", "RadioButton")) |
|
494 |
self.radioButton_Header.setText(_translate("Dialog", "Header")) |
|
495 |
self.label_Header_Velocity.setText(_translate("Dialog", "-")) |
|
496 |
self.radioButton_Discharge.setText(_translate("Dialog", "Discharge")) |
|
497 |
self.radioButton_Pressure_1.setText(_translate("Dialog", "RadioButton")) |
|
498 |
self.label_Pressure_1_Velocity.setText(_translate("Dialog", "-")) |
|
483 | 499 |
self.label_7.setText(_translate("Dialog", "- Tower Overhead")) |
484 | 500 |
self.label_36.setText(_translate("Dialog", "- Stream Lines")) |
485 |
self.radioButton_13.setText(_translate("Dialog", "Refrigerant Lines")) |
|
486 |
self.label_34.setText(_translate("Dialog", "TextLabel")) |
|
487 |
self.label_35.setText(_translate("Dialog", "-")) |
|
488 |
self.radioButton_15.setText(_translate("Dialog", "Cooling Water (branch)")) |
|
489 |
self.label_39.setText(_translate("Dialog", "TextLabel")) |
|
490 |
self.label_40.setText(_translate("Dialog", "TextLabel")) |
|
491 |
self.radioButton_7.setText(_translate("Dialog", "Reboiler Trapout")) |
|
492 |
self.label_22.setText(_translate("Dialog", "TextLabel")) |
|
493 |
self.label_23.setText(_translate("Dialog", "TextLabel")) |
|
494 |
self.radioButton_3.setText(_translate("Dialog", "Non-boiling Liquids")) |
|
495 |
self.label_12.setText(_translate("Dialog", "TextLabel")) |
|
496 |
self.label_13.setText(_translate("Dialog", "TextLabel")) |
|
497 |
self.radioButton_8.setText(_translate("Dialog", "To Control Valve")) |
|
498 |
self.label_24.setText(_translate("Dialog", "-")) |
|
499 |
self.label_25.setText(_translate("Dialog", "TextLabel")) |
|
500 |
self.label_5.setText(_translate("Dialog", "TextLabel")) |
|
501 |
self.label_6.setText(_translate("Dialog", "TextLabel")) |
|
502 |
self.radioButton_14.setText(_translate("Dialog", "Cooling Water (header)")) |
|
503 |
self.label_37.setText(_translate("Dialog", "TextLabel")) |
|
504 |
self.label_38.setText(_translate("Dialog", "TextLabel")) |
|
505 |
self.radioButton_5.setText(_translate("Dialog", "RadioButton")) |
|
506 |
self.label_17.setText(_translate("Dialog", "TextLabel")) |
|
507 |
self.label_18.setText(_translate("Dialog", "TextLabel")) |
|
508 |
self.radioButton_6.setText(_translate("Dialog", "RadioButton")) |
|
509 |
self.label_19.setText(_translate("Dialog", "TextLabel")) |
|
510 |
self.label_20.setText(_translate("Dialog", "TextLabel")) |
|
511 |
self.radioButton_16.setText(_translate("Dialog", "Phenolic Water")) |
|
512 |
self.label_41.setText(_translate("Dialog", "TextLabel")) |
|
513 |
self.label_42.setText(_translate("Dialog", "-")) |
|
501 |
self.radioButton_Pressure_6.setText(_translate("Dialog", "RadioButton")) |
|
502 |
self.radioButton_Pressure_8.setText(_translate("Dialog", "RadioButton")) |
|
503 |
self.radioButton_Suction_Reciprocating.setText(_translate("Dialog", "Suction (Reciprocating Type)")) |
|
504 |
self.label_Suction_Reciprocating_Drop_Pressure.setText(_translate("Dialog", "-")) |
|
505 |
self.radioButton_Pressure_2.setText(_translate("Dialog", "RadioButton")) |
|
506 |
self.label_Pressure_2_Velocity.setText(_translate("Dialog", "-")) |
|
507 |
self.radioButton_Suction_Centrifugal.setText(_translate("Dialog", "Suction (Centrifugal Type)")) |
|
508 |
self.label_Suction_Centrifugal_Drop_Pressure.setText(_translate("Dialog", "-")) |
|
509 |
self.label_Velocity_Unit.setText(_translate("Dialog", "Unit")) |
|
510 |
self.label_Drop_Pressure_Unit.setText(_translate("Dialog", "Unit")) |
|
511 |
self.radioButton_Pressure_7.setText(_translate("Dialog", "RadioButton")) |
|
512 |
self.radioButton_Pressure_4.setText(_translate("Dialog", "RadioButton")) |
|
513 |
self.label_Pressure_4_Velocity.setText(_translate("Dialog", "-")) |
|
514 |
self.radioButton_Air_Service.setText(_translate("Dialog", "Air Service")) |
|
515 |
self.radioButton_Pressure_9.setText(_translate("Dialog", "RadioButton")) |
|
514 | 516 |
self.label_8.setText(_translate("Dialog", "- Flare")) |
515 |
self.radioButton_12.setText(_translate("Dialog", "Liquid Feed to Tower")) |
|
516 |
self.label_32.setText(_translate("Dialog", "TextLabel")) |
|
517 |
self.label_33.setText(_translate("Dialog", "-")) |
|
517 |
self.radioButton_Atm.setText(_translate("Dialog", "Atm.")) |
|
518 | 518 |
import Resource_rc |
HYTOS/HYTOS/UI/Line_Sizing_Vapor.ui | ||
---|---|---|
6 | 6 |
<rect> |
7 | 7 |
<x>0</x> |
8 | 8 |
<y>0</y> |
9 |
<width>440</width>
|
|
10 |
<height>398</height>
|
|
9 |
<width>450</width>
|
|
10 |
<height>440</height>
|
|
11 | 11 |
</rect> |
12 | 12 |
</property> |
13 | 13 |
<property name="font"> |
... | ... | |
33 | 33 |
<rect> |
34 | 34 |
<x>0</x> |
35 | 35 |
<y>0</y> |
36 |
<width>403</width>
|
|
36 |
<width>413</width>
|
|
37 | 37 |
<height>637</height> |
38 | 38 |
</rect> |
39 | 39 |
</property> |
... | ... | |
135 | 135 |
<item row="20" column="0"> |
136 | 136 |
<layout class="QHBoxLayout" name="horizontalLayout_5"> |
137 | 137 |
<item> |
138 |
<widget class="QRadioButton" name="radioButton_17">
|
|
138 |
<widget class="QRadioButton" name="radioButton_High_Pressure_Steam">
|
|
139 | 139 |
<property name="text"> |
140 |
<string>Concentrated H2SO4</string>
|
|
140 |
<string>High Pressure Steam</string>
|
|
141 | 141 |
</property> |
142 | 142 |
</widget> |
143 | 143 |
</item> |
144 | 144 |
<item> |
145 |
<widget class="QLabel" name="label_43">
|
|
145 |
<widget class="QLabel" name="label_High_Pressure_Steam_Velocity">
|
|
146 | 146 |
<property name="minimumSize"> |
147 | 147 |
<size> |
148 | 148 |
<width>100</width> |
... | ... | |
156 | 156 |
</size> |
157 | 157 |
</property> |
158 | 158 |
<property name="text"> |
159 |
<string>TextLabel</string>
|
|
159 |
<string/>
|
|
160 | 160 |
</property> |
161 | 161 |
<property name="alignment"> |
162 | 162 |
<set>Qt::AlignCenter</set> |
... | ... | |
164 | 164 |
</widget> |
165 | 165 |
</item> |
166 | 166 |
<item> |
167 |
<widget class="QLabel" name="label_44">
|
|
167 |
<widget class="QLabel" name="label_High_Pressure_Steam_Drop_Pressure">
|
|
168 | 168 |
<property name="minimumSize"> |
169 | 169 |
<size> |
170 | 170 |
<width>100</width> |
... | ... | |
178 | 178 |
</size> |
179 | 179 |
</property> |
180 | 180 |
<property name="text"> |
181 |
<string>-</string>
|
|
181 |
<string/>
|
|
182 | 182 |
</property> |
183 | 183 |
<property name="alignment"> |
184 | 184 |
<set>Qt::AlignCenter</set> |
... | ... | |
190 | 190 |
<item row="23" column="0"> |
191 | 191 |
<layout class="QHBoxLayout" name="horizontalLayout"> |
192 | 192 |
<item> |
193 |
<widget class="QRadioButton" name="radioButton_20">
|
|
193 |
<widget class="QRadioButton" name="radioButton_Branch">
|
|
194 | 194 |
<property name="text"> |
195 |
<string>CO2 Rich Amine Liquid</string>
|
|
195 |
<string>Branch</string>
|
|
196 | 196 |
</property> |
197 | 197 |
</widget> |
198 | 198 |
</item> |
199 | 199 |
<item> |
200 |
<widget class="QLabel" name="label_49">
|
|
200 |
<widget class="QLabel" name="label_Branch_Velocity">
|
|
201 | 201 |
<property name="minimumSize"> |
202 | 202 |
<size> |
203 | 203 |
<width>100</width> |
... | ... | |
211 | 211 |
</size> |
212 | 212 |
</property> |
213 | 213 |
<property name="text"> |
214 |
<string>TextLabel</string>
|
|
214 |
<string/>
|
|
215 | 215 |
</property> |
216 | 216 |
<property name="alignment"> |
217 | 217 |
<set>Qt::AlignCenter</set> |
... | ... | |
219 | 219 |
</widget> |
220 | 220 |
</item> |
221 | 221 |
<item> |
222 |
<widget class="QLabel" name="label_50">
|
|
222 |
<widget class="QLabel" name="label_Branch_Drop_Pressure">
|
|
223 | 223 |
<property name="minimumSize"> |
224 | 224 |
<size> |
225 | 225 |
<width>100</width> |
... | ... | |
245 | 245 |
<item row="5" column="0"> |
246 | 246 |
<layout class="QHBoxLayout" name="horizontalLayout_15"> |
247 | 247 |
<item> |
248 |
<widget class="QRadioButton" name="radioButton_4">
|
|
248 |
<widget class="QRadioButton" name="radioButton_Pressure_3">
|
|
249 | 249 |
<property name="text"> |
250 | 250 |
<string>RadioButton</string> |
251 | 251 |
</property> |
252 | 252 |
</widget> |
253 | 253 |
</item> |
254 | 254 |
<item> |
255 |
<widget class="QLabel" name="label_15">
|
|
255 |
<widget class="QLabel" name="label_Pressure_3_Velocity">
|
|
256 | 256 |
<property name="minimumSize"> |
257 | 257 |
<size> |
258 | 258 |
<width>100</width> |
... | ... | |
266 | 266 |
</size> |
267 | 267 |
</property> |
268 | 268 |
<property name="text"> |
269 |
<string>TextLabel</string>
|
|
269 |
<string>-</string>
|
|
270 | 270 |
</property> |
271 | 271 |
<property name="alignment"> |
272 | 272 |
<set>Qt::AlignCenter</set> |
... | ... | |
274 | 274 |
</widget> |
275 | 275 |
</item> |
276 | 276 |
<item> |
277 |
<widget class="QLabel" name="label_16">
|
|
277 |
<widget class="QLabel" name="label_Pressure_3_Drop_Pressure">
|
|
278 | 278 |
<property name="minimumSize"> |
279 | 279 |
<size> |
280 | 280 |
<width>100</width> |
... | ... | |
288 | 288 |
</size> |
289 | 289 |
</property> |
290 | 290 |
<property name="text"> |
291 |
<string>TextLabel</string>
|
|
291 |
<string/>
|
|
292 | 292 |
</property> |
293 | 293 |
<property name="alignment"> |
294 | 294 |
<set>Qt::AlignCenter</set> |
... | ... | |
317 | 317 |
<item row="13" column="0"> |
318 | 318 |
<layout class="QHBoxLayout" name="horizontalLayout_7"> |
319 | 319 |
<item> |
320 |
<widget class="QRadioButton" name="radioButton_11">
|
|
320 |
<widget class="QRadioButton" name="radioButton_Pressure_5">
|
|
321 | 321 |
<property name="text"> |
322 |
<string>From Condenser</string>
|
|
322 |
<string>RadioButton</string>
|
|
323 | 323 |
</property> |
324 | 324 |
</widget> |
325 | 325 |
</item> |
326 | 326 |
<item> |
327 |
<widget class="QLabel" name="label_30">
|
|
327 |
<widget class="QLabel" name="label_Pressure_5_Velocity">
|
|
328 | 328 |
<property name="minimumSize"> |
329 | 329 |
<size> |
330 | 330 |
<width>100</width> |
... | ... | |
338 | 338 |
</size> |
339 | 339 |
</property> |
340 | 340 |
<property name="text"> |
341 |
<string>TextLabel</string>
|
|
341 |
<string/>
|
|
342 | 342 |
</property> |
343 | 343 |
<property name="alignment"> |
344 | 344 |
<set>Qt::AlignCenter</set> |
... | ... | |
346 | 346 |
</widget> |
347 | 347 |
</item> |
348 | 348 |
<item> |
349 |
<widget class="QLabel" name="label_31">
|
|
349 |
<widget class="QLabel" name="label_Pressure_5_Drop_Pressure">
|
|
350 | 350 |
<property name="minimumSize"> |
351 | 351 |
<size> |
352 | 352 |
<width>100</width> |
... | ... | |
360 | 360 |
</size> |
361 | 361 |
</property> |
362 | 362 |
<property name="text"> |
363 |
<string>-</string>
|
|
363 |
<string/>
|
|
364 | 364 |
</property> |
365 | 365 |
<property name="alignment"> |
366 | 366 |
<set>Qt::AlignCenter</set> |
... | ... | |
372 | 372 |
<item row="22" column="0"> |
373 | 373 |
<layout class="QHBoxLayout" name="horizontalLayout_3"> |
374 | 374 |
<item> |
375 |
<widget class="QRadioButton" name="radioButton_19">
|
|
375 |
<widget class="QRadioButton" name="radioButton_Header">
|
|
376 | 376 |
<property name="text"> |
377 |
<string>Caustic Solution</string>
|
|
377 |
<string>Header</string>
|
|
378 | 378 |
</property> |
379 | 379 |
</widget> |
380 | 380 |
</item> |
381 | 381 |
<item> |
382 |
<widget class="QLabel" name="label_47">
|
|
382 |
<widget class="QLabel" name="label_Header_Velocity">
|
|
383 | 383 |
<property name="minimumSize"> |
384 | 384 |
<size> |
385 | 385 |
<width>100</width> |
... | ... | |
393 | 393 |
</size> |
394 | 394 |
</property> |
395 | 395 |
<property name="text"> |
396 |
<string>TextLabel</string>
|
|
396 |
<string>-</string>
|
|
397 | 397 |
</property> |
398 | 398 |
<property name="alignment"> |
399 | 399 |
<set>Qt::AlignCenter</set> |
... | ... | |
401 | 401 |
</widget> |
402 | 402 |
</item> |
403 | 403 |
<item> |
404 |
<widget class="QLabel" name="label_48">
|
|
404 |
<widget class="QLabel" name="label_Header_Drop_Pressure">
|
|
405 | 405 |
<property name="minimumSize"> |
406 | 406 |
<size> |
407 | 407 |
<width>100</width> |
... | ... | |
415 | 415 |
</size> |
416 | 416 |
</property> |
417 | 417 |
<property name="text"> |
418 |
<string>-</string>
|
|
418 |
<string/>
|
|
419 | 419 |
</property> |
420 | 420 |
<property name="alignment"> |
421 | 421 |
<set>Qt::AlignCenter</set> |
... | ... | |
427 | 427 |
<item row="11" column="0"> |
428 | 428 |
<layout class="QHBoxLayout" name="horizontalLayout_20"> |
429 | 429 |
<item> |
430 |
<widget class="QRadioButton" name="radioButton_9">
|
|
430 |
<widget class="QRadioButton" name="radioButton_Discharge">
|
|
431 | 431 |
<property name="text"> |
432 |
<string>Gravity Flow Service</string>
|
|
432 |
<string>Discharge</string>
|
|
433 | 433 |
</property> |
434 | 434 |
</widget> |
435 | 435 |
</item> |
436 | 436 |
<item> |
437 |
<widget class="QLabel" name="label_26">
|
|
437 |
<widget class="QLabel" name="label_Discharge_Velocity">
|
|
438 | 438 |
<property name="minimumSize"> |
439 | 439 |
<size> |
440 | 440 |
<width>100</width> |
... | ... | |
448 | 448 |
</size> |
449 | 449 |
</property> |
450 | 450 |
<property name="text"> |
451 |
<string>TextLabel</string>
|
|
451 |
<string/>
|
|
452 | 452 |
</property> |
453 | 453 |
<property name="alignment"> |
454 | 454 |
<set>Qt::AlignCenter</set> |
... | ... | |
456 | 456 |
</widget> |
457 | 457 |
</item> |
458 | 458 |
<item> |
459 |
<widget class="QLabel" name="label_27">
|
|
459 |
<widget class="QLabel" name="label_Discharge_Drop_Pressure">
|
|
460 | 460 |
<property name="minimumSize"> |
461 | 461 |
<size> |
462 | 462 |
<width>100</width> |
... | ... | |
470 | 470 |
</size> |
471 | 471 |
</property> |
472 | 472 |
<property name="text"> |
473 |
<string>TextLabel</string>
|
|
473 |
<string/>
|
|
474 | 474 |
</property> |
475 | 475 |
<property name="alignment"> |
476 | 476 |
<set>Qt::AlignCenter</set> |
... | ... | |
482 | 482 |
<item row="3" column="0"> |
483 | 483 |
<layout class="QHBoxLayout" name="horizontalLayout_21"> |
484 | 484 |
<item> |
485 |
<widget class="QRadioButton" name="radioButton_2">
|
|
485 |
<widget class="QRadioButton" name="radioButton_Pressure_1">
|
|
486 | 486 |
<property name="text"> |
487 |
<string>Boiling Liquids</string>
|
|
487 |
<string>RadioButton</string>
|
|
488 | 488 |
</property> |
489 | 489 |
</widget> |
490 | 490 |
</item> |
491 | 491 |
<item> |
492 |
<widget class="QLabel" name="label_10">
|
|
492 |
<widget class="QLabel" name="label_Pressure_1_Velocity">
|
|
493 | 493 |
<property name="minimumSize"> |
494 | 494 |
<size> |
495 | 495 |
<width>100</width> |
... | ... | |
503 | 503 |
</size> |
504 | 504 |
</property> |
505 | 505 |
<property name="text"> |
506 |
<string>TextLabel</string>
|
|
506 |
<string>-</string>
|
|
507 | 507 |
</property> |
508 | 508 |
<property name="alignment"> |
509 | 509 |
<set>Qt::AlignCenter</set> |
... | ... | |
511 | 511 |
</widget> |
512 | 512 |
</item> |
513 | 513 |
<item> |
514 |
<widget class="QLabel" name="label_11">
|
|
514 |
<widget class="QLabel" name="label_Pressure_1_Drop_Pressure">
|
|
515 | 515 |
<property name="minimumSize"> |
516 | 516 |
<size> |
517 | 517 |
<width>100</width> |
... | ... | |
525 | 525 |
</size> |
526 | 526 |
</property> |
527 | 527 |
<property name="text"> |
528 |
<string>TextLabel</string>
|
|
528 |
<string/>
|
|
529 | 529 |
</property> |
530 | 530 |
<property name="alignment"> |
531 | 531 |
<set>Qt::AlignCenter</set> |
내보내기 Unified diff