-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathfe_ChEDL.py
276 lines (274 loc) · 11.8 KB
/
fe_ChEDL.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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
# -*- coding: utf-8 -*-
#
# fe_ChEDL.py
#
# Copyright 2018 (oddtopus)
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
# MA 02110-1301, USA.
#
#(c) 2018 R. T. LGPL3
__title__="Front end for ChEDL"
__author__="oddtopus"
__url__="github.com/oddtopus"
__license__="LGPL 3"
__doc__='''
Frontend in FreeCAD of the python libraries "ChEDL":
Caleb Bell (2016). fluids: Fluid dynamics component of Chemical Engineering Design Library (ChEDL)
https://github.com/CalebBell/fluids.
Caleb Bell (2016). thermo: Chemical properties component of Chemical Engineering Design Library (ChEDL)
https://github.com/CalebBell/thermo.
'''
import FreeCAD,FreeCADGui, csv
pq=FreeCAD.Units.parseQuantity
from PySide import QtCore, QtGui
from os.path import join, dirname, abspath
from PySide.QtCore import *
from PySide.QtGui import *
from math import pi, log, radians, sin, sqrt, atan, degrees
isFluidsAvailable=False
try:
from fluids import friction,fittings, Reynolds, K_from_f, dP_from_K
from thermo import Chemical, Mixture, identifiers
FreeCAD.Console.PrintMessage('Using "fluids" and "thermo" libraries from ChEDL. Caleb Bell (2016): https://github.com/CalebBell\n')
isFluidsAvailable=True
except:
# QMessageBox.warning(None,'Missing python module','''
# Some features are disabled.
# It's suggested to install "fluids" and "thermo" libraries from ChEDL:\n\n
# \tpip install thermo, fluids\n\n
# Caleb Bell (2016). fluids: Fluid dynamics component of Chemical Engineering Design Library (ChEDL)\n
# https://github.com/CalebBell/fluids.\n
# Caleb Bell (2016). thermo: Chemical properties component of Chemical Engineering Design Library (ChEDL)\n
# https://github.com/CalebBell/thermo.''')
FreeCAD.Console.PrintError('ChEDL libraries not found.\nIt is suggested to install "fluids" and "thermo" from https://github.com/CalebBell\n')
class dpCalcDialog:
def __init__(self):
dialogPath=join(dirname(abspath(__file__)),"dialogs","dp.ui")
self.form=FreeCADGui.PySideUic.loadUi(dialogPath)
self.form.editDensity.textChanged.connect(self.setRho)
self.form.editViscosity.textChanged.connect(self.setMu)
self.form.editFlow.setValidator(QDoubleValidator())
self.form.editRough.setValidator(QDoubleValidator())
self.form.editPressure.setValidator(QDoubleValidator())
self.form.editTemperature.setValidator(QDoubleValidator())
self.form.editDensity.setValidator(QDoubleValidator())
self.form.editViscosity.setValidator(QDoubleValidator())
self.form.radioLiquid.released.connect(self.setLiquid)
self.form.radioGas.released.connect(self.setGas)
self.form.butExport.clicked.connect(self.export)
self.form.comboWhat.currentIndexChanged.connect(lambda: self.form.labResult.setText('---'))
f=open(join(dirname(abspath(__file__)),"tables","roughness.csv"),'r')
reader=csv.DictReader(f,delimiter=';')
self.materials=[m for m in reader]
f.close()
self.form.comboMat.currentIndexChanged.connect(self.changeMat)
for row in self.materials:
self.form.comboMat.addItem(row['Material'])
self.isLiquid=True
if isFluidsAvailable:
self.form.comboFluid.currentIndexChanged.connect(self.checkFluid)
fluids=['water','air','methane','ethane','propane','butane','CCCCCC','CCCCCCCC','vinegar','acetone','HF','HCl']
self.form.comboFluid.addItems(fluids)
self.form.editTemperature.textChanged.connect(self.checkFluid)
self.form.editPressure.textChanged.connect(self.checkFluid)
self.form.radioLiquid.released.connect(self.setLiquid)
self.form.radioGas.released.connect(self.setGas)
else:
self.form.radioLiquid.setEnabled(False)
self.form.radioGas.setEnabled(False)
self.form.editPressure.setEnabled(False)
self.form.editTemperature.setEnabled(False)
self.form.editDensity.setEnabled(True)
self.form.editViscosity.setEnabled(True)
self.form.editDensity.setText('1000')
self.form.editViscosity.setText('1')
self.form.labName.setText('*** CUSTOM FLUID ***')
self.form.comboFluid.addItems(['<custom fluid>'])
self .form.comboWhat.addItems([o.Label for o in FreeCAD.ActiveDocument.Objects if hasattr(o,'PType') and (o.PType=='PypeBranch' or o.PType=='PypeLine')])
self.checkFluid()
def changeMat(self):
for m in self.materials:
if m['Material']==self.form.comboMat.currentText():
self.form.editRough.setText(m['e_abs'])
def accept(self):
Dp=Ltot=nc=0
elements=list()
Q=float(self.form.editFlow.text())/3600
if not self.isLiquid:
Q=Q/self.Rho
if self.form.comboWhat.currentText()=='<on selection>':
elements = FreeCADGui.Selection.getSelection()
else:
o=FreeCAD.ActiveDocument.getObjectsByLabel(self.form.comboWhat.currentText())[0]
if hasattr(o,'PType') and o.PType=='PypeBranch':
elements=[FreeCAD.ActiveDocument.getObject(name) for name in o.Tubes+o.Curves]
elif hasattr(o,'PType') and o.PType=='PypeLine':
group=FreeCAD.ActiveDocument.getObjectsByLabel(o.Label+'_pieces')[0]
elements=group.OutList
self.form.editResults.clear()
for o in elements:
loss=0
if hasattr(o,'PType') and o.PType in ['Pipe','Elbow','Reduct']:
if o.PType in ['Pipe','Elbow']:
ID=float(o.ID)/1000
else:
ID=float(o.OD-2*o.thk)/1000
e=float(self.form.editRough.text())*1e-6/ID
v=Q/((ID)**2*pi/4)
if isFluidsAvailable:
Re=Reynolds(V=v,D=ID,rho=self.Rho, mu=self.Mu)
f=friction.friction_factor(Re, eD=e) # Darcy, =4xFanning
else:
Re=v*ID*self.Rho/self.Mu
if Re<=2300: f=64/Re
else: f=(-1.8*log((e/3.7)**1.11+6.9/Re,10))**-2
if o.PType=='Pipe':
L=float(o.Height)/1000
Ltot+=L
if isFluidsAvailable:
K=K_from_f(fd=f, L=L, D=ID)
loss=dP_from_K(K,rho=self.Rho,V=v)
else:
loss=v**2/2*self.Rho*f*L/ID
self.form.editResults.append('%s\t%.1f mm\t%.1f m/s\t%.5f bar'%(o.Label,ID*1000,v,loss/1e5))
elif o.PType=='Elbow':
ang=float(o.BendAngle)
R=float(o.BendRadius)/1000
nc+=1
if isFluidsAvailable:
K=fittings.bend_rounded(ID,ang,f,R)
loss=dP_from_K(K,rho=self.Rho,V=v)
else:
ang=radians(ang)
K=f*ang*R/ID+(0.10+2.4*f)*sin(ang/2)+(6.6*f*(sqrt(sin(ang/2))+sin(ang/2)))/((R/ID)**(4*ang/pi)) # Rennels
loss=self.Rho*K*v**2/2
self.form.editResults.append('%s\t%.1f mm\t%.1f m/s\t%.5f bar'%(o.Label,ID*1000,v,loss/1e5))
elif o.PType=='Reduct':
ID1=float(o.OD-o.thk*2)
ID2=float(o.OD2-o.thk2*2)
teta=2*atan((ID1-ID2)/2.0/float(o.Height))
if isFluidsAvailable:
K=fittings.contraction_conical(ID1,ID2,angle=degrees(teta),Re=Re)
loss=dP_from_K(K,rho=self.Rho,V=v)
else:
beta=ID2/ID1
if teta<pi/4:
K=0.8*sin(teta/2)*(1-beta**2)
else:
K=0.5*sqrt(sin(teta/2))*(1-beta**2)
loss=self.Rho*K*v**2/2
self.form.editResults.append('%s\t%.1f mm\t%.1f m/s\t%.5f bar'%(o.Label,ID*1000,v,loss/1e5))
elif hasattr(o,'Kv') and o.Kv>0:
if self.isLiquid:
loss=(Q*3600/o.Kv)**2*100000*self.Rho/1000
elif self.form.comboFluid.currentText()=='water' and not self.isLiquid:
pass # TODO formula for steam
else:
pass # TODO formula for gases
if hasattr(o,'ID'):
ID = float(o.ID)/1000
v=Q/(ID**2*pi/4)
else:
v = 0
ID = 0
self.form.editResults.append('%s\t%.1f mm\t%.1f m/s\t%.5f bar'%(o.Label,ID*1000,v,loss/1e5))
Dp+=loss
if Dp>200: result=' = %.3f bar'%(Dp/100000)
else: result=' = %.2e bar'%(Dp/100000)
self.form.labResult.setText(result)
self.form.labLength.setText('Total length = %.3f m' %Ltot)
self.form.labCurves.setText('Nr. of curves = %i' %nc)
def checkFluid(self):
T=float(self.form.editTemperature.text())+273.16
P=float(self.form.editPressure.text())*1e5
self.isMixture=True
if self.form.comboFluid.currentText()!='<custom fluid>' and isFluidsAvailable:
self.form.editDensity.setEnabled(False)
self.form.editViscosity.setEnabled(False)
try:
self.fluid=Chemical(self.form.comboFluid.currentText(),T=T,P=P)
self.isMixture=False
except:
self.fluid=Mixture(self.form.comboFluid.currentText(),T=T,P=P)
if self.fluid.rhol and self.fluid.mul:
self.setLiquid()
self.form.radioLiquid.setChecked(True)
elif self.fluid.rhog and self.fluid.mug:
self.setGas()
self.form.radioGas.setChecked(True)
else:
self.form.labState.setText('*** SOLID (no flow) ***')
self.form.editFlow.setText('0')
if not self.isMixture:
CAS=identifiers.CAS_from_any(self.form.comboFluid.currentText())
IUPAC=identifiers.IUPAC_name(CAS)
formula=identifiers.formula(CAS)
self.form.labName.setText('CAS = %s\nIUPAC = %s\nformula = %s'%(CAS,IUPAC,formula))
else:
self.form.labName.setText(self.form.comboFluid.currentText()+'\n(mixture)')
else:
self.fluid=None
self.form.labName.setText('*** CUSTOM FLUID ***')
self.form.editDensity.setEnabled(True)
self.form.editViscosity.setEnabled(True)
self.form.labResult.setText('---')
def setLiquid(self):
if self.fluid:
try:
self.Rho=self.fluid.rhol
self.Mu=self.fluid.mul
self.form.editDensity.setText('%.4f' %self.Rho)
self.form.editViscosity.setText('%.4f' %(self.Mu*1000000/self.Rho)) #conversion between kinematic and dynamic!!
except:
QMessageBox.warning(None,'No data found','It seems the fluid has not\na liquid state.')
self.form.radioGas.setChecked(True)
return
self.isLiquid=True
self.form.labState.setText('*** LIQUID ***')
self.form.labQ.setText('Flow (m3/h)')
self.form.labResult.setText('---')
def setGas(self):
if self.fluid:
try:
self.Rho=self.fluid.rhog
self.Mu=self.fluid.mug
self.form.editDensity.setText('%.4f' %self.Rho)
self.form.editViscosity.setText('%.4f' %(self.Mu*1000000/self.Rho)) #conversion between kinematic and dynamic!!
except:
QMessageBox.warning(None,'No data found','It seems the fluid has not\na gas state.')
self.form.radioLiquid.setChecked(True)
return
self.isLiquid=False
self.form.labState.setText('*** GAS/VAPOUR ***')
self.form.labQ.setText('Flow (kg/h)')
self.form.labResult.setText('---')
def setRho(self):
self.Rho=float(self.form.editDensity.text())
def setMu(self):
self.Mu=float(self.form.editViscosity.text())*self.Rho/1000000 # conversion between kinematic and dynamic!!
def export(self):
rows=list()
fields=['Item','ID (mm)','v (m/s)','Dp (bar)']
for row in self.form.editResults.toPlainText().split('\n'):
record=[cell.rstrip(' mm bar m/s') for cell in row.split('\t')]
rows.append(dict(zip(fields,record)))
f=QtGui.QFileDialog.getSaveFileName()[0]
if f:
dpFile=open(abspath(f),'w')
w=csv.DictWriter(dpFile,fields,restval='-',delimiter=';')
w.writeheader()
w.writerows(rows)
dpFile.close()