@@ -194,37 +194,7 @@ def vehicle_setup():
194194 wing .high_lift = True
195195 wing .vortex_lift = True
196196 wing .high_mach = True
197- wing .dynamic_pressure_ratio = 1.0
198-
199- # set root sweep with inner section
200- segment = SUAVE .Components .Wings .Segment ()
201- segment .tag = 'section_1'
202- segment .percent_span_location = 0.
203- segment .twist = 0. * Units .deg
204- segment .root_chord_percent = 33.8 / 33.8
205- segment .dihedral_outboard = 0.
206- segment .sweeps .quarter_chord = 67. * Units .deg
207- wing .Segments .append (segment )
208-
209- # set mid section start point
210- segment = SUAVE .Components .Wings .Segment ()
211- segment .tag = 'section_2'
212- segment .percent_span_location = 6.15 / (25.6 / 2 ) + wing .Segments ['section_1' ].percent_span_location
213- segment .twist = 0. * Units .deg
214- segment .root_chord_percent = 13.8 / 33.8
215- segment .dihedral_outboard = 0.
216- segment .sweeps .quarter_chord = 48. * Units .deg
217- wing .Segments .append (segment )
218-
219- # set tip section start point
220- segment = SUAVE .Components .Wings .Segment ()
221- segment .tag = 'section_3'
222- segment .percent_span_location = 5.95 / (25.6 / 2 ) + wing .Segments ['section_2' ].percent_span_location
223- segment .twist = 0. * Units .deg
224- segment .root_chord_percent = 4.4 / 33.8
225- segment .dihedral_outboard = 0.
226- segment .sweeps .quarter_chord = 71. * Units .deg
227- wing .Segments .append (segment )
197+ wing .dynamic_pressure_ratio = 1.0
228198
229199 # add to vehicle
230200 vehicle .append_component (wing )
@@ -259,26 +229,6 @@ def vehicle_setup():
259229 wing .t_tail = False
260230 wing .high_mach = True
261231 wing .dynamic_pressure_ratio = 1.0
262-
263- # set root sweep with inner section
264- segment = SUAVE .Components .Wings .Segment ()
265- segment .tag = 'section_1'
266- segment .percent_span_location = 0.0
267- segment .twist = 0. * Units .deg
268- segment .root_chord_percent = 14.5 / 14.5
269- segment .dihedral_outboard = 0.
270- segment .sweeps .quarter_chord = 63 * Units .deg
271- wing .Segments .append (segment )
272-
273- # set mid section start point
274- segment = SUAVE .Components .Wings .Segment ()
275- segment .tag = 'section_2'
276- segment .percent_span_location = 2.4 / (6.0 ) + wing .Segments ['section_1' ].percent_span_location
277- segment .twist = 0. * Units .deg
278- segment .root_chord_percent = 7.5 / 14.5
279- segment .dihedral_outboard = 0.
280- segment .sweeps .quarter_chord = 40. * Units .deg
281- wing .Segments .append (segment )
282232
283233 # add to vehicle
284234 vehicle .append_component (wing )
0 commit comments