├── .gitattributes ├── .gitignore ├── README.md ├── _config.yml ├── index.md ├── routing ├── input │ ├── fluxes_45.2500_45.0000 │ └── fluxes_45.3750_45.1250 ├── model │ ├── Makefile │ ├── init_routines.f │ ├── init_routines.o │ ├── reservoir.f │ ├── reservoir.o │ ├── rout │ ├── rout.exe │ ├── rout.f │ ├── rout.o │ ├── unit_hyd_routines.f │ ├── unit_hyd_routines.o │ ├── write_routines.f │ └── write_routines.o ├── output │ └── OUTPUT.day └── parameters │ ├── configuration.txt │ ├── flowdirection.txt │ ├── naturalized_flow │ ├── NF1.txt │ └── search_catchment │ │ └── RES_DIR_1.txt │ ├── reservoirlocation.txt │ ├── reservoirs │ └── res_par │ │ ├── res1.txt │ │ └── res2.txt │ ├── stations.txt │ └── unit_hydrograph │ └── UH.all ├── runoff ├── input │ └── data_11.9189_107.9069 ├── model │ ├── CalcAerodynamic.c │ ├── CalcBlowingSnow.c │ ├── ChangeLog │ ├── IceEnergyBalance.c │ ├── LAKE.h │ ├── Makefile │ ├── SnowPackEnergyBalance.c │ ├── StabilityCorrection.c │ ├── advected_sensible_heat.c │ ├── alloc_atmos.c │ ├── alloc_veg_hist.c │ ├── arno_evap.c │ ├── calc_Nscale_factors.c │ ├── calc_air_temperature.c │ ├── calc_atmos_energy_bal.c │ ├── calc_longwave.c │ ├── calc_rainonly.c │ ├── calc_root_fraction.c │ ├── calc_snow_coverage.c │ ├── calc_surf_energy_bal.c │ ├── calc_veg_params.c │ ├── calc_water_energy_balance_errors.c │ ├── canopy_assimilation.c │ ├── canopy_evap.c │ ├── check_files.c │ ├── check_state_file.c │ ├── close_files.c │ ├── cmd_proc.c │ ├── compress_files.c │ ├── compute_coszen.c │ ├── compute_pot_evap.c │ ├── compute_soil_resp.c │ ├── compute_treeline.c │ ├── compute_zwt.c │ ├── correct_precip.c │ ├── display_current_settings.c │ ├── estimate_T1.c │ ├── faparl.c │ ├── free_all_vars.c │ ├── free_vegcon.c │ ├── frozen_soil.c │ ├── full_energy.c │ ├── func_atmos_energy_bal.c │ ├── func_atmos_moist_bal.c │ ├── func_canopy_energy_bal.c │ ├── func_surf_energy_bal.c │ ├── get_dist.c │ ├── get_force_type.c │ ├── get_global_param.c │ ├── global.h │ ├── ice_melt.c │ ├── initialize_atmos.c │ ├── initialize_global.c │ ├── initialize_lake.c │ ├── initialize_model_state.c │ ├── initialize_snow.c │ ├── initialize_soil.c │ ├── initialize_veg.c │ ├── lakes.eb.c │ ├── latent_heat_from_snow.c │ ├── make_all_vars.c │ ├── make_cell_data.c │ ├── make_dmy.c │ ├── make_energy_bal.c │ ├── make_in_and_outfiles.c │ ├── make_snow_data.c │ ├── make_veg_var.c │ ├── massrelease.c │ ├── modify_Ksat.c │ ├── mtclim_constants_vic.h │ ├── mtclim_parameters_vic.h │ ├── mtclim_vic.c │ ├── mtclim_wrapper.c │ ├── newt_raph_func_fast.c │ ├── nrerror.c │ ├── open_file.c │ ├── open_state_file.c │ ├── output_list_utils.c │ ├── parse_output_info.c │ ├── penman.c │ ├── photosynth.c │ ├── prepare_full_energy.c │ ├── print_library.c │ ├── put_data.c │ ├── read_atmos_data.c │ ├── read_forcing_data.c │ ├── read_initial_model_state.c │ ├── read_lakeparam.c │ ├── read_snowband.c │ ├── read_soilparam.c │ ├── read_veglib.c │ ├── read_vegparam.c │ ├── root_brent.c │ ├── runoff.c │ ├── set_output_defaults.c │ ├── snow.h │ ├── snow_intercept.c │ ├── snow_melt.c │ ├── snow_utility.c │ ├── soil_carbon_balance.c │ ├── soil_conduction.c │ ├── soil_thermal_eqn.c │ ├── solve_snow.c │ ├── surface_fluxes.c │ ├── svp.c │ ├── vicNl │ ├── vicNl.c │ ├── vicNl.h │ ├── vicNl_def.h │ ├── vicerror.c │ ├── water_energy_balance.c │ ├── water_under_ice.c │ ├── write_data.c │ ├── write_forcing_file.c │ ├── write_header.c │ ├── write_layer.c │ ├── write_model_state.c │ └── write_vegvar.c ├── output │ ├── fluxes_45.2500_45.0000 │ └── fluxes_45.3750_45.1250 └── parameters │ ├── globalparam.txt │ ├── land.txt │ ├── soil.txt │ └── vegetlibrary.txt └── toolbox ├── calibration ├── basin_calibration_eNSGAII.py ├── calibration_setup.txt ├── zone.txt └── zone_calibration_eNSGAII.py ├── optimization ├── optimization.py ├── reservoiroptimization.txt ├── reservoirwl.txt └── waterdemand.txt ├── sensitivity ├── EET_analysis.py ├── EET_setup.txt ├── eFAST_analysis.py └── eFAST_setup.txt └── utils ├── VIC5_Inp_Prep ├── README.md ├── lon_lat.txt ├── pre_atmosphere_pressure.py ├── pre_precipitation.py ├── pre_radiation.py ├── pre_temperature.py ├── pre_vapor_pressure.py ├── pre_wind_speed.py ├── vic_inp_ascii.py └── vic_inp_netcdf.py └── prepare_vicres_forcing.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | viccall.py 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/_config.yml -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/index.md -------------------------------------------------------------------------------- /routing/input/fluxes_45.2500_45.0000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/routing/input/fluxes_45.2500_45.0000 -------------------------------------------------------------------------------- /routing/input/fluxes_45.3750_45.1250: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/routing/input/fluxes_45.3750_45.1250 -------------------------------------------------------------------------------- /routing/model/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/routing/model/Makefile -------------------------------------------------------------------------------- /routing/model/init_routines.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/routing/model/init_routines.f -------------------------------------------------------------------------------- /routing/model/init_routines.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/routing/model/init_routines.o -------------------------------------------------------------------------------- /routing/model/reservoir.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/routing/model/reservoir.f -------------------------------------------------------------------------------- /routing/model/reservoir.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/routing/model/reservoir.o -------------------------------------------------------------------------------- /routing/model/rout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/routing/model/rout -------------------------------------------------------------------------------- /routing/model/rout.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/routing/model/rout.exe -------------------------------------------------------------------------------- /routing/model/rout.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/routing/model/rout.f -------------------------------------------------------------------------------- /routing/model/rout.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/routing/model/rout.o -------------------------------------------------------------------------------- /routing/model/unit_hyd_routines.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/routing/model/unit_hyd_routines.f -------------------------------------------------------------------------------- /routing/model/unit_hyd_routines.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/routing/model/unit_hyd_routines.o -------------------------------------------------------------------------------- /routing/model/write_routines.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/routing/model/write_routines.f -------------------------------------------------------------------------------- /routing/model/write_routines.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/routing/model/write_routines.o -------------------------------------------------------------------------------- /routing/output/OUTPUT.day: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/routing/output/OUTPUT.day -------------------------------------------------------------------------------- /routing/parameters/configuration.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/routing/parameters/configuration.txt -------------------------------------------------------------------------------- /routing/parameters/flowdirection.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/routing/parameters/flowdirection.txt -------------------------------------------------------------------------------- /routing/parameters/naturalized_flow/NF1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/routing/parameters/naturalized_flow/NF1.txt -------------------------------------------------------------------------------- /routing/parameters/naturalized_flow/search_catchment/RES_DIR_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/routing/parameters/naturalized_flow/search_catchment/RES_DIR_1.txt -------------------------------------------------------------------------------- /routing/parameters/reservoirlocation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/routing/parameters/reservoirlocation.txt -------------------------------------------------------------------------------- /routing/parameters/reservoirs/res_par/res1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/routing/parameters/reservoirs/res_par/res1.txt -------------------------------------------------------------------------------- /routing/parameters/reservoirs/res_par/res2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/routing/parameters/reservoirs/res_par/res2.txt -------------------------------------------------------------------------------- /routing/parameters/stations.txt: -------------------------------------------------------------------------------- 1 | 1 AT_LR 1 5 -9999 2 | NONE -------------------------------------------------------------------------------- /routing/parameters/unit_hydrograph/UH.all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/routing/parameters/unit_hydrograph/UH.all -------------------------------------------------------------------------------- /runoff/input/data_11.9189_107.9069: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/input/data_11.9189_107.9069 -------------------------------------------------------------------------------- /runoff/model/CalcAerodynamic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/CalcAerodynamic.c -------------------------------------------------------------------------------- /runoff/model/CalcBlowingSnow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/CalcBlowingSnow.c -------------------------------------------------------------------------------- /runoff/model/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/ChangeLog -------------------------------------------------------------------------------- /runoff/model/IceEnergyBalance.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/IceEnergyBalance.c -------------------------------------------------------------------------------- /runoff/model/LAKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/LAKE.h -------------------------------------------------------------------------------- /runoff/model/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/Makefile -------------------------------------------------------------------------------- /runoff/model/SnowPackEnergyBalance.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/SnowPackEnergyBalance.c -------------------------------------------------------------------------------- /runoff/model/StabilityCorrection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/StabilityCorrection.c -------------------------------------------------------------------------------- /runoff/model/advected_sensible_heat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/advected_sensible_heat.c -------------------------------------------------------------------------------- /runoff/model/alloc_atmos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/alloc_atmos.c -------------------------------------------------------------------------------- /runoff/model/alloc_veg_hist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/alloc_veg_hist.c -------------------------------------------------------------------------------- /runoff/model/arno_evap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/arno_evap.c -------------------------------------------------------------------------------- /runoff/model/calc_Nscale_factors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/calc_Nscale_factors.c -------------------------------------------------------------------------------- /runoff/model/calc_air_temperature.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/calc_air_temperature.c -------------------------------------------------------------------------------- /runoff/model/calc_atmos_energy_bal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/calc_atmos_energy_bal.c -------------------------------------------------------------------------------- /runoff/model/calc_longwave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/calc_longwave.c -------------------------------------------------------------------------------- /runoff/model/calc_rainonly.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/calc_rainonly.c -------------------------------------------------------------------------------- /runoff/model/calc_root_fraction.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/calc_root_fraction.c -------------------------------------------------------------------------------- /runoff/model/calc_snow_coverage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/calc_snow_coverage.c -------------------------------------------------------------------------------- /runoff/model/calc_surf_energy_bal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/calc_surf_energy_bal.c -------------------------------------------------------------------------------- /runoff/model/calc_veg_params.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/calc_veg_params.c -------------------------------------------------------------------------------- /runoff/model/calc_water_energy_balance_errors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/calc_water_energy_balance_errors.c -------------------------------------------------------------------------------- /runoff/model/canopy_assimilation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/canopy_assimilation.c -------------------------------------------------------------------------------- /runoff/model/canopy_evap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/canopy_evap.c -------------------------------------------------------------------------------- /runoff/model/check_files.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/check_files.c -------------------------------------------------------------------------------- /runoff/model/check_state_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/check_state_file.c -------------------------------------------------------------------------------- /runoff/model/close_files.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/close_files.c -------------------------------------------------------------------------------- /runoff/model/cmd_proc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/cmd_proc.c -------------------------------------------------------------------------------- /runoff/model/compress_files.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/compress_files.c -------------------------------------------------------------------------------- /runoff/model/compute_coszen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/compute_coszen.c -------------------------------------------------------------------------------- /runoff/model/compute_pot_evap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/compute_pot_evap.c -------------------------------------------------------------------------------- /runoff/model/compute_soil_resp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/compute_soil_resp.c -------------------------------------------------------------------------------- /runoff/model/compute_treeline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/compute_treeline.c -------------------------------------------------------------------------------- /runoff/model/compute_zwt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/compute_zwt.c -------------------------------------------------------------------------------- /runoff/model/correct_precip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/correct_precip.c -------------------------------------------------------------------------------- /runoff/model/display_current_settings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/display_current_settings.c -------------------------------------------------------------------------------- /runoff/model/estimate_T1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/estimate_T1.c -------------------------------------------------------------------------------- /runoff/model/faparl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/faparl.c -------------------------------------------------------------------------------- /runoff/model/free_all_vars.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/free_all_vars.c -------------------------------------------------------------------------------- /runoff/model/free_vegcon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/free_vegcon.c -------------------------------------------------------------------------------- /runoff/model/frozen_soil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/frozen_soil.c -------------------------------------------------------------------------------- /runoff/model/full_energy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/full_energy.c -------------------------------------------------------------------------------- /runoff/model/func_atmos_energy_bal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/func_atmos_energy_bal.c -------------------------------------------------------------------------------- /runoff/model/func_atmos_moist_bal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/func_atmos_moist_bal.c -------------------------------------------------------------------------------- /runoff/model/func_canopy_energy_bal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/func_canopy_energy_bal.c -------------------------------------------------------------------------------- /runoff/model/func_surf_energy_bal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/func_surf_energy_bal.c -------------------------------------------------------------------------------- /runoff/model/get_dist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/get_dist.c -------------------------------------------------------------------------------- /runoff/model/get_force_type.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/get_force_type.c -------------------------------------------------------------------------------- /runoff/model/get_global_param.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/get_global_param.c -------------------------------------------------------------------------------- /runoff/model/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/global.h -------------------------------------------------------------------------------- /runoff/model/ice_melt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/ice_melt.c -------------------------------------------------------------------------------- /runoff/model/initialize_atmos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/initialize_atmos.c -------------------------------------------------------------------------------- /runoff/model/initialize_global.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/initialize_global.c -------------------------------------------------------------------------------- /runoff/model/initialize_lake.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/initialize_lake.c -------------------------------------------------------------------------------- /runoff/model/initialize_model_state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/initialize_model_state.c -------------------------------------------------------------------------------- /runoff/model/initialize_snow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/initialize_snow.c -------------------------------------------------------------------------------- /runoff/model/initialize_soil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/initialize_soil.c -------------------------------------------------------------------------------- /runoff/model/initialize_veg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/initialize_veg.c -------------------------------------------------------------------------------- /runoff/model/lakes.eb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/lakes.eb.c -------------------------------------------------------------------------------- /runoff/model/latent_heat_from_snow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/latent_heat_from_snow.c -------------------------------------------------------------------------------- /runoff/model/make_all_vars.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/make_all_vars.c -------------------------------------------------------------------------------- /runoff/model/make_cell_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/make_cell_data.c -------------------------------------------------------------------------------- /runoff/model/make_dmy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/make_dmy.c -------------------------------------------------------------------------------- /runoff/model/make_energy_bal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/make_energy_bal.c -------------------------------------------------------------------------------- /runoff/model/make_in_and_outfiles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/make_in_and_outfiles.c -------------------------------------------------------------------------------- /runoff/model/make_snow_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/make_snow_data.c -------------------------------------------------------------------------------- /runoff/model/make_veg_var.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/make_veg_var.c -------------------------------------------------------------------------------- /runoff/model/massrelease.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/massrelease.c -------------------------------------------------------------------------------- /runoff/model/modify_Ksat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/modify_Ksat.c -------------------------------------------------------------------------------- /runoff/model/mtclim_constants_vic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/mtclim_constants_vic.h -------------------------------------------------------------------------------- /runoff/model/mtclim_parameters_vic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/mtclim_parameters_vic.h -------------------------------------------------------------------------------- /runoff/model/mtclim_vic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/mtclim_vic.c -------------------------------------------------------------------------------- /runoff/model/mtclim_wrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/mtclim_wrapper.c -------------------------------------------------------------------------------- /runoff/model/newt_raph_func_fast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/newt_raph_func_fast.c -------------------------------------------------------------------------------- /runoff/model/nrerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/nrerror.c -------------------------------------------------------------------------------- /runoff/model/open_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/open_file.c -------------------------------------------------------------------------------- /runoff/model/open_state_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/open_state_file.c -------------------------------------------------------------------------------- /runoff/model/output_list_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/output_list_utils.c -------------------------------------------------------------------------------- /runoff/model/parse_output_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/parse_output_info.c -------------------------------------------------------------------------------- /runoff/model/penman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/penman.c -------------------------------------------------------------------------------- /runoff/model/photosynth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/photosynth.c -------------------------------------------------------------------------------- /runoff/model/prepare_full_energy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/prepare_full_energy.c -------------------------------------------------------------------------------- /runoff/model/print_library.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/print_library.c -------------------------------------------------------------------------------- /runoff/model/put_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/put_data.c -------------------------------------------------------------------------------- /runoff/model/read_atmos_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/read_atmos_data.c -------------------------------------------------------------------------------- /runoff/model/read_forcing_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/read_forcing_data.c -------------------------------------------------------------------------------- /runoff/model/read_initial_model_state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/read_initial_model_state.c -------------------------------------------------------------------------------- /runoff/model/read_lakeparam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/read_lakeparam.c -------------------------------------------------------------------------------- /runoff/model/read_snowband.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/read_snowband.c -------------------------------------------------------------------------------- /runoff/model/read_soilparam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/read_soilparam.c -------------------------------------------------------------------------------- /runoff/model/read_veglib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/read_veglib.c -------------------------------------------------------------------------------- /runoff/model/read_vegparam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/read_vegparam.c -------------------------------------------------------------------------------- /runoff/model/root_brent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/root_brent.c -------------------------------------------------------------------------------- /runoff/model/runoff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/runoff.c -------------------------------------------------------------------------------- /runoff/model/set_output_defaults.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/set_output_defaults.c -------------------------------------------------------------------------------- /runoff/model/snow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/snow.h -------------------------------------------------------------------------------- /runoff/model/snow_intercept.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/snow_intercept.c -------------------------------------------------------------------------------- /runoff/model/snow_melt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/snow_melt.c -------------------------------------------------------------------------------- /runoff/model/snow_utility.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/snow_utility.c -------------------------------------------------------------------------------- /runoff/model/soil_carbon_balance.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/soil_carbon_balance.c -------------------------------------------------------------------------------- /runoff/model/soil_conduction.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/soil_conduction.c -------------------------------------------------------------------------------- /runoff/model/soil_thermal_eqn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/soil_thermal_eqn.c -------------------------------------------------------------------------------- /runoff/model/solve_snow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/solve_snow.c -------------------------------------------------------------------------------- /runoff/model/surface_fluxes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/surface_fluxes.c -------------------------------------------------------------------------------- /runoff/model/svp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/svp.c -------------------------------------------------------------------------------- /runoff/model/vicNl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/vicNl -------------------------------------------------------------------------------- /runoff/model/vicNl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/vicNl.c -------------------------------------------------------------------------------- /runoff/model/vicNl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/vicNl.h -------------------------------------------------------------------------------- /runoff/model/vicNl_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/vicNl_def.h -------------------------------------------------------------------------------- /runoff/model/vicerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/vicerror.c -------------------------------------------------------------------------------- /runoff/model/water_energy_balance.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/water_energy_balance.c -------------------------------------------------------------------------------- /runoff/model/water_under_ice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/water_under_ice.c -------------------------------------------------------------------------------- /runoff/model/write_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/write_data.c -------------------------------------------------------------------------------- /runoff/model/write_forcing_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/write_forcing_file.c -------------------------------------------------------------------------------- /runoff/model/write_header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/write_header.c -------------------------------------------------------------------------------- /runoff/model/write_layer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/write_layer.c -------------------------------------------------------------------------------- /runoff/model/write_model_state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/write_model_state.c -------------------------------------------------------------------------------- /runoff/model/write_vegvar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/model/write_vegvar.c -------------------------------------------------------------------------------- /runoff/output/fluxes_45.2500_45.0000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/output/fluxes_45.2500_45.0000 -------------------------------------------------------------------------------- /runoff/output/fluxes_45.3750_45.1250: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/output/fluxes_45.3750_45.1250 -------------------------------------------------------------------------------- /runoff/parameters/globalparam.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/parameters/globalparam.txt -------------------------------------------------------------------------------- /runoff/parameters/land.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/parameters/land.txt -------------------------------------------------------------------------------- /runoff/parameters/soil.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/parameters/soil.txt -------------------------------------------------------------------------------- /runoff/parameters/vegetlibrary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/runoff/parameters/vegetlibrary.txt -------------------------------------------------------------------------------- /toolbox/calibration/basin_calibration_eNSGAII.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/toolbox/calibration/basin_calibration_eNSGAII.py -------------------------------------------------------------------------------- /toolbox/calibration/calibration_setup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/toolbox/calibration/calibration_setup.txt -------------------------------------------------------------------------------- /toolbox/calibration/zone.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/toolbox/calibration/zone.txt -------------------------------------------------------------------------------- /toolbox/calibration/zone_calibration_eNSGAII.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/toolbox/calibration/zone_calibration_eNSGAII.py -------------------------------------------------------------------------------- /toolbox/optimization/optimization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/toolbox/optimization/optimization.py -------------------------------------------------------------------------------- /toolbox/optimization/reservoiroptimization.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/toolbox/optimization/reservoiroptimization.txt -------------------------------------------------------------------------------- /toolbox/optimization/reservoirwl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/toolbox/optimization/reservoirwl.txt -------------------------------------------------------------------------------- /toolbox/optimization/waterdemand.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/toolbox/optimization/waterdemand.txt -------------------------------------------------------------------------------- /toolbox/sensitivity/EET_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/toolbox/sensitivity/EET_analysis.py -------------------------------------------------------------------------------- /toolbox/sensitivity/EET_setup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/toolbox/sensitivity/EET_setup.txt -------------------------------------------------------------------------------- /toolbox/sensitivity/eFAST_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/toolbox/sensitivity/eFAST_analysis.py -------------------------------------------------------------------------------- /toolbox/sensitivity/eFAST_setup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/toolbox/sensitivity/eFAST_setup.txt -------------------------------------------------------------------------------- /toolbox/utils/VIC5_Inp_Prep/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/toolbox/utils/VIC5_Inp_Prep/README.md -------------------------------------------------------------------------------- /toolbox/utils/VIC5_Inp_Prep/lon_lat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/toolbox/utils/VIC5_Inp_Prep/lon_lat.txt -------------------------------------------------------------------------------- /toolbox/utils/VIC5_Inp_Prep/pre_atmosphere_pressure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/toolbox/utils/VIC5_Inp_Prep/pre_atmosphere_pressure.py -------------------------------------------------------------------------------- /toolbox/utils/VIC5_Inp_Prep/pre_precipitation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/toolbox/utils/VIC5_Inp_Prep/pre_precipitation.py -------------------------------------------------------------------------------- /toolbox/utils/VIC5_Inp_Prep/pre_radiation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/toolbox/utils/VIC5_Inp_Prep/pre_radiation.py -------------------------------------------------------------------------------- /toolbox/utils/VIC5_Inp_Prep/pre_temperature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/toolbox/utils/VIC5_Inp_Prep/pre_temperature.py -------------------------------------------------------------------------------- /toolbox/utils/VIC5_Inp_Prep/pre_vapor_pressure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/toolbox/utils/VIC5_Inp_Prep/pre_vapor_pressure.py -------------------------------------------------------------------------------- /toolbox/utils/VIC5_Inp_Prep/pre_wind_speed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/toolbox/utils/VIC5_Inp_Prep/pre_wind_speed.py -------------------------------------------------------------------------------- /toolbox/utils/VIC5_Inp_Prep/vic_inp_ascii.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/toolbox/utils/VIC5_Inp_Prep/vic_inp_ascii.py -------------------------------------------------------------------------------- /toolbox/utils/VIC5_Inp_Prep/vic_inp_netcdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/toolbox/utils/VIC5_Inp_Prep/vic_inp_netcdf.py -------------------------------------------------------------------------------- /toolbox/utils/prepare_vicres_forcing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Critical-Infrastructure-Systems-Lab/VICRes/HEAD/toolbox/utils/prepare_vicres_forcing.py --------------------------------------------------------------------------------