ReEDS-2.0

(★ 176)

No description available.

File Explorer

  • .gitattributes
  • .gitignore
  • .pre-commit-config.yaml
  • .pylintrc
  • Augur.py
  • aws_setup.sh
  • b_inputs.gms
  • b_inputs.gsp
  • c_mga.gms
  • c_supplymodel.gms
  • c_supplyobjective.gms
  • c_supplyobjective.gsp
  • cases.csv
  • cases_examples.csv
  • cases_small.csv
  • cases_standardscenarios.csv
  • cases_test.csv
  • cbc.opt
  • CITATION.cff
  • cplex.op2
  • cplex.opt
  • createmodel.gms
  • d1_financials.gms
  • d1_temporal_params.gms
  • d2_post_solve_adjustments.gms
  • d2_unfix_op.gms
  • d2_varfix.gms
  • d3_data_dump.gms
  • d_solve_iterate.py
  • d_solveallyears.gms
  • d_solveoneyear.gms
  • d_solvepcm.gms
  • d_solveprep.gms
  • d_solvewindow.gms
  • dump_alldata.gms
  • e_powfrac_calc.gms
  • e_report.gms
  • e_report_dump.py
  • e_report_params.csv
  • environment.yml
  • gurobi.opt
  • instantiate.jl
  • interim_report.py
  • interim_report_batch.py
  • LICENSE
  • Project.toml
  • pyproject.toml
  • raw_value_streams.py
  • README.md
  • requirements_dev.txt
  • restart_runs.py
  • run_pcm.py
  • runbatch.py
  • runfiles.csv
  • runstatus.py
  • sources.csv
  • sources_documentation.md
  • srun_template.sh
  • tc_phaseout.py
  • valuestreams.py

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

conda activate

View Details ▼

Activate a conda environment.
See also: `conda deactivate`.

conda activate myenv

Activate an existing environment named `myenv`:

conda activate {{path/to/myenv}}

Activate an existing environment located at custom path:

conda activate --stack myenv

Stack `myenv` environment on top of a previous environment making libraries/commands/variables from both accessible:

🔍

conda env

View Details ▼

Manage conda environments.

conda env create {{[-f|--file]}} {{path/to/file}}

Create an environment from an environment file (YAML, TXT, etc.):

conda env remove {{[-n|--name]}} {{environment_name}}

Delete an environment and everything in it:

conda env update {{[-f|--file]}} {{path/to/file}} --prune

Update an environment based on an environment file:

🔍

git clone

View Details ▼

Clone an existing repository.

git clone {{remote_repository_location}} {{path/to/directory}}

Clone an existing repository into a new directory (the default directory is the repository name):

git clone --recursive {{remote_repository_location}}

Clone an existing repository and its submodules:

git clone {{[-n|--no-checkout]}} {{remote_repository_location}}

Clone only the `.git` directory of an existing repository:

🔍

julia

View Details ▼

A high-level, high-performance dynamic programming language for technical computing.

julia

Start a REPL (interactive shell):

julia {{program.jl}}

Execute a Julia program and exit:

julia {{program.jl}} {{arguments}}

Execute a Julia program that takes arguments:

🔍

python

View Details ▼

Python language interpreter.

python

Start a REPL (interactive shell):

python {{path/to/file.py}}

Execute a specific Python file:

python -i {{path/to/file.py}}

Execute a specific Python file and start a REPL:

// repository documentation