-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathairPlaneSWPanel.py
203 lines (162 loc) · 8.49 KB
/
airPlaneSWPanel.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
#################################################
#
# 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 airPlaneRib import WingRib, ViewProviderWingRib
from PySide import QtCore
import math
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 WingSPanel:
def __init__(self, obj, _rootRib ,_tipRib ,_rootChord=200,_tipChord=100,_panelLength=100,_tipTwist=0,_dihedral=0):
# _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::PropertyLink","Base","WingPanel",QtCore.QT_TRANSLATE_NOOP("App::Property","Tip Rib of the panel")).Base=_rootRib#
obj.addProperty("App::PropertyLink","RootRib","Rib",QtCore.QT_TRANSLATE_NOOP("App::Property","Root Rib of the panel")).RootRib=_rootRib#.rootRib-_rootRib
obj.addProperty("App::PropertyLink","TipRib","Rib",QtCore.QT_TRANSLATE_NOOP("App::Property","Tip Rib of the panel")).TipRib=_tipRib#.tipRib-_tipRib
# leadingEdge : bord d'attaque
obj.addProperty("App::PropertyLink","LeadingEdge","WingPanel",QtCore.QT_TRANSLATE_NOOP("App::Property","Select the leading edge of the panal, line or Spline"))
# trailing edge : bord de fuite
obj.addProperty("App::PropertyLink","TrailingEdge","WingPanel",QtCore.QT_TRANSLATE_NOOP("App::Property","Select the trailing edge of the panel, line or Spline"))
obj.addProperty("App::PropertyLength","TipChord","Rib",QtCore.QT_TRANSLATE_NOOP("App::Property","Tip Chord")).TipChord=_tipChord
obj.addProperty("App::PropertyLength","RootChord","Rib",QtCore.QT_TRANSLATE_NOOP("App::Property","Root Chord")).RootChord=_rootChord
obj.addProperty("App::PropertyLength","PanelLength","WingPanel",QtCore.QT_TRANSLATE_NOOP("App::Property","Panel Length")).PanelLength=_panelLength
obj.addProperty("App::PropertyAngle","TipTwist","WingPanel",QtCore.QT_TRANSLATE_NOOP("App::Property","Tip Twist")).TipTwist=_tipTwist
obj.addProperty("App::PropertyAngle","Dihedral","WingPanel",QtCore.QT_TRANSLATE_NOOP("App::Property","Dihedral")).Dihedral=_dihedral
#obj.addProperty("App::PropertyLinkList","Ribs","WingPanel",QtCore.QT_TRANSLATE_NOOP("App::Property","list of ribs")).Ribs=[]
obj.addProperty("App::PropertyBool","Solid","WingPanel",QtCore.QT_TRANSLATE_NOOP("App::Property","Solid")).Solid=True #
obj.addProperty("App::PropertyBool","Surface","WingPanel",QtCore.QT_TRANSLATE_NOOP("App::Property","Surface")).Surface=False
obj.addProperty("App::PropertyBool","Structure","Design",QtCore.QT_TRANSLATE_NOOP("App::Property","Surface")).Structure=False
#ribs=[]
#ribs.append(obj.RootRib)
#ribs.append(obj.TipRib)
#FreeCAD.ActiveDocument.recompute()
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'''
if not obj.Structure :
if obj.RootRib :
#obj.RootRib.Placement.Rotation.Axis.x=1
#obj.RootRib.Placement.Rotation.Axis.y=0
#obj.RootRib.Placement.Rotation.Axis.z=0
#obj.RootRib.Placement.Rotation.Angle=obj.Dihedral
#obj.TipRib.Placement.Rotation.Axis.x=1
#obj.TipRib.Placement.Rotation.Axis.y=0
#obj.TipRib.Placement.Rotation.Axis.z=0
#obj.TipRib.Placement.Rotation.Angle=obj.Dihedral
obj.TipRib.Placement.Base.y= obj.PanelLength
#obj.TipRib.Placement.Base.z= obj.PanelLength*math.tan(obj.Dihedral)
ribsWires=[]
ribsWires.append(obj.RootRib.Shape.OuterWire)
ribsWires.append(obj.TipRib.Shape.OuterWire)
obj.RootRib.ViewObject.hide()
obj.TipRib.ViewObject.hide()
obj.Shape=Part.makeLoft(ribsWires,obj.Solid,False)
else :
print("Wing Panel : structure, not implemented yet")
#FreeCAD.ActiveDocument.recompute()
FreeCAD.Console.PrintMessage("Recompute Python Wing feature\n")
class ViewProviderPanel:
def __init__(self, vobj):
vobj.Proxy = self
self.Object = vobj.Object
def getIcon(self):
return os.path.join(smWB_icons_path,'panel.xpm')
def attach(self, vobj):
self.Object = vobj.Object
self.onChanged(vobj,"Base")
def claimChildren(self):
return [self.Object.TipRib] + [self.Object.RootRib]
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
class CommandWPanel:
"the WingPanel command definition"
def GetResources(self):
iconpath = os.path.join(smWB_icons_path,'panel.png')
return {'Pixmap': iconpath, 'MenuText': QtCore.QT_TRANSLATE_NOOP("Create_a_wing_Panel","Create/Add a wing panel, select a panl and clic")}
def IsActive(self):
return not FreeCAD.ActiveDocument is None
def Activated(self):
print("---------------------------------------")
print("-----------------Panel-----------------")
print("---------------------------------------")
selection = FreeCADGui.Selection.getSelectionEx()
if selection :
base = FreeCAD.ActiveDocument.getObject((selection[0].ObjectName))
#---------------------création des nervures temporaires
_rootRib=FreeCAD.ActiveDocument.addObject("Part::FeaturePython","RibRoot_")
WingRib(_rootRib,"/Users/fredericnivoix/Library/Preferences/FreeCAD/Mod/AirPlaneDesign/wingribprofil/naca/naca2412.dat",False,0,200,0,0,0,0,0,0)
ViewProviderWingRib(_rootRib.ViewObject)
_tipRib=FreeCAD.ActiveDocument.addObject("Part::FeaturePython","RibTip_")
WingRib(_tipRib,"/Users/fredericnivoix/Library/Preferences/FreeCAD/Mod/AirPlaneDesign/wingribprofil/naca/naca2412.dat",False,0,200,0,500,0,0,0,0)
ViewProviderWingRib(_tipRib.ViewObject)
FreeCAD.ActiveDocument.recompute()
#----------
#obj=FreeCAD.ActiveDocument.addObject("App::DocumentObjectGroupPython","WingPanel")
obj=FreeCAD.ActiveDocument.addObject("Part::FeaturePython","WingPanel")
WingPanel(obj,_rootRib,_tipRib,200,100,100,0,0)
ViewProviderPanel(obj.ViewObject)
b=[]
if selection : #selection==None :
if not base.WingPanels :
base.WingPanels=obj
else :
b=base.WingPanels
b.append(obj)
base.WingPanels=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('airPlaneDesignSWingPanel',CommandWPanel())