├── .gitignore ├── L01-python-basics.ipynb ├── L02-data-and-simulation.ipynb ├── L03-sequent-peak.ipynb ├── L04-storage-reliability-yield.ipynb ├── L05-environmental-flows.ipynb ├── L06-water-energy.ipynb ├── L07-floods-stats.ipynb ├── L08-synthetic-streamflow.ipynb ├── L09-multisite-generation.ipynb ├── L10-LP-NLP.ipynb ├── L11-reservoir-control.ipynb ├── L12-reservoir-control-ii.ipynb ├── L13-direct-policy-search.ipynb ├── L14-multiobjective.ipynb ├── L15-multiobjective-ii.ipynb ├── L16-climate-change.ipynb ├── L17-sensitivity-analysis.ipynb ├── LICENSE.md ├── README.md ├── cdec_scraper.py ├── data ├── CAISO-all-hourly.csv ├── FOL-monthly-inflow-TAF.csv ├── FOL.csv ├── FTO-FNF.csv ├── ORO.csv ├── SHA.csv ├── circle-points.csv ├── example-pareto-front.csv ├── folsom-annual-flow.csv ├── folsom-annual-peak-flow.csv ├── leaf-river-data.txt ├── putah-winters.csv └── streamflow_cmip5_ncar_day_GRAND.csv └── git-tutorial ├── FTO-FNF.csv ├── L4-delivery-reliability-curve.py └── utility.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdherman/eci273/HEAD/.gitignore -------------------------------------------------------------------------------- /L01-python-basics.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdherman/eci273/HEAD/L01-python-basics.ipynb -------------------------------------------------------------------------------- /L02-data-and-simulation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdherman/eci273/HEAD/L02-data-and-simulation.ipynb -------------------------------------------------------------------------------- /L03-sequent-peak.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdherman/eci273/HEAD/L03-sequent-peak.ipynb -------------------------------------------------------------------------------- /L04-storage-reliability-yield.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdherman/eci273/HEAD/L04-storage-reliability-yield.ipynb -------------------------------------------------------------------------------- /L05-environmental-flows.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdherman/eci273/HEAD/L05-environmental-flows.ipynb -------------------------------------------------------------------------------- /L06-water-energy.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdherman/eci273/HEAD/L06-water-energy.ipynb -------------------------------------------------------------------------------- /L07-floods-stats.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdherman/eci273/HEAD/L07-floods-stats.ipynb -------------------------------------------------------------------------------- /L08-synthetic-streamflow.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdherman/eci273/HEAD/L08-synthetic-streamflow.ipynb -------------------------------------------------------------------------------- /L09-multisite-generation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdherman/eci273/HEAD/L09-multisite-generation.ipynb -------------------------------------------------------------------------------- /L10-LP-NLP.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdherman/eci273/HEAD/L10-LP-NLP.ipynb -------------------------------------------------------------------------------- /L11-reservoir-control.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdherman/eci273/HEAD/L11-reservoir-control.ipynb -------------------------------------------------------------------------------- /L12-reservoir-control-ii.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdherman/eci273/HEAD/L12-reservoir-control-ii.ipynb -------------------------------------------------------------------------------- /L13-direct-policy-search.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdherman/eci273/HEAD/L13-direct-policy-search.ipynb -------------------------------------------------------------------------------- /L14-multiobjective.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdherman/eci273/HEAD/L14-multiobjective.ipynb -------------------------------------------------------------------------------- /L15-multiobjective-ii.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdherman/eci273/HEAD/L15-multiobjective-ii.ipynb -------------------------------------------------------------------------------- /L16-climate-change.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdherman/eci273/HEAD/L16-climate-change.ipynb -------------------------------------------------------------------------------- /L17-sensitivity-analysis.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdherman/eci273/HEAD/L17-sensitivity-analysis.ipynb -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdherman/eci273/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdherman/eci273/HEAD/README.md -------------------------------------------------------------------------------- /cdec_scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdherman/eci273/HEAD/cdec_scraper.py -------------------------------------------------------------------------------- /data/CAISO-all-hourly.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdherman/eci273/HEAD/data/CAISO-all-hourly.csv -------------------------------------------------------------------------------- /data/FOL-monthly-inflow-TAF.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdherman/eci273/HEAD/data/FOL-monthly-inflow-TAF.csv -------------------------------------------------------------------------------- /data/FOL.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdherman/eci273/HEAD/data/FOL.csv -------------------------------------------------------------------------------- /data/FTO-FNF.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdherman/eci273/HEAD/data/FTO-FNF.csv -------------------------------------------------------------------------------- /data/ORO.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdherman/eci273/HEAD/data/ORO.csv -------------------------------------------------------------------------------- /data/SHA.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdherman/eci273/HEAD/data/SHA.csv -------------------------------------------------------------------------------- /data/circle-points.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdherman/eci273/HEAD/data/circle-points.csv -------------------------------------------------------------------------------- /data/example-pareto-front.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdherman/eci273/HEAD/data/example-pareto-front.csv -------------------------------------------------------------------------------- /data/folsom-annual-flow.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdherman/eci273/HEAD/data/folsom-annual-flow.csv -------------------------------------------------------------------------------- /data/folsom-annual-peak-flow.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdherman/eci273/HEAD/data/folsom-annual-peak-flow.csv -------------------------------------------------------------------------------- /data/leaf-river-data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdherman/eci273/HEAD/data/leaf-river-data.txt -------------------------------------------------------------------------------- /data/putah-winters.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdherman/eci273/HEAD/data/putah-winters.csv -------------------------------------------------------------------------------- /data/streamflow_cmip5_ncar_day_GRAND.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdherman/eci273/HEAD/data/streamflow_cmip5_ncar_day_GRAND.csv -------------------------------------------------------------------------------- /git-tutorial/FTO-FNF.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdherman/eci273/HEAD/git-tutorial/FTO-FNF.csv -------------------------------------------------------------------------------- /git-tutorial/L4-delivery-reliability-curve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdherman/eci273/HEAD/git-tutorial/L4-delivery-reliability-curve.py -------------------------------------------------------------------------------- /git-tutorial/utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdherman/eci273/HEAD/git-tutorial/utility.py --------------------------------------------------------------------------------