Skip to content

Commit 4ee2257

Browse files
committed
solar updates
1 parent fa10e92 commit 4ee2257

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

Solar_UAV_Optimization/Vehicles.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,6 @@ def base_setup():
201201
bat.mass_properties.mass = 5.0 * Units.kg
202202
bat.specific_energy = 250. *Units.Wh/Units.kg
203203
bat.resistance = 0.003
204-
bat.iters = 0
205204
initialize_from_mass(bat,bat.mass_properties.mass)
206205
net.battery = bat
207206

tut_solar_uav.py

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -82,9 +82,9 @@ def vehicle_setup():
8282
# Vehicle-level Properties
8383
# ------------------------------------------------------------------
8484
# mass properties
85-
vehicle.mass_properties.takeoff = 200. * Units.kg
86-
vehicle.mass_properties.operating_empty = 200. * Units.kg
87-
vehicle.mass_properties.max_takeoff = 200. * Units.kg
85+
vehicle.mass_properties.takeoff = 250. * Units.kg
86+
vehicle.mass_properties.operating_empty = 250. * Units.kg
87+
vehicle.mass_properties.max_takeoff = 250. * Units.kg
8888

8989
# basic parameters
9090
vehicle.reference_area = 80.
@@ -112,7 +112,6 @@ def vehicle_setup():
112112
wing.chords.mean_aerodynamic = wing.areas.reference/wing.spans.projected
113113
wing.chords.root = wing.areas.reference/wing.spans.projected
114114
wing.chords.tip = wing.areas.reference/wing.spans.projected
115-
wing.span_efficiency = 0.98
116115
wing.twists.root = 0.0 * Units.degrees
117116
wing.twists.tip = 0.0 * Units.degrees
118117
wing.highlift = False
@@ -263,8 +262,8 @@ def vehicle_setup():
263262

264263
# Component 8 the Battery
265264
bat = SUAVE.Components.Energy.Storages.Batteries.Constant_Mass.Lithium_Ion()
266-
bat.mass_properties.mass = 55.0 * Units.kg
267-
bat.specific_energy = 450. * Units.Wh/Units.kg
265+
bat.mass_properties.mass = 90.0 * Units.kg
266+
bat.specific_energy = 600. * Units.Wh/Units.kg
268267
bat.resistance = 0.05
269268
bat.max_voltage = 45.0
270269
initialize_from_mass(bat,bat.mass_properties.mass)

0 commit comments

Comments
 (0)