프로젝트

일반

사용자정보

개정판 480ab0da

ID480ab0dadd9cedb7dc0296f158a03695ec7a2f73
상위 ee8e0b75
하위 97d96c48

백흠경이(가) 약 4년 전에 추가함

issue# 1048: Velocity, Pressure Drop이 임계값보다 높을 경우 화면에 표시

Change-Id: I7cd66e3191dc31ed42db0116294549e9d0609df5

차이점 보기:

HYTOS/HYTOS/Shapes/EngineeringStreamlineItem.py
173 173
            if self.data.phase_type == 'Mixed':
174 174
                res = None if self.mixed_pressure_variation else [[self, 'need to check pressure variation']]
175 175
            elif self.data.phase_type == 'Liquid':
176
                res = None if self.data.flowrate_volume and self.data.density and self.data.viscosity else \
177
                    [[self, 'need to check process data']]
176
                res = None if (self.data.flowrate_volume or self.data.flowrate_mass) and self.data.density and \
177
                              self.data.viscosity else [[self, 'need to check process data']]
178 178

  
179 179
                if not self.data.roughness:
180 180
                    if res:
......
192 192
            else:
193 193
                res = [[self, 'please check phase type']]
194 194

  
195

  
196 195
        return res
197 196

  
198 197
    def build_connectors(self, connected, pointsUids=None):
HYTOS/HYTOS/readme.html
1
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
2
<html>
3
<head>
4
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
5
<STYLE type="text/css">
6
  BODY, TABLE, TD, TH, P {
7
    font-family: Calibri, Verdana, Helvetica, sans serif;
8
    font-size: 12px;
9
    color: black;
10
  }
11
  .filesChanged {
12
    width: 2%;
13
    padding-left: 10px;
14
  }
15
   .td-title {
16
    color: white;
17
    font-size: 120%;
18
    font-weight: bold;
19
    padding-left: 5px;
20
    text-transform: uppercase;
21
  }
22
 </STYLE>
23
</head>
24
<BODY>
25
	<table width=100% style="border:1px dotted">
26
		<tr bgcolor='#27AE60' >
27
			<td style="padding-left: 5px; font-weight: bold;" colspan=2>
28
				<font color="white" size="5"> HYTOS 3.0 </font>
29
			</td>
30
		</tr>
31
	</table>
32
	<br/>
33
  
34
  <!-- CHANGE SET -->
35
	<table width=100% style="border:1px dotted">
36
		<tr bgcolor='#27AE60' >
37
			<td style="padding-left: 5px; font-weight: bold;" colspan="2"><font color="white" size="3">CHANGES</font></td>
38
		</tr>
39

  
40
		<tr><td style="tr-title" colspan="2" bgcolor=lightgray><B>3.0.6.0 [2019.07.17]</B></td></tr>
41
		<tr><td class="filesChanged">1.</td><td>계산 결과 Output 데이타를 저장하도록 수정</td></tr>
42
		<tr><td class="filesChanged">2.</td><td>readme.html 포함</td></tr>
43

  
44
		<tr><td style="tr-title" colspan="2" bgcolor=lightgray><B>3.0.5.0 [2020.08.20]</B></td></tr>
45
		<tr><td class="filesChanged">1.</td><td>Control Valve DP 계산 수정</td></tr>
46
		<tr><td class="filesChanged">2.</td><td>계산 오류시 X 표시는 하지 않도록 수정</td></tr>
47
		<tr><td class="filesChanged">3.</td><td>Control Valve 데이터가 없을 시 발생 오류 수정</td></tr>
48
		<tr><td class="filesChanged">4.</td><td>열교환기 오류(Loop 생성 시 열교환기를 Line Splitter처럼 처리) 수정</td></tr>    
49
	</table>
50
</BODY>
51
</html>
readme.html
37 37
			<td style="padding-left: 5px; font-weight: bold;" colspan="2"><font color="white" size="3">CHANGES</font></td>
38 38
		</tr>
39 39
		
40
		<tr><td style="tr-title" colspan="2" bgcolor=lightgray><B>3.1.7.0 [2021.03.01]</B></td></tr>
41
		<tr><td class="filesChanged">1.</td><td>Velocity, Pressure Drop이 임계값보다 높을 경우 화면에 표시</td></tr>		
42
		
40 43
		<tr><td style="tr-title" colspan="2" bgcolor=lightgray><B>3.1.6.0 [2021.02.24]</B></td></tr>
41 44
		<tr><td class="filesChanged">1.</td><td>Compressor 결과창 오류 수정</td></tr>		
42 45
		<tr><td class="filesChanged">2.</td><td>Two phase Calculation 계산식 변경</td></tr>		
version.rc
7 7
# filevers and prodvers should be always a tuple with four items: (1, 2, 3, 4)
8 8
# Set not needed items to zero 0.
9 9
# Local Build $BUILD_NUMBER=0
10
filevers=(3,1,6,0),
11
prodvers=(3,1,6,0),
10
filevers=(3,1,7,0),
11
prodvers=(3,1,7,0),
12 12
# Contains a bitmask that specifies the valid bits 'flags'r
13 13
mask=0x3f,
14 14
# Contains a bitmask that specifies the Boolean attributes of the file.
......
32 32
    u'040904B0',
33 33
    [StringStruct(u'CompanyName', u'SECL'),
34 34
    StringStruct(u'FileDescription', u'Hydraulic Calculator'),
35
    StringStruct(u'FileVersion', u'3.1.6.0'),
35
    StringStruct(u'FileVersion', u'3.1.7.0'),
36 36
    StringStruct(u'InternalName', u'HYTOS'),
37 37
    StringStruct(u'LegalCopyright', u'Copyright(c) SECL'),
38 38
    StringStruct(u'OriginalFilename', u'HYTOS.exe'),
39 39
    StringStruct(u'ProductName', u'HYTOS'),
40
    StringStruct(u'ProductVersion', u'3.1.6.0')])
40
    StringStruct(u'ProductVersion', u'3.1.7.0')])
41 41
  ]), 
42 42
VarFileInfo([VarStruct(u'Translation', [1033, 1200])])
43 43
  ]

내보내기 Unified diff

클립보드 이미지 추가 (최대 크기: 500 MB)