|
28 | 28 | #: Dimensions of several quantities.
|
29 | 29 | DIMS = "e n t y UNIT".split()
|
30 | 30 |
|
31 |
| -#: Expression used to extract :math:`(e, t)` dimension coordinates from variable codes |
32 |
| -#: in :func:`v_to_emi_coords`. |
| 31 | +#: Expression used to select and extract :math:`(e, t)` dimension coordinates from |
| 32 | +#: variable codes in :func:`v_to_emi_coords`. |
33 | 33 | EXPR_EMI = re.compile(
|
34 | 34 | r"^Emissions\|(?P<e>[^\|]+)\|Energy\|Demand\|(?P<t>(Bunkers|Transportation).*)$"
|
35 | 35 | )
|
36 |
| -#: Expression used to extract :math:`(c)` dimension coordinates from variable codes in |
37 |
| -#: :func:`v_to_fe_coords`. |
| 36 | +#: Expression used to select and extract :math:`(c)` dimension coordinates from variable |
| 37 | +#: codes in :func:`v_to_fe_coords`. |
38 | 38 | EXPR_FE = re.compile(r"^Final Energy\|Transportation\|(?P<c>Liquids\|Oil)$")
|
39 | 39 |
|
40 | 40 | #: Keywords for :func:`.iamc_like_data_for_query` / :func:`.to_quantity`.
|
@@ -321,8 +321,8 @@ def get_computer(
|
321 | 321 | def get_scenario_code(model_name: str, scenario_name: str) -> "sdmx.model.common.Code":
|
322 | 322 | """Return a specific code from ``CL_TRANSPORT_SCENARIO``.
|
323 | 323 |
|
324 |
| - This function handles (`model_name`, `scenario_name`) combinations seen in base |
325 |
| - model outputs as of 2025-04-02. |
| 324 | + See :func:`.get_cl_scenario`. This function handles (`model_name`, `scenario_name`) |
| 325 | + combinations seen in base model outputs as of 2025-04-02. |
326 | 326 | """
|
327 | 327 | from message_ix_models.model.transport.config import get_cl_scenario
|
328 | 328 |
|
@@ -371,9 +371,9 @@ def method_B(c: "Computer") -> None:
|
371 | 371 | """Prepare calculations up to :data:`K.emi` using :data:`METHOD.B`.
|
372 | 372 |
|
373 | 373 | This method uses the |y0| share of aviation in total transport final energy as
|
374 |
| - indicated by :class:`.IEA_EWEB` (with dimensions :math:`(c, n)`) to disaggregate |
375 |
| - total final energy from the input data, then applies emission factors to compute |
376 |
| - aviation emissions. |
| 374 | + indicated by :class:`.IEA_EWEB`, with dimensions :math:`(c, n)`, to disaggregate |
| 375 | + total final energy from the input data, then applies emission intensity data to |
| 376 | + compute aviation emissions. |
377 | 377 |
|
378 | 378 | Excluding data transformations, units, and other manipulations for alignment:
|
379 | 379 |
|
@@ -505,7 +505,7 @@ def method_C(c: "Computer") -> None:
|
505 | 505 | """Prepare calculations up to :data:`K.emi` using :data:`METHOD.C`.
|
506 | 506 |
|
507 | 507 | This method uses a solved MESSAGEix-Transport scenario to compute the share of
|
508 |
| - aviation in total transport final energy (with dimensions :math:`(c, n, y)`), and |
| 508 | + aviation in total transport final energy, with dimensions :math:`(c, n, y)`, and |
509 | 509 | the proceeds similarly to :func:`method_B`.
|
510 | 510 |
|
511 | 511 | Excluding data transformations, units, and other manipulations for alignment:
|
|
0 commit comments