Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
1838d99
ALPSB Init
Wegatriespython Dec 10, 2025
70632cc
Remove obsolete code
Wegatriespython Dec 10, 2025
642eefb
Consolidate dead-code
Wegatriespython Dec 10, 2025
fc36343
Standardize logging
Wegatriespython Dec 10, 2025
5b0c37e
Update rst
Wegatriespython Dec 10, 2025
4c71520
Reduce cooling constraint complexity
Wegatriespython Dec 10, 2025
0b13425
Fix cli issues
Wegatriespython Dec 10, 2025
400c4e9
Generalize timeslice logic
Wegatriespython Dec 10, 2025
3eea1cd
Add preset selection
Wegatriespython Dec 10, 2025
7dcce4e
Consolidate message format conv
Wegatriespython Dec 10, 2025
1f115ba
Clean up
Wegatriespython Dec 10, 2025
91c8274
Simplify year handling
Wegatriespython Dec 10, 2025
8330b0a
Remove unused functions
Wegatriespython Dec 10, 2025
208636f
Add buildings X cooling support
Wegatriespython Dec 11, 2025
d7933ee
Fix fallback logic
Wegatriespython Dec 11, 2025
736f2c6
Add desalination to reporting
Wegatriespython Jan 8, 2026
9dafce9
Fix desal constraint for h1/h2
Wegatriespython Jan 8, 2026
092dfc0
Consolidate magicc inp fixes
Wegatriespython Jan 8, 2026
86aae43
Refactor reporting code
Wegatriespython Jan 8, 2026
39bf5d5
Fix Qtot Qr subtraction
Wegatriespython Jan 9, 2026
1a583d2
Refactor reporting
Wegatriespython Jan 9, 2026
90eb7e1
Add higher forcing options
Wegatriespython Jan 9, 2026
cb6fba0
Add 3500f
Wegatriespython Jan 12, 2026
03e11b9
Add logging and remove silent failure
Wegatriespython Jan 12, 2026
beb8ba8
Fix water starter logic
Wegatriespython Jan 12, 2026
b3165ea
Fix duration time correction
Wegatriespython Jan 12, 2026
aaa15de
Fix TL mismatch
Wegatriespython Jan 12, 2026
1066e27
Add 3500f
Wegatriespython Jan 12, 2026
280571a
Update Jones data
Wegatriespython Jan 13, 2026
0581b92
Fix timeslicing of demands
Wegatriespython Jan 13, 2026
3527c8a
Add 850f
Wegatriespython Jan 13, 2026
dd4865e
Set as default
Wegatriespython Jan 13, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ doc/whatsnew.rst merge=union
*.xz filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.parquet filter=lfs diff=lfs merge=lfs -text
*.nc filter=lfs diff=lfs merge=lfs -text
74 changes: 74 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -153,3 +153,77 @@ cache/

# Scratch files
*scratch*

# Project-specific: MESSAGE-ALPS
# Markdown analysis files
*.md

# Backup files
*.backup

# Windows Zone.Identifier files
*:Zone.Identifier

# Analysis plots and outputs
*.png
*.txt

# Excel diff/temporary files
_*.xlsx
~$*.xlsx

# Reporting output directories
#message_ix_models/data/report/legacy/reporting_output/
#message_ix_models/report/legacy/reporting_output/

# Analysis data directories
/data/

# Shell setup scripts
setup_env.sh

# UV lock file
uv.lock

# Wasteland directory for throwaway scripts
/wasteland/

# ALPS analysis module (local development only)
message_ix_models/project/alps/analysis/

# ALPS plotting module (local development only)
message_ix_models/project/alps/plotting.py

# Legacy reporting data (local only)
message_ix_models/data/report/legacy/
reporting_output/

# Root-level analysis outputs (not tracked)
/*.gdx
/*.csv
/*.pdf
/*.html
/*.parquet
/*.xlsx

# Root-level one-off scripts
/energy_mix_plot.py
/plot_pe_regional.py
/plot_pe_streamgraph.py
/unlock_scen.py
/verify_desalination_bounds.py

# Output directories (symlinks)
GDX_dir
unicc_reporting

# RIME datasets for non-primary hydro models (only CWatM tracked)
message_ix_models/data/alps/rime_datasets/*H08*
message_ix_models/data/alps/rime_datasets/*MIROC*
message_ix_models/data/alps/rime_datasets/*WaterGAP*

# Local analysis/config files
message_ix_models/data/report/binding.yaml
message_ix_models/report/binding.py
message_ix_models/project/alps/reduced_baseline_seasonal_cid_config.yaml
message_ix_models/data/alps/rime_datasets/rime_regionarray_temp_mean_anomaly_*
Loading
Loading