forked from suavecode/Tutorials
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tut_concorde.py
757 lines (547 loc) · 24.6 KB
/
tut_concorde.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
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
# tut_Concorde.py
#
# Created: Aug 2014, SUAVE Team
# Modified: Jan 2017, T. MacDonald
# Aug 2017, E. Botero
""" setup file for a mission with a concorde
"""
# ----------------------------------------------------------------------
# Imports
# ----------------------------------------------------------------------
import SUAVE
assert SUAVE.__version__=='2.5.2', 'These tutorials only work with the SUAVE 2.5.2 release'
from SUAVE.Core import Units
from SUAVE.Plots.Performance.Mission_Plots import *
from SUAVE.Methods.Propulsion.turbojet_sizing import turbojet_sizing
import pylab as plt
from copy import deepcopy
# ----------------------------------------------------------------------
# Main
# ----------------------------------------------------------------------
def main():
configs, analyses = full_setup()
simple_sizing(configs)
configs.finalize()
analyses.finalize()
# weight analysis
weights = analyses.configs.base.weights
breakdown = weights.evaluate()
# mission analysis
mission = analyses.missions.base
results = mission.evaluate()
plot_mission(results)
plt.show()
return
# ----------------------------------------------------------------------
# Analysis Setup
# ----------------------------------------------------------------------
def full_setup():
# vehicle data
vehicle = vehicle_setup()
configs = configs_setup(vehicle)
# vehicle analyses
configs_analyses = analyses_setup(configs)
# mission analyses
mission = mission_setup(configs_analyses)
missions_analyses = missions_setup(mission)
analyses = SUAVE.Analyses.Analysis.Container()
analyses.configs = configs_analyses
analyses.missions = missions_analyses
return configs, analyses
# ----------------------------------------------------------------------
# Define the Vehicle Analyses
# ----------------------------------------------------------------------
def analyses_setup(configs):
analyses = SUAVE.Analyses.Analysis.Container()
# build a base analysis for each config
for tag,config in configs.items():
analysis = base_analysis(config)
analyses[tag] = analysis
return analyses
def base_analysis(vehicle):
# ------------------------------------------------------------------
# Initialize the Analyses
# ------------------------------------------------------------------
analyses = SUAVE.Analyses.Vehicle()
# ------------------------------------------------------------------
# Basic Geometry Relations
sizing = SUAVE.Analyses.Sizing.Sizing()
sizing.features.vehicle = vehicle
analyses.append(sizing)
# ------------------------------------------------------------------
# Weights
weights = SUAVE.Analyses.Weights.Weights_Transport()
weights.vehicle = vehicle
analyses.append(weights)
# ------------------------------------------------------------------
# Aerodynamics Analysis
aerodynamics = SUAVE.Analyses.Aerodynamics.Supersonic_Zero()
aerodynamics.geometry = vehicle
aerodynamics.settings.drag_coefficient_increment = 0.0000
aerodynamics.settings.span_efficiency = .8
analyses.append(aerodynamics)
# ------------------------------------------------------------------
# Stability Analysis
# Not yet available for this configuration
# ------------------------------------------------------------------
# Energy
energy= SUAVE.Analyses.Energy.Energy()
energy.network = vehicle.networks #what is called throughout the mission (at every time step))
analyses.append(energy)
# ------------------------------------------------------------------
# Planet Analysis
planet = SUAVE.Analyses.Planets.Planet()
analyses.append(planet)
# ------------------------------------------------------------------
# Atmosphere Analysis
atmosphere = SUAVE.Analyses.Atmospheric.US_Standard_1976()
atmosphere.features.planet = planet.features
analyses.append(atmosphere)
# done!
return analyses
def vehicle_setup():
# ------------------------------------------------------------------
# Initialize the Vehicle
# ------------------------------------------------------------------
vehicle = SUAVE.Vehicle()
vehicle.tag = 'Concorde'
# ------------------------------------------------------------------
# Vehicle-level Properties
# ------------------------------------------------------------------
# mass properties
vehicle.mass_properties.max_takeoff = 185000. * Units.kilogram
vehicle.mass_properties.operating_empty = 78700. * Units.kilogram
vehicle.mass_properties.takeoff = 185000. * Units.kilogram
vehicle.mass_properties.cargo = 1000. * Units.kilogram
# envelope properties
vehicle.envelope.ultimate_load = 3.75
vehicle.envelope.limit_load = 2.5
# basic parameters
vehicle.reference_area = 358.25
vehicle.passengers = 100
vehicle.systems.control = "fully powered"
vehicle.systems.accessories = "long range"
vehicle.maximum_cross_sectional_area = 13.9
vehicle.total_length = 61.66
# ------------------------------------------------------------------
# Main Wing
# ------------------------------------------------------------------
wing = SUAVE.Components.Wings.Main_Wing()
wing.tag = 'main_wing'
wing.aspect_ratio = 1.83
wing.sweeps.quarter_chord = 59.5 * Units.deg
wing.thickness_to_chord = 0.03
wing.taper = 0.
wing.spans.projected = 25.6 * Units.meter
wing.chords.root = 33.8 * Units.meter
wing.total_length = 33.8 * Units.meter
wing.chords.tip = 1.1 * Units.meter
wing.chords.mean_aerodynamic = 18.4 * Units.meter
wing.areas.reference = 358.25 * Units['meter**2']
wing.areas.wetted = 653. - 12.*2.4*2 # 2.4 is engine area on one side
wing.areas.exposed = 326.5 * Units['meter**2']
wing.areas.affected = .6 * wing.areas.reference
wing.twists.root = 0.0 * Units.degrees
wing.twists.tip = 0.0 * Units.degrees
wing.origin = [[14,0,-.8]] # meters
wing.aerodynamic_center = [35,0,0] # meters
wing.vertical = False
wing.symmetric = True
wing.high_lift = True
wing.vortex_lift = True
wing.high_mach = True
wing.dynamic_pressure_ratio = 1.0
# add to vehicle
vehicle.append_component(wing)
# ------------------------------------------------------------------
# Vertical Stabilizer
# ------------------------------------------------------------------
wing = SUAVE.Components.Wings.Vertical_Tail()
wing.tag = 'vertical_stabilizer'
wing.aspect_ratio = 0.74
wing.sweeps.quarter_chord = 60 * Units.deg
wing.thickness_to_chord = 0.04
wing.taper = 0.14
wing.spans.projected = 6.0 * Units.meter
wing.chords.root = 14.5 * Units.meter
wing.total_length = 14.5 * Units.meter
wing.chords.tip = 2.7 * Units.meter
wing.chords.mean_aerodynamic = 8.66 * Units.meter
wing.areas.reference = 33.91 * Units['meter**2']
wing.areas.wetted = 76. * Units['meter**2']
wing.areas.exposed = 38. * Units['meter**2']
wing.areas.affected = 33.91 * Units['meter**2']
wing.twists.root = 0.0 * Units.degrees
wing.twists.tip = 0.0 * Units.degrees
wing.origin = [[42.,0,1.]] # meters
wing.aerodynamic_center = [50,0,0] # meters
wing.vertical = True
wing.symmetric = False
wing.t_tail = False
wing.high_mach = True
wing.dynamic_pressure_ratio = 1.0
# add to vehicle
vehicle.append_component(wing)
# ------------------------------------------------------------------
# Fuselage
# ------------------------------------------------------------------
fuselage = SUAVE.Components.Fuselages.Fuselage()
fuselage.tag = 'fuselage'
fuselage.seats_abreast = 4
fuselage.seat_pitch = 1 * Units.meter
fuselage.fineness.nose = 4.3 * Units.meter
fuselage.fineness.tail = 6.4 * Units.meter
fuselage.lengths.total = 61.66 * Units.meter
fuselage.width = 2.88 * Units.meter
fuselage.heights.maximum = 3.32 * Units.meter
fuselage.heights.maximum = 3.32 * Units.meter
fuselage.heights.at_quarter_length = 3.32 * Units.meter
fuselage.heights.at_wing_root_quarter_chord = 3.32 * Units.meter
fuselage.heights.at_three_quarters_length = 3.32 * Units.meter
fuselage.areas.wetted = 447. * Units['meter**2']
fuselage.areas.front_projected = 11.9 * Units['meter**2']
fuselage.effective_diameter = 3.1 * Units.meter
fuselage.differential_pressure = 7.4e4 * Units.pascal # Maximum differential pressure
# add to vehicle
vehicle.append_component(fuselage)
# ------------------------------------------------------------------
# the nacelle
# ------------------------------------------------------------------
nacelle = SUAVE.Components.Nacelles.Nacelle()
nacelle.diameter = 1.3
nacelle.tag = 'nacelle_L1'
nacelle.origin = [[36.56, 22, -1.9]]
nacelle.length = 12.0
nacelle.inlet_diameter = 1.1
nacelle.areas.wetted = 30.
vehicle.append_component(nacelle)
nacelle_2 = deepcopy(nacelle)
nacelle_2.tag = 'nacelle_2'
nacelle_2.origin = [[37.,5.3,-1.3]]
vehicle.append_component(nacelle_2)
nacelle_3 = deepcopy(nacelle)
nacelle_3.tag = 'nacelle_3'
nacelle_3.origin = [[37.,-5.3,-1.3]]
vehicle.append_component(nacelle_3)
nacelle_4 = deepcopy(nacelle)
nacelle_4.tag = 'nacelle_4'
nacelle_4.origin = [[37.,-6.,-1.3]]
vehicle.append_component(nacelle_4)
# ------------------------------------------------------------------
# Turbojet Network
# ------------------------------------------------------------------
# instantiate the gas turbine network
turbojet = SUAVE.Components.Energy.Networks.Turbojet_Super()
turbojet.tag = 'turbojet'
# setup
turbojet.number_of_engines = 4.0
turbojet.engine_length = 12.0
turbojet.origin = [[37.,6.,-1.3],[37.,5.3,-1.3],[37.,-5.3,-1.3],[37.,-6.,-1.3]] # meters
# working fluid
turbojet.working_fluid = SUAVE.Attributes.Gases.Air()
# ------------------------------------------------------------------
# Component 1 - Ram
# to convert freestream static to stagnation quantities
# instantiate
ram = SUAVE.Components.Energy.Converters.Ram()
ram.tag = 'ram'
# add to the network
turbojet.append(ram)
# ------------------------------------------------------------------
# Component 2 - Inlet Nozzle
# instantiate
inlet_nozzle = SUAVE.Components.Energy.Converters.Compression_Nozzle()
inlet_nozzle.tag = 'inlet_nozzle'
# setup
inlet_nozzle.polytropic_efficiency = 0.98
inlet_nozzle.pressure_ratio = 1.0
# add to network
turbojet.append(inlet_nozzle)
# ------------------------------------------------------------------
# Component 3 - Low Pressure Compressor
# instantiate
compressor = SUAVE.Components.Energy.Converters.Compressor()
compressor.tag = 'low_pressure_compressor'
# setup
compressor.polytropic_efficiency = 0.91
compressor.pressure_ratio = 3.1
# add to network
turbojet.append(compressor)
# ------------------------------------------------------------------
# Component 4 - High Pressure Compressor
# instantiate
compressor = SUAVE.Components.Energy.Converters.Compressor()
compressor.tag = 'high_pressure_compressor'
# setup
compressor.polytropic_efficiency = 0.91
compressor.pressure_ratio = 5.0
# add to network
turbojet.append(compressor)
# ------------------------------------------------------------------
# Component 5 - Low Pressure Turbine
# instantiate
turbine = SUAVE.Components.Energy.Converters.Turbine()
turbine.tag='low_pressure_turbine'
# setup
turbine.mechanical_efficiency = 0.99
turbine.polytropic_efficiency = 0.93
# add to network
turbojet.append(turbine)
# ------------------------------------------------------------------
# Component 6 - High Pressure Turbine
# instantiate
turbine = SUAVE.Components.Energy.Converters.Turbine()
turbine.tag='high_pressure_turbine'
# setup
turbine.mechanical_efficiency = 0.99
turbine.polytropic_efficiency = 0.93
# add to network
turbojet.append(turbine)
# ------------------------------------------------------------------
# Component 7 - Combustor
# instantiate
combustor = SUAVE.Components.Energy.Converters.Combustor()
combustor.tag = 'combustor'
# setup
combustor.efficiency = 0.99
combustor.turbine_inlet_temperature = 1450.
combustor.pressure_ratio = 1.0
combustor.fuel_data = SUAVE.Attributes.Propellants.Jet_A()
# add to network
turbojet.append(combustor)
# ------------------------------------------------------------------
# Component 8 - Core Nozzle
# instantiate
nozzle = SUAVE.Components.Energy.Converters.Supersonic_Nozzle()
nozzle.tag = 'core_nozzle'
# setup
nozzle.polytropic_efficiency = 0.95
nozzle.pressure_ratio = 0.99
# add to network
turbojet.append(nozzle)
# ------------------------------------------------------------------
#Component 9 : Thrust (to compute the thrust)
thrust = SUAVE.Components.Energy.Processes.Thrust()
thrust.tag ='compute_thrust'
# total design thrust (includes all the engines)
thrust.total_design = 4*140000. * Units.N #Newtons
# Note: Sizing builds the propulsor. It does not actually set the size of the turbojet
# design sizing conditions
altitude = 0.0*Units.ft
mach_number = 0.01
isa_deviation = 0.
# add to network
turbojet.thrust = thrust
#size the turbojet
turbojet_sizing(turbojet,mach_number,altitude)
# add gas turbine network gt_engine to the vehicle
vehicle.append_component(turbojet)
# ------------------------------------------------------------------
# Vehicle Definition Complete
# ------------------------------------------------------------------
return vehicle
# ----------------------------------------------------------------------
# Define the Configurations
# ---------------------------------------------------------------------
def configs_setup(vehicle):
# ------------------------------------------------------------------
# Initialize Configurations
# ------------------------------------------------------------------
configs = SUAVE.Components.Configs.Config.Container()
base_config = SUAVE.Components.Configs.Config(vehicle)
base_config.tag = 'base'
configs.append(base_config)
# ------------------------------------------------------------------
# Cruise Configuration
# ------------------------------------------------------------------
config = SUAVE.Components.Configs.Config(base_config)
config.tag = 'cruise'
configs.append(config)
# ------------------------------------------------------------------
# Takeoff Configuration
# ------------------------------------------------------------------
config = SUAVE.Components.Configs.Config(base_config)
config.tag = 'takeoff'
config.V2_VS_ratio = 1.21
config.maximum_lift_coefficient = 2.
configs.append(config)
# ------------------------------------------------------------------
# Landing Configuration
# ------------------------------------------------------------------
config = SUAVE.Components.Configs.Config(base_config)
config.tag = 'landing'
config.Vref_VS_ratio = 1.23
config.maximum_lift_coefficient = 2.
configs.append(config)
return configs
# ----------------------------------------------------------------------
# Plot Mission
# ----------------------------------------------------------------------
def plot_mission(results,line_style='bo-'):
# Plot Flight Conditions
plot_flight_conditions(results, line_style)
# Plot Aerodynamic Forces
plot_aerodynamic_forces(results, line_style)
# Plot Aerodynamic Coefficients
plot_aerodynamic_coefficients(results, line_style)
# Drag Components
plot_drag_components(results, line_style)
# Plot Altitude, sfc, vehicle weight
plot_altitude_sfc_weight(results, line_style)
# Plot Velocities
plot_aircraft_velocities(results, line_style)
return
def simple_sizing(configs):
base = configs.base
base.pull_base()
# zero fuel weight
base.mass_properties.max_zero_fuel = 0.9 * base.mass_properties.max_takeoff
# wing areas
for wing in base.wings:
wing.areas.wetted = 2.0 * wing.areas.reference
wing.areas.exposed = 0.8 * wing.areas.wetted
wing.areas.affected = 0.6 * wing.areas.wetted
# fuselage seats
base.fuselages['fuselage'].number_coach_seats = base.passengers
# diff the new data
base.store_diff()
# done!
return
# ----------------------------------------------------------------------
# Define the Mission
# ----------------------------------------------------------------------
def mission_setup(analyses):
# ------------------------------------------------------------------
# Initialize the Mission
# ------------------------------------------------------------------
mission = SUAVE.Analyses.Mission.Sequential_Segments()
mission.tag = 'the_mission'
#airport
airport = SUAVE.Attributes.Airports.Airport()
airport.altitude = 0.0 * Units.ft
airport.delta_isa = 0.0
airport.atmosphere = SUAVE.Attributes.Atmospheres.Earth.US_Standard_1976()
mission.airport = airport
# unpack Segments module
Segments = SUAVE.Analyses.Mission.Segments
# base segment
base_segment = Segments.Segment()
# ------------------------------------------------------------------
# First Climb Segment
# ------------------------------------------------------------------
segment = Segments.Climb.Constant_Speed_Constant_Rate(base_segment)
segment.tag = "climb_1"
segment.analyses.extend( analyses.base )
ones_row = segment.state.ones_row
segment.state.unknowns.body_angle = ones_row(1) * 7. * Units.deg
segment.altitude_start = 0.0 * Units.km
segment.altitude_end = 3.05 * Units.km
segment.air_speed = 128.6 * Units['m/s']
segment.climb_rate = 20.32 * Units['m/s']
# add to misison
mission.append_segment(segment)
# ------------------------------------------------------------------
# Second Climb Segment
# ------------------------------------------------------------------
segment = Segments.Climb.Constant_Speed_Constant_Rate(base_segment)
segment.tag = "climb_2"
segment.analyses.extend( analyses.base )
segment.altitude_end = 4.57 * Units.km
segment.air_speed = 205.8 * Units['m/s']
segment.climb_rate = 10.16 * Units['m/s']
# add to mission
mission.append_segment(segment)
# ------------------------------------------------------------------
# Third Climb Segment: linear Mach
# ------------------------------------------------------------------
segment = Segments.Climb.Linear_Mach_Constant_Rate(base_segment)
segment.tag = "climb_3"
segment.analyses.extend( analyses.base )
segment.altitude_end = 7.60 * Units.km
segment.mach_start = 0.64
segment.mach_end = 1.0
segment.climb_rate = 5.05 * Units['m/s']
# add to mission
mission.append_segment(segment)
# ------------------------------------------------------------------
# Fourth Climb Segment: linear Mach
# ------------------------------------------------------------------
segment = Segments.Climb.Linear_Mach_Constant_Rate(base_segment)
segment.tag = "climb_4"
segment.analyses.extend( analyses.base )
segment.altitude_end = 15.24 * Units.km
segment.mach_start = 1.0
segment.mach_end = 2.02
segment.climb_rate = 5.08 * Units['m/s']
# add to mission
mission.append_segment(segment)
# ------------------------------------------------------------------
# Fourth Climb Segment
# ------------------------------------------------------------------
segment = Segments.Climb.Constant_Mach_Constant_Rate(base_segment)
segment.tag = "climb_5"
segment.analyses.extend( analyses.base )
segment.altitude_end = 18.288 * Units.km
segment.mach_number = 2.02
segment.climb_rate = 0.65 * Units['m/s']
# add to mission
mission.append_segment(segment)
# ------------------------------------------------------------------
# Cruise Segment
# ------------------------------------------------------------------
segment = Segments.Cruise.Constant_Mach_Constant_Altitude(base_segment)
segment.tag = "cruise"
segment.analyses.extend( analyses.base )
segment.mach = 2.02
segment.distance = 2000.0 * Units.km
mission.append_segment(segment)
# ------------------------------------------------------------------
# First Descent Segment
# ------------------------------------------------------------------
segment = Segments.Descent.Linear_Mach_Constant_Rate(base_segment)
segment.tag = "descent_1"
segment.analyses.extend( analyses.base )
segment.altitude_end = 6.8 * Units.km
segment.mach_start = 2.02
segment.mach_end = 1.0
segment.descent_rate = 5.0 * Units['m/s']
# add to mission
mission.append_segment(segment)
# ------------------------------------------------------------------
# Second Descent Segment
# ------------------------------------------------------------------
segment = Segments.Descent.Linear_Mach_Constant_Rate(base_segment)
segment.tag = "descent_2"
segment.analyses.extend( analyses.base )
segment.altitude_end = 3.0 * Units.km
segment.mach_start = 1.0
segment.mach_end = 0.65
segment.descent_rate = 5.0 * Units['m/s']
# add to mission
mission.append_segment(segment)
# ------------------------------------------------------------------
# Third Descent Segment
# ------------------------------------------------------------------
segment = Segments.Descent.Constant_Speed_Constant_Rate(base_segment)
segment.tag = "descent_3"
segment.analyses.extend( analyses.base )
segment.altitude_end = 0.0 * Units.km
segment.air_speed = 130.0 * Units['m/s']
segment.descent_rate = 5.0 * Units['m/s']
# append to mission
mission.append_segment(segment)
# ------------------------------------------------------------------
# Mission definition complete
# ------------------------------------------------------------------
return mission
def missions_setup(base_mission):
# the mission container
missions = SUAVE.Analyses.Mission.Mission.Container()
# ------------------------------------------------------------------
# Base Mission
# ------------------------------------------------------------------
missions.base = base_mission
# done!
return missions
if __name__ == '__main__':
main()