Skip to content

Commit

Permalink
src:bada3/4/H header comments improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
henrich14 committed Oct 8, 2024
1 parent 7131fa4 commit ae60027
Show file tree
Hide file tree
Showing 3 changed files with 2,034 additions and 1,112 deletions.
20 changes: 10 additions & 10 deletions src/pyBADA/bada3.py
Original file line number Diff line number Diff line change
Expand Up @@ -1670,8 +1670,8 @@ def safe_get(df, column_name, default_value=None):
class BADA3(Airplane):
"""This class implements the part of BADA3 performance model that will be used in other classes following the BADA3 manual.
:param AC: parsed aircraft.
:type AC: bada3.Parse.
:param AC: Aircraft object {BADA3}.
:type AC: bada3Aircraft.
"""

def __init__(self, AC):
Expand Down Expand Up @@ -2261,8 +2261,8 @@ class FlightEnvelope(BADA3):
"""This class is a BADA3 aircraft subclass and implements the flight envelope caclulations
following the BADA3 manual.
:param AC: parsed aircraft.
:type AC: bada3.Parse.
:param AC: Aircraft object {BADA3}.
:type AC: bada3Aircraft.
"""

def __init__(self, AC):
Expand Down Expand Up @@ -2918,8 +2918,8 @@ class ARPM:
"""This class is a BADA3 aircraft subclass and implements the Airline Procedure Model (ARPM)
following the BADA3 user manual.
:param AC: parsed aircraft.
:type AC: bada3.Parse.
:param AC: Aircraft object {BADA3}.
:type AC: bada3Aircraft.
"""

def __init__(self, AC):
Expand Down Expand Up @@ -3634,8 +3634,8 @@ def descentSpeed(
class PTD(BADA3):
"""This class implements the PTD file creator for BADA3 aircraft following BADA3 manual.
:param AC: parsed aircraft.
:type AC: bada3.Parse.
:param AC: Aircraft object {BADA3}.
:type AC: bada3Aircraft.
"""

def __init__(self, AC):
Expand Down Expand Up @@ -4220,8 +4220,8 @@ def PTD_descent(self, mass, altitudeList, DeltaTemp):
class PTF(BADA3):
"""This class implements the PTF file creator for BADA3 aircraft following BADA3 manual.
:param AC: parsed aircraft.
:type AC: bada3.Parse.
:param AC: Aircraft object {BADA3}.
:type AC: bada3Aircraft.
"""

def __init__(self, AC):
Expand Down
Loading

0 comments on commit ae60027

Please sign in to comment.