-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathairPlaneWing.py
280 lines (228 loc) · 10.4 KB
/
airPlaneWing.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
277
278
279
280
#################################################
#
# Airfoil creation - Aircraft
#
# Copyright (c) F. Nivoix - 2019 - V0.1
#
# For FreeCAD Versions = or > 0.17 Revision xxxx
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License (LGPL)
# as published by the Free Software Foundation; either version 2 of
# the License, or (at your option) any later version.
# for detail see the LICENCE text file.
#
# 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 Library General Public License for more details.
#
################################################
__title__="FreeCAD Airplane Design"
__author__ = "F. Nivoix"
__url__ = "https://fredsfactory.fr"
import FreeCAD, FreeCADGui, Part, os
from FreeCAD import Units
from PySide import QtCore
from PySide import QtGui
#from airPlaneRib import WingRib, ViewProviderWingRib
#from airPlaneWingUI import WingEditorPanel
#from FreeCAD import Vector
#import Part, Draft
#from importlib import reload
#import math
#from airPlaneWPanel import WingPanel
smWB_icons_path = os.path.join( os.path.dirname(__file__), 'resources', 'icons')
# Qt translation handling
def translate(context, text, disambig=None):
return QtCore.QCoreApplication.translate(context, text, disambig)
#################################################
# This module provides tools to build a
# wing panel
#################################################
if open.__module__ in ['__builtin__','io']:
pythonopen = open
_wingRibProfilDir=FreeCAD.getUserAppDataDir()+ 'Mod/AirPlaneDesign/wingribprofil'
class Wing:
def __init__(self, obj, _wPanels):
# _parent,_NberOfPanel,_panelInput,_rootChord,_tipChord,_panelLength,_tipTwist,_dihedral):
'''Add some custom properties to our box feature'''
self.obj = obj
obj.Proxy = self
obj.addProperty("App::PropertyLinkList","WingPanels","Wing",QtCore.QT_TRANSLATE_NOOP("App::Property","panel")).WingPanels=_wPanels
obj.addProperty("App::PropertyLinkList","WingEdges","Wing",QtCore.QT_TRANSLATE_NOOP("App::Property","WingEdges"))#.leadInEdges
#obj.addProperty("App::PropertyLink","Path","Wing",QtCore.QT_TRANSLATE_NOOP("App::Property","Path"))
#obj.addProperty("App::PropertyLinkList","envelope","Wing",QtCore.QT_TRANSLATE_NOOP("App::Property","panel"))#.leadInEdges
#obj.addProperty("App::PropertyLink","trailingEdge","Wing",QtCore.QT_TRANSLATE_NOOP("App::Property","panel"))#.trailingEdge=
obj.addProperty("App::PropertyLength","WingLength","Wing",QtCore.QT_TRANSLATE_NOOP("App::Property","Panel Length"))
obj.addProperty("App::PropertyLength","WingRootChoord","Wing",QtCore.QT_TRANSLATE_NOOP("App::Property","Wing Tip Choord"))
obj.addProperty("App::PropertyLength","WingTipChoord","Wing",QtCore.QT_TRANSLATE_NOOP("App::Property","Wing Tip Choord"))
obj.addProperty("App::PropertyBool","Solid","Wing",QtCore.QT_TRANSLATE_NOOP("App::Property","Solid")).Solid=True #
obj.addProperty("App::PropertyBool","Surface","Wing",QtCore.QT_TRANSLATE_NOOP("App::Property","Surface")).Surface=False
obj.addProperty("App::PropertyBool","Structure","Wing",QtCore.QT_TRANSLATE_NOOP("App::Property","Surface")).Structure=False
def getWingLength(self, obj):
wlength=Units.Quantity(0.0,1) # create a quantity Length 0.0 mm
for panel in obj.WingPanels :
wlength=wlength+(panel.PanelLength)
obj.WingLength= wlength
def getRootChoord(self, obj):
# return the Root Choord of the Wing
print(obj.WingPanels[0].RootRib)
obj.WingRootChoord=obj.WingPanels[0].RootRib
def getTipChoord(self, obj):
# return the Tip Choord of the Wing
for panel in obj.WingPanels :
tipRib=panel.TipRib
obj.WingTipChoord=tipRib
def wingshape(self, obj) :
FreeCAD.Console.PrintMessage("Wing Panel: " + str(0) + "\n")
surfaces=[]
wpanelShape=[]
a=[]
for wpanel in obj.WingPanels :
FreeCAD.Console.PrintMessage("Wing Panel: " + str(wpanel.Label) + "\n")
for rib in wpanel.Ribs :
a.append(rib.Shape)
loft=Part.makeLoft(a)
wpanelShape.append(loft)
a=[]
a.append(rib.Shape)
surfaces+=loft.Faces
obj.Shape=surfaces[0]
def onChanged(self, obj, prop):
'''Do something when a property has changed'''
FreeCAD.Console.PrintMessage("Change property: " + str(prop) + "\n")
def execute(self, obj):
'''Do something when doing a recomputation, this method is mandatory'''
FreeCAD.Console.PrintMessage("Recompute Python Wing feature\n")
#panelShape=[]
if len(obj.WingPanels)>1 :
print("wingpanel execute")
#self.wingshape(obj)
#for panel in obj.WingPanels :
# panelShape.append(panel.Shape)
#if obj.WingPanels:
# obj.Shape=Part.makeCompound(panelShape)
else :
#obj.Shape=obj.WingPanels[0].Shape
print("wing execute multi-panels")
#self.getWingLength(obj)
class WingTaskPanel:
'''A TaskPanel for the Rib'''
def __init__(self,vobj):
self.obj = vobj
path_to_ui = FreeCAD.getUserAppDataDir()+ 'Mod/AirPlaneDesign/resources/airPlaneWpanelTask.ui'
self.form = FreeCADGui.PySideUic.loadUi(path_to_ui)
self.update(vobj)
def isAllowedAlterSelection(self):
return True
def isAllowedAlterView(self):
return True
def getStandardButtons(self):
return int(QtGui.QDialogButtonBox.Ok)
def update(self,vobj):
'fills the dialog with wing properties'
self.form.name.setText(vobj.Object.Label)
self.form.wingLength.setValue(vobj.Object.WingLength)
self.form.wingRootChoord.setValue(vobj.Object.WingRootChoord)
initPanelTable=[]
i=0
for wpanel in vobj.Object.WingPanels :
initPanelTable.append([wpanel.Base.Label,wpanel.Base.RibProfil,wpanel.PanelLength,0,0])
i+=1
#initPanelTable = [
# ["1","Eppler207",_wingRibProfilDir+u"/naca/naca2412.dat","250","222","122","0","0","0.0","-54.","0","0","22"],
# ["2","Eppler207",_wingRibProfilDir+u"/naca/naca2412.dat","222","196","35.","0","0","-54","-54","0","54","0"],
## ["4","Eppler205",_wingRibProfilDir+u"/naca/naca2412.dat","146","100","10","0","0.","12","12","12","0","0"],
# ["5","Eppler205",_wingRibProfilDir+u"/naca/naca2412.dat","100","100","10","0","0.","12","12","0","0","0"]
# ]
#self.form.PanelTable.setRowCount(0)
for row_number,row_data in enumerate(initPanelTable):
self.form.trapezeList.insertRow(row_number)
for col_number, data in enumerate(row_data):
self.form.trapezeList.setItem(row_number,col_number,QtGui.QTableWidgetItem(str(data)))#,QtGui.QTableWidgetItem(str(data)))
def addLine(self):
initPanelTable = [
["-","-","","","","","","",""],]
for row_number,row_data in enumerate(initPanelTable):
self.form.trapezeList.insertRow(row_number)
for col_number, data in enumerate(row_data):
self.form.trapezeList.setItem(row_number,col_number,QtGui.QTableWidgetItem(str(data)))#,QtGui.QTableWidgetItem(str(data)))
def delLine(self):
self.form.trapezeList.removeRow(self.form.PanelTable.currentRow())
def accept(self):
'''Update properties of wing'''
print("accept")
FreeCAD.ActiveDocument.recompute()
FreeCADGui.ActiveDocument.resetEdit()
return True
def retranslateUi(self, TaskPanel):
#TaskPanel.setWindowTitle(QtGui.QApplication.translate("draft", "Faces", None))
self.addButton.setText(QtGui.QApplication.translate("draft", "Update", None))
self.form.tpzControllerAdd.clicked.connect(self.addLine)
self.form.tpzControllerDelete.clicked.connect(self.delLine)
class ViewProviderWing:
def __init__(self, vobj):
vobj.Proxy = self
self.Object = vobj.Object
def getIcon(self):
return os.path.join(smWB_icons_path,'wing2.xpm')
def attach(self, vobj):
self.Object = vobj.Object
self.onChanged(vobj,"Base")
def claimChildren(self):
return self.Object.WingPanels
def onDelete(self, feature, subelements):
return True
def onChanged(self, fp, prop):
pass
def __getstate__(self):
return None
def __setstate__(self, state):
return None
def dumps(self):
return None
def loads(self, state):
return None
def setEdit(self,vobj,mode):
taskd = WingTaskPanel(vobj)
FreeCADGui.Control.showDialog(taskd)
return True
class CommandWing:
"the Wing command definition"
def GetResources(self):
iconpath = os.path.join(smWB_icons_path,'wing2.png')
return {'Pixmap': iconpath, 'MenuText': QtCore.QT_TRANSLATE_NOOP("Create_a_wing","Create/Add a wing to plane, select a plane and clic")}
def IsActive(self):
return not FreeCAD.ActiveDocument is None
def Activated(self):
print("-----------------Wing-----------------")
selection = FreeCADGui.Selection.getSelectionEx()
if selection :
base = FreeCAD.ActiveDocument.getObject((selection[0].ObjectName))
_wPanels=[]
obj=FreeCAD.ActiveDocument.addObject("Part::FeaturePython","Wing")
#obj=FreeCAD.ActiveDocument.addObject("App::DocumentObjectGroupPython","Wing")
Wing(obj,_wPanels)
ViewProviderWing(obj.ViewObject)
b=[]
if selection : #selection==None :
if not base.Wings :
base.Wings=obj
else :
b=base.Wings
b.append(obj)
base.Wings=b
if selection : #selection ==None:
if not base.Group :
base.Group=obj
else :
b=base.Group
b.append(obj)
base.Group=b
#FreeCAD.ActiveDocument.recompute()
FreeCAD.Gui.activeDocument().activeView().viewAxonometric()
FreeCAD.Gui.SendMsgToActiveView("ViewFit")
if FreeCAD.GuiUp:
#register the FreeCAD command
FreeCADGui.addCommand('airPlaneDesignWing',CommandWing())