# %%
# python -m auxiliary_tools.cdat_regression_testing.673-aerosol-budget.run_script
from auxiliary_tools.cdat_regression_testing.base_run_script import run_set

SET_NAME = "aerosol_budget"
SET_DIR = "673-aerosol-budget-debug"
CFG_PATH: str | None = (
    "auxiliary_tools/cdat_regression_testing/673-aerosol-budget/run.cfg"
)
# CFG_PATH: str | None = None
MULTIPROCESSING = True

run_set(SET_NAME, SET_DIR, CFG_PATH, MULTIPROCESSING)

"""
5/8/24

- [x] Fix Elevated Emission (Tg/yr) -- much larger on dev -- due to using xarray .sum() instead of Python sum() on a tuple of variables
- [x] Fix Burden -- units seem  ! smaller on dev (unit conversion?) -- fixed, I think fixing derivation formulas fixed this
- [x] Fix Lifetime (Days) -- uses Burden for calculation
- [] Fix Sulfate Elevated Emission (Tg/yr)#
"""

# %%
