Skip to content

Commit

Permalink
2.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
planes committed Feb 3, 2021
1 parent 758cbf0 commit 501d74a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tut_solar_uav.py
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ def vehicle_setup():
# Component 5 the Propeller
# Design the Propeller
prop = SUAVE.Components.Energy.Converters.Propeller()
prop.number_blades = 2.0
prop.number_of_blades = 2.0
prop.freestream_velocity = 40.0 * Units['m/s']# freestream
prop.angular_velocity = 150. * Units['rpm']
prop.tip_radius = 4.25 * Units.meters
Expand Down Expand Up @@ -263,7 +263,7 @@ def vehicle_setup():
# Component 8 the Battery
bat = SUAVE.Components.Energy.Storages.Batteries.Constant_Mass.Lithium_Ion()
bat.mass_properties.mass = 90.0 * Units.kg
bat.specific_energy = 600. * Units.Wh/Units.kg
bat.specific_energy = 700. * Units.Wh/Units.kg
bat.resistance = 0.05
bat.max_voltage = 45.0
initialize_from_mass(bat,bat.mass_properties.mass)
Expand Down

0 comments on commit 501d74a

Please sign in to comment.