aeromaps.models.air_transport.air_traffic.rtk¶
rtk¶
Module to compute freight traffic.
RTK ¶
RTK(name='rtk', *args, **kwargs)
Bases: AeroMAPSModel
Class to compute freight traffic considering COVID-19 impact and exogenous growth rates.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
name
|
str
|
Name of the model instance ('rtk' by default). |
'rtk'
|
Source code in aeromaps/models/air_transport/air_traffic/rtk.py
27 28 | |
compute ¶
compute(rtk_init, covid_start_year, covid_rtk_drop_start_year, covid_end_year_freight, covid_end_year_reference_rtk_ratio, cagr_freight_reference_periods, cagr_freight_reference_periods_values)
RTK calculation.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
rtk_init
|
Series
|
Historical number of Revenue Tonne Kilometer (RTK) over 2000-2019 [RTK]. |
required |
covid_start_year
|
Number
|
Covid-19 start year [yr]. |
required |
covid_rtk_drop_start_year
|
float
|
Drop in RTK due to Covid-19 for the start year [%]. |
required |
covid_end_year_freight
|
Number
|
Covid-19 end year [yr]. |
required |
covid_end_year_reference_rtk_ratio
|
float
|
Percentage of cargo traffic level reached in Covid-19 end year compared with the one in Covid-19 start year [%]. |
required |
cagr_freight_reference_periods
|
list
|
Reference periods for the CAGR for freight market [yr]. |
required |
cagr_freight_reference_periods_values
|
list
|
CAGR for freight market for the reference periods [%]. |
required |
Returns:
| Type | Description |
|---|---|
rtk
|
Number of Revenue Tonne Kilometer (RTK) for freight air transport [RTK]. |
annual_growth_rate_freight
|
Annual growth rate for freight [%/year]. |
cagr_rtk
|
Air traffic CAGR for freight market [%]. |
prospective_evolution_rtk
|
Evolution in percentage of Revenue Tonne Kilometer (RTK) for freight market between prospection_start_year and end_year [%]. |
Source code in aeromaps/models/air_transport/air_traffic/rtk.py
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 | |
RTKReference ¶
RTKReference(name='rtk_reference', *args, **kwargs)
Bases: AeroMAPSModel
Class to compute reference Revenue Tonne Kilometers (RTK) with baseline air traffic growth.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
name
|
str
|
Name of the model instance ('rtk_reference' by default). |
'rtk_reference'
|
Source code in aeromaps/models/air_transport/air_traffic/rtk.py
149 150 | |
compute ¶
compute(rtk, reference_cagr_freight_reference_periods, reference_cagr_freight_reference_periods_values, covid_start_year, covid_rtk_drop_start_year, covid_end_year_freight, covid_end_year_reference_rtk_ratio)
RTK reference calculation.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
rtk
|
Series
|
Number of Revenue Tonne Kilometer (RTK) for freight air transport [RTK]. |
required |
reference_cagr_freight_reference_periods
|
list
|
Reference periods for the reference CAGR for freight market [yr]. |
required |
reference_cagr_freight_reference_periods_values
|
list
|
Reference CAGR for freight market for the reference periods [%]. |
required |
covid_start_year
|
Number
|
Covid-19 start year [yr]. |
required |
covid_rtk_drop_start_year
|
float
|
Drop in RTK due to Covid-19 for the start year [%]. |
required |
covid_end_year_freight
|
Number
|
Covid-19 end year [yr]. |
required |
covid_end_year_reference_rtk_ratio
|
float
|
Percentage of traffic level reached in Covid-19 end year compared with the one in Covid-19 start year [%]. |
required |
Returns:
| Type | Description |
|---|---|
rtk_reference
|
Number of Revenue Tonne Kilometer (RTK) for freight air transport with a baseline air traffic growth [RTK]. |
reference_annual_growth_rate_freight
|
Reference annual growth rate for freight market [%/year]. |
Source code in aeromaps/models/air_transport/air_traffic/rtk.py
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 | |