├── .Rbuildignore ├── .gitignore ├── .travis.yml ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── NEWS.md ├── R ├── RcppExports.R ├── datadoc.R ├── global_params.R ├── routing.R ├── sysdata.rda ├── utils.R └── vic.R ├── README.md ├── VICmodel.Rproj ├── cran-comments.md ├── data └── STEHE.rda ├── inst ├── COPYRIGHTS └── extdata │ ├── direc_STEHE.asc │ └── fract_STEHE.asc ├── man ├── Lohmann_UH.Rd ├── NSE.Rd ├── STEHE.Rd ├── read_veg_classic.Rd ├── vic.Rd ├── vic_param.Rd └── vic_version.Rd └── src ├── .gitignore ├── Makevars ├── Makevars.win ├── RcppExports.cpp ├── conv.cpp ├── display_current_settings.cpp ├── force.cpp ├── get_options.cpp ├── globals.cpp ├── initiate.cpp ├── make_output_info.cpp ├── make_params.cpp ├── vic ├── drivers │ └── shared_all │ │ ├── include │ │ ├── vic_driver_shared_all.h │ │ └── vic_version.h │ │ ├── readme.md │ │ └── src │ │ ├── .gitignore │ │ ├── agg_data.c │ │ ├── alarms.c │ │ ├── calc_root_fraction.c │ │ ├── cmd_proc.c │ │ ├── compress_files.c │ │ ├── compute_derived_state_vars.c │ │ ├── compute_lake_params.c │ │ ├── compute_treeline.c │ │ ├── forcing_utils.c │ │ ├── free_all_vars.c │ │ ├── free_vegcon.c │ │ ├── generate_default_lake_state.c │ │ ├── generate_default_state.c │ │ ├── get_parameters.c │ │ ├── history_metadata.c │ │ ├── initialize_energy.c │ │ ├── initialize_global.c │ │ ├── initialize_options.c │ │ ├── initialize_parameters.c │ │ ├── initialize_snow.c │ │ ├── initialize_soil.c │ │ ├── initialize_veg.c │ │ ├── input_tools.c │ │ ├── make_all_vars.c │ │ ├── make_cell_data.c │ │ ├── make_dmy.c │ │ ├── make_energy_bal.c │ │ ├── make_snow_data.c │ │ ├── make_veg_var.c │ │ ├── open_file.c │ │ ├── print_library_shared.c │ │ ├── put_data.c │ │ ├── set_output_defaults.c │ │ ├── soil_moisture_from_water_table.c │ │ ├── timing.c │ │ ├── update_step_vars.c │ │ ├── vic_history.c │ │ ├── vic_log.c │ │ ├── vic_time.c │ │ └── zero_output_list.c └── vic_run │ ├── include │ ├── vic_def.h │ ├── vic_log.h │ ├── vic_physical_constants.h │ └── vic_run.h │ └── src │ ├── .gitignore │ ├── CalcAerodynamic.c │ ├── CalcBlowingSnow.c │ ├── IceEnergyBalance.c │ ├── SnowPackEnergyBalance.c │ ├── StabilityCorrection.c │ ├── advected_sensible_heat.c │ ├── alloc_and_free.c │ ├── arno_evap.c │ ├── calc_Nscale_factors.c │ ├── calc_atmos_energy_bal.c │ ├── calc_gridcell_avg_albedo.c │ ├── calc_rainonly.c │ ├── calc_snow_coverage.c │ ├── calc_surf_energy_bal.c │ ├── calc_veg_params.c │ ├── canopy_assimilation.c │ ├── canopy_evap.c │ ├── comparisons.c │ ├── compute_coszen.c │ ├── compute_derived_lake_dimensions.c │ ├── compute_pot_evap.c │ ├── compute_soil_resp.c │ ├── compute_zwt.c │ ├── correct_precip.c │ ├── estimate_T1.c │ ├── faparl.c │ ├── frozen_soil.c │ ├── func_atmos_energy_bal.c │ ├── func_atmos_moist_bal.c │ ├── func_canopy_energy_bal.c │ ├── func_surf_energy_bal.c │ ├── ice_melt.c │ ├── initialize_lake.c │ ├── interpoloation.c │ ├── lake_utils.c │ ├── lakes.eb.c │ ├── latent_heat_from_snow.c │ ├── massrelease.c │ ├── newt_raph_func_fast.c │ ├── penman.c │ ├── photosynth.c │ ├── physics.c │ ├── prepare_full_energy.c │ ├── root_brent.c │ ├── runoff.c │ ├── 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 │ ├── vic_run.c │ ├── water_energy_balance.c │ ├── water_under_ice.c │ ├── write_layer.c │ └── write_vegvar.c ├── vic_R.h ├── vic_run_cell.cpp └── vic_version.cpp /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/.travis.yml -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/LICENSE -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/RcppExports.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/R/RcppExports.R -------------------------------------------------------------------------------- /R/datadoc.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/R/datadoc.R -------------------------------------------------------------------------------- /R/global_params.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/R/global_params.R -------------------------------------------------------------------------------- /R/routing.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/R/routing.R -------------------------------------------------------------------------------- /R/sysdata.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/R/sysdata.rda -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/R/utils.R -------------------------------------------------------------------------------- /R/vic.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/R/vic.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/README.md -------------------------------------------------------------------------------- /VICmodel.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/VICmodel.Rproj -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/cran-comments.md -------------------------------------------------------------------------------- /data/STEHE.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/data/STEHE.rda -------------------------------------------------------------------------------- /inst/COPYRIGHTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/inst/COPYRIGHTS -------------------------------------------------------------------------------- /inst/extdata/direc_STEHE.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/inst/extdata/direc_STEHE.asc -------------------------------------------------------------------------------- /inst/extdata/fract_STEHE.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/inst/extdata/fract_STEHE.asc -------------------------------------------------------------------------------- /man/Lohmann_UH.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/man/Lohmann_UH.Rd -------------------------------------------------------------------------------- /man/NSE.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/man/NSE.Rd -------------------------------------------------------------------------------- /man/STEHE.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/man/STEHE.Rd -------------------------------------------------------------------------------- /man/read_veg_classic.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/man/read_veg_classic.Rd -------------------------------------------------------------------------------- /man/vic.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/man/vic.Rd -------------------------------------------------------------------------------- /man/vic_param.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/man/vic_param.Rd -------------------------------------------------------------------------------- /man/vic_version.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/man/vic_version.Rd -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/.gitignore -------------------------------------------------------------------------------- /src/Makevars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/Makevars -------------------------------------------------------------------------------- /src/Makevars.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/Makevars.win -------------------------------------------------------------------------------- /src/RcppExports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/RcppExports.cpp -------------------------------------------------------------------------------- /src/conv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/conv.cpp -------------------------------------------------------------------------------- /src/display_current_settings.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | 4 | void display_current_settings(int mode) {} 5 | -------------------------------------------------------------------------------- /src/force.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/force.cpp -------------------------------------------------------------------------------- /src/get_options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/get_options.cpp -------------------------------------------------------------------------------- /src/globals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/globals.cpp -------------------------------------------------------------------------------- /src/initiate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/initiate.cpp -------------------------------------------------------------------------------- /src/make_output_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/make_output_info.cpp -------------------------------------------------------------------------------- /src/make_params.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/make_params.cpp -------------------------------------------------------------------------------- /src/vic/drivers/shared_all/include/vic_driver_shared_all.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/drivers/shared_all/include/vic_driver_shared_all.h -------------------------------------------------------------------------------- /src/vic/drivers/shared_all/include/vic_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/drivers/shared_all/include/vic_version.h -------------------------------------------------------------------------------- /src/vic/drivers/shared_all/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/drivers/shared_all/readme.md -------------------------------------------------------------------------------- /src/vic/drivers/shared_all/src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/drivers/shared_all/src/.gitignore -------------------------------------------------------------------------------- /src/vic/drivers/shared_all/src/agg_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/drivers/shared_all/src/agg_data.c -------------------------------------------------------------------------------- /src/vic/drivers/shared_all/src/alarms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/drivers/shared_all/src/alarms.c -------------------------------------------------------------------------------- /src/vic/drivers/shared_all/src/calc_root_fraction.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/drivers/shared_all/src/calc_root_fraction.c -------------------------------------------------------------------------------- /src/vic/drivers/shared_all/src/cmd_proc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/drivers/shared_all/src/cmd_proc.c -------------------------------------------------------------------------------- /src/vic/drivers/shared_all/src/compress_files.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/drivers/shared_all/src/compress_files.c -------------------------------------------------------------------------------- /src/vic/drivers/shared_all/src/compute_derived_state_vars.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/drivers/shared_all/src/compute_derived_state_vars.c -------------------------------------------------------------------------------- /src/vic/drivers/shared_all/src/compute_lake_params.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/drivers/shared_all/src/compute_lake_params.c -------------------------------------------------------------------------------- /src/vic/drivers/shared_all/src/compute_treeline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/drivers/shared_all/src/compute_treeline.c -------------------------------------------------------------------------------- /src/vic/drivers/shared_all/src/forcing_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/drivers/shared_all/src/forcing_utils.c -------------------------------------------------------------------------------- /src/vic/drivers/shared_all/src/free_all_vars.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/drivers/shared_all/src/free_all_vars.c -------------------------------------------------------------------------------- /src/vic/drivers/shared_all/src/free_vegcon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/drivers/shared_all/src/free_vegcon.c -------------------------------------------------------------------------------- /src/vic/drivers/shared_all/src/generate_default_lake_state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/drivers/shared_all/src/generate_default_lake_state.c -------------------------------------------------------------------------------- /src/vic/drivers/shared_all/src/generate_default_state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/drivers/shared_all/src/generate_default_state.c -------------------------------------------------------------------------------- /src/vic/drivers/shared_all/src/get_parameters.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/drivers/shared_all/src/get_parameters.c -------------------------------------------------------------------------------- /src/vic/drivers/shared_all/src/history_metadata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/drivers/shared_all/src/history_metadata.c -------------------------------------------------------------------------------- /src/vic/drivers/shared_all/src/initialize_energy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/drivers/shared_all/src/initialize_energy.c -------------------------------------------------------------------------------- /src/vic/drivers/shared_all/src/initialize_global.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/drivers/shared_all/src/initialize_global.c -------------------------------------------------------------------------------- /src/vic/drivers/shared_all/src/initialize_options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/drivers/shared_all/src/initialize_options.c -------------------------------------------------------------------------------- /src/vic/drivers/shared_all/src/initialize_parameters.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/drivers/shared_all/src/initialize_parameters.c -------------------------------------------------------------------------------- /src/vic/drivers/shared_all/src/initialize_snow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/drivers/shared_all/src/initialize_snow.c -------------------------------------------------------------------------------- /src/vic/drivers/shared_all/src/initialize_soil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/drivers/shared_all/src/initialize_soil.c -------------------------------------------------------------------------------- /src/vic/drivers/shared_all/src/initialize_veg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/drivers/shared_all/src/initialize_veg.c -------------------------------------------------------------------------------- /src/vic/drivers/shared_all/src/input_tools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/drivers/shared_all/src/input_tools.c -------------------------------------------------------------------------------- /src/vic/drivers/shared_all/src/make_all_vars.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/drivers/shared_all/src/make_all_vars.c -------------------------------------------------------------------------------- /src/vic/drivers/shared_all/src/make_cell_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/drivers/shared_all/src/make_cell_data.c -------------------------------------------------------------------------------- /src/vic/drivers/shared_all/src/make_dmy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/drivers/shared_all/src/make_dmy.c -------------------------------------------------------------------------------- /src/vic/drivers/shared_all/src/make_energy_bal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/drivers/shared_all/src/make_energy_bal.c -------------------------------------------------------------------------------- /src/vic/drivers/shared_all/src/make_snow_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/drivers/shared_all/src/make_snow_data.c -------------------------------------------------------------------------------- /src/vic/drivers/shared_all/src/make_veg_var.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/drivers/shared_all/src/make_veg_var.c -------------------------------------------------------------------------------- /src/vic/drivers/shared_all/src/open_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/drivers/shared_all/src/open_file.c -------------------------------------------------------------------------------- /src/vic/drivers/shared_all/src/print_library_shared.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/drivers/shared_all/src/print_library_shared.c -------------------------------------------------------------------------------- /src/vic/drivers/shared_all/src/put_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/drivers/shared_all/src/put_data.c -------------------------------------------------------------------------------- /src/vic/drivers/shared_all/src/set_output_defaults.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/drivers/shared_all/src/set_output_defaults.c -------------------------------------------------------------------------------- /src/vic/drivers/shared_all/src/soil_moisture_from_water_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/drivers/shared_all/src/soil_moisture_from_water_table.c -------------------------------------------------------------------------------- /src/vic/drivers/shared_all/src/timing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/drivers/shared_all/src/timing.c -------------------------------------------------------------------------------- /src/vic/drivers/shared_all/src/update_step_vars.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/drivers/shared_all/src/update_step_vars.c -------------------------------------------------------------------------------- /src/vic/drivers/shared_all/src/vic_history.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/drivers/shared_all/src/vic_history.c -------------------------------------------------------------------------------- /src/vic/drivers/shared_all/src/vic_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/drivers/shared_all/src/vic_log.c -------------------------------------------------------------------------------- /src/vic/drivers/shared_all/src/vic_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/drivers/shared_all/src/vic_time.c -------------------------------------------------------------------------------- /src/vic/drivers/shared_all/src/zero_output_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/drivers/shared_all/src/zero_output_list.c -------------------------------------------------------------------------------- /src/vic/vic_run/include/vic_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/vic_run/include/vic_def.h -------------------------------------------------------------------------------- /src/vic/vic_run/include/vic_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/vic_run/include/vic_log.h -------------------------------------------------------------------------------- /src/vic/vic_run/include/vic_physical_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/vic_run/include/vic_physical_constants.h -------------------------------------------------------------------------------- /src/vic/vic_run/include/vic_run.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/vic_run/include/vic_run.h -------------------------------------------------------------------------------- /src/vic/vic_run/src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/vic_run/src/.gitignore -------------------------------------------------------------------------------- /src/vic/vic_run/src/CalcAerodynamic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/vic_run/src/CalcAerodynamic.c -------------------------------------------------------------------------------- /src/vic/vic_run/src/CalcBlowingSnow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/vic_run/src/CalcBlowingSnow.c -------------------------------------------------------------------------------- /src/vic/vic_run/src/IceEnergyBalance.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/vic_run/src/IceEnergyBalance.c -------------------------------------------------------------------------------- /src/vic/vic_run/src/SnowPackEnergyBalance.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/vic_run/src/SnowPackEnergyBalance.c -------------------------------------------------------------------------------- /src/vic/vic_run/src/StabilityCorrection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/vic_run/src/StabilityCorrection.c -------------------------------------------------------------------------------- /src/vic/vic_run/src/advected_sensible_heat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/vic_run/src/advected_sensible_heat.c -------------------------------------------------------------------------------- /src/vic/vic_run/src/alloc_and_free.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/vic_run/src/alloc_and_free.c -------------------------------------------------------------------------------- /src/vic/vic_run/src/arno_evap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/vic_run/src/arno_evap.c -------------------------------------------------------------------------------- /src/vic/vic_run/src/calc_Nscale_factors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/vic_run/src/calc_Nscale_factors.c -------------------------------------------------------------------------------- /src/vic/vic_run/src/calc_atmos_energy_bal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/vic_run/src/calc_atmos_energy_bal.c -------------------------------------------------------------------------------- /src/vic/vic_run/src/calc_gridcell_avg_albedo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/vic_run/src/calc_gridcell_avg_albedo.c -------------------------------------------------------------------------------- /src/vic/vic_run/src/calc_rainonly.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/vic_run/src/calc_rainonly.c -------------------------------------------------------------------------------- /src/vic/vic_run/src/calc_snow_coverage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/vic_run/src/calc_snow_coverage.c -------------------------------------------------------------------------------- /src/vic/vic_run/src/calc_surf_energy_bal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/vic_run/src/calc_surf_energy_bal.c -------------------------------------------------------------------------------- /src/vic/vic_run/src/calc_veg_params.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/vic_run/src/calc_veg_params.c -------------------------------------------------------------------------------- /src/vic/vic_run/src/canopy_assimilation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/vic_run/src/canopy_assimilation.c -------------------------------------------------------------------------------- /src/vic/vic_run/src/canopy_evap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/vic_run/src/canopy_evap.c -------------------------------------------------------------------------------- /src/vic/vic_run/src/comparisons.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/vic_run/src/comparisons.c -------------------------------------------------------------------------------- /src/vic/vic_run/src/compute_coszen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/vic_run/src/compute_coszen.c -------------------------------------------------------------------------------- /src/vic/vic_run/src/compute_derived_lake_dimensions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/vic_run/src/compute_derived_lake_dimensions.c -------------------------------------------------------------------------------- /src/vic/vic_run/src/compute_pot_evap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/vic_run/src/compute_pot_evap.c -------------------------------------------------------------------------------- /src/vic/vic_run/src/compute_soil_resp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/vic_run/src/compute_soil_resp.c -------------------------------------------------------------------------------- /src/vic/vic_run/src/compute_zwt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/vic_run/src/compute_zwt.c -------------------------------------------------------------------------------- /src/vic/vic_run/src/correct_precip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/vic_run/src/correct_precip.c -------------------------------------------------------------------------------- /src/vic/vic_run/src/estimate_T1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/vic_run/src/estimate_T1.c -------------------------------------------------------------------------------- /src/vic/vic_run/src/faparl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/vic_run/src/faparl.c -------------------------------------------------------------------------------- /src/vic/vic_run/src/frozen_soil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/vic_run/src/frozen_soil.c -------------------------------------------------------------------------------- /src/vic/vic_run/src/func_atmos_energy_bal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/vic_run/src/func_atmos_energy_bal.c -------------------------------------------------------------------------------- /src/vic/vic_run/src/func_atmos_moist_bal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/vic_run/src/func_atmos_moist_bal.c -------------------------------------------------------------------------------- /src/vic/vic_run/src/func_canopy_energy_bal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/vic_run/src/func_canopy_energy_bal.c -------------------------------------------------------------------------------- /src/vic/vic_run/src/func_surf_energy_bal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/vic_run/src/func_surf_energy_bal.c -------------------------------------------------------------------------------- /src/vic/vic_run/src/ice_melt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/vic_run/src/ice_melt.c -------------------------------------------------------------------------------- /src/vic/vic_run/src/initialize_lake.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/vic_run/src/initialize_lake.c -------------------------------------------------------------------------------- /src/vic/vic_run/src/interpoloation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/vic_run/src/interpoloation.c -------------------------------------------------------------------------------- /src/vic/vic_run/src/lake_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/vic_run/src/lake_utils.c -------------------------------------------------------------------------------- /src/vic/vic_run/src/lakes.eb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/vic_run/src/lakes.eb.c -------------------------------------------------------------------------------- /src/vic/vic_run/src/latent_heat_from_snow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/vic_run/src/latent_heat_from_snow.c -------------------------------------------------------------------------------- /src/vic/vic_run/src/massrelease.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/vic_run/src/massrelease.c -------------------------------------------------------------------------------- /src/vic/vic_run/src/newt_raph_func_fast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/vic_run/src/newt_raph_func_fast.c -------------------------------------------------------------------------------- /src/vic/vic_run/src/penman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/vic_run/src/penman.c -------------------------------------------------------------------------------- /src/vic/vic_run/src/photosynth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/vic_run/src/photosynth.c -------------------------------------------------------------------------------- /src/vic/vic_run/src/physics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/vic_run/src/physics.c -------------------------------------------------------------------------------- /src/vic/vic_run/src/prepare_full_energy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/vic_run/src/prepare_full_energy.c -------------------------------------------------------------------------------- /src/vic/vic_run/src/root_brent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/vic_run/src/root_brent.c -------------------------------------------------------------------------------- /src/vic/vic_run/src/runoff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/vic_run/src/runoff.c -------------------------------------------------------------------------------- /src/vic/vic_run/src/snow_intercept.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/vic_run/src/snow_intercept.c -------------------------------------------------------------------------------- /src/vic/vic_run/src/snow_melt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/vic_run/src/snow_melt.c -------------------------------------------------------------------------------- /src/vic/vic_run/src/snow_utility.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/vic_run/src/snow_utility.c -------------------------------------------------------------------------------- /src/vic/vic_run/src/soil_carbon_balance.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/vic_run/src/soil_carbon_balance.c -------------------------------------------------------------------------------- /src/vic/vic_run/src/soil_conduction.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/vic_run/src/soil_conduction.c -------------------------------------------------------------------------------- /src/vic/vic_run/src/soil_thermal_eqn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/vic_run/src/soil_thermal_eqn.c -------------------------------------------------------------------------------- /src/vic/vic_run/src/solve_snow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/vic_run/src/solve_snow.c -------------------------------------------------------------------------------- /src/vic/vic_run/src/surface_fluxes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/vic_run/src/surface_fluxes.c -------------------------------------------------------------------------------- /src/vic/vic_run/src/svp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/vic_run/src/svp.c -------------------------------------------------------------------------------- /src/vic/vic_run/src/vic_run.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/vic_run/src/vic_run.c -------------------------------------------------------------------------------- /src/vic/vic_run/src/water_energy_balance.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/vic_run/src/water_energy_balance.c -------------------------------------------------------------------------------- /src/vic/vic_run/src/water_under_ice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/vic_run/src/water_under_ice.c -------------------------------------------------------------------------------- /src/vic/vic_run/src/write_layer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/vic_run/src/write_layer.c -------------------------------------------------------------------------------- /src/vic/vic_run/src/write_vegvar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic/vic_run/src/write_vegvar.c -------------------------------------------------------------------------------- /src/vic_R.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic_R.h -------------------------------------------------------------------------------- /src/vic_run_cell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic_run_cell.cpp -------------------------------------------------------------------------------- /src/vic_version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sibada/VICmodel/HEAD/src/vic_version.cpp --------------------------------------------------------------------------------