├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── documentation_improvement.md │ ├── feature_request.md │ └── submit_query.md └── workflows │ ├── building.yml │ ├── documenting.yml │ ├── linting.yml │ ├── releasing.yml │ ├── testing.yml │ └── typing.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── docs ├── CONTRIBUTING.md ├── api │ ├── calibration.md │ ├── data_manager.md │ ├── performance_metrics.md │ ├── sensitivity_analyzer.md │ └── txtinout_reader.md ├── changelog.md ├── index.md ├── requirements-docs.txt └── userguide │ ├── data_analysis.md │ ├── model_calibration.md │ ├── sensitivity_interface.md │ └── swatplus_simulation.md ├── mkdocs.yml ├── pySWATPlus ├── __init__.py ├── calibration.py ├── cpu.py ├── data_manager.py ├── newtype.py ├── performance_metrics.py ├── sensitivity_analyzer.py ├── txtinout_reader.py ├── utils.py └── validators.py ├── pyproject.toml ├── requirements-mypy.txt ├── requirements.txt ├── setup.cfg └── tests ├── TxtInOut ├── SWIFT │ ├── aqu_dr.swf │ ├── chan_dat.swf │ ├── chan_dr.swf │ ├── file_cio.swf │ ├── hru_dat.swf │ ├── hru_exco.swf │ ├── hru_wet.swf │ ├── precip.swf │ ├── res_dat.swf │ └── res_dr.swf ├── __warnings.txt ├── a_observe_discharge_daily.csv ├── a_observe_discharge_monthly.csv ├── aqu_catunit.ele ├── aquifer.aqu ├── aquifer.con ├── area_calc.out ├── basin_carbon_all.txt ├── basin_totc.txt ├── bmpuser.str ├── cal_parms.cal ├── chandeg.con ├── channel-lte.cha ├── checker.out ├── chem_app.ops ├── cntable.lum ├── co2.out ├── codes.bsn ├── cons_practice.lum ├── cs_aqu.ini ├── cs_channel.ini ├── cs_hru.ini ├── diagnostics.out ├── erosion.out ├── erosion.txt ├── fertilizer.frt ├── field.fld ├── file.cio ├── files_out.out ├── filterstrip.str ├── fire.ops ├── fort.7777 ├── fort.7778 ├── grassedww.str ├── graze.ops ├── harv.ops ├── hmd.cli ├── hru-data.hru ├── hru.con ├── hru_cbn_lyr.txt ├── hru_orgc.txt ├── hru_plc_stat.txt ├── hru_resc_stat.txt ├── hru_soilc_stat.txt ├── hru_totc.txt ├── hyd-sed-lte.cha ├── hydrology.hyd ├── hydrology.res ├── hydrology.wet ├── initial.aqu ├── initial.cha ├── initial.res ├── irr.ops ├── landuse.lum ├── ls_unit.def ├── ls_unit.ele ├── lu_change_out.txt ├── lum.dtl ├── nutrients.cha ├── nutrients.res ├── nutrients.sol ├── object.cnt ├── om_water.ini ├── ovn_table.lum ├── p12.pcp ├── p13.pcp ├── p14.pcp ├── p15.pcp ├── p16.pcp ├── p18.pcp ├── p19.pcp ├── p2.pcp ├── p20.pcp ├── p21.pcp ├── p22.pcp ├── p25.pcp ├── p26.pcp ├── p27.pcp ├── p28.pcp ├── p29.pcp ├── p32.pcp ├── p33.pcp ├── p8.pcp ├── p9.pcp ├── parameters.bsn ├── pcp.cli ├── pesticide.pes ├── plant.ini ├── plants.plt ├── print.prt ├── r12.hmd ├── r13.hmd ├── r14.hmd ├── r15.hmd ├── r16.hmd ├── r18.hmd ├── r19.hmd ├── r2.hmd ├── r20.hmd ├── r21.hmd ├── r22.hmd ├── r25.hmd ├── r26.hmd ├── r27.hmd ├── r28.hmd ├── r29.hmd ├── r32.hmd ├── r33.hmd ├── r8.hmd ├── r9.hmd ├── res_rel.dtl ├── reservoir.con ├── reservoir.res ├── reservoir_sed.txt ├── rev61.0.1_64rel.exe ├── rout_unit.con ├── rout_unit.def ├── rout_unit.ele ├── rout_unit.rtu ├── salt_aqu.ini ├── salt_channel.ini ├── salt_hru.ini ├── sediment.res ├── septic.sep ├── septic.str ├── simulation.out ├── slr.cli ├── snow.sno ├── soil_plant.ini ├── soils.sol ├── sr12.slr ├── sr13.slr ├── sr14.slr ├── sr15.slr ├── sr16.slr ├── sr18.slr ├── sr19.slr ├── sr2.slr ├── sr20.slr ├── sr21.slr ├── sr22.slr ├── sr25.slr ├── sr26.slr ├── sr27.slr ├── sr28.slr ├── sr29.slr ├── sr32.slr ├── sr33.slr ├── sr8.slr ├── sr9.slr ├── success.fin ├── swatplus-61.0.1-lin ├── sweep.ops ├── t12.tmp ├── t13.tmp ├── t14.tmp ├── t15.tmp ├── t16.tmp ├── t18.tmp ├── t19.tmp ├── t2.tmp ├── t20.tmp ├── t21.tmp ├── t22.tmp ├── t25.tmp ├── t26.tmp ├── t27.tmp ├── t28.tmp ├── t29.tmp ├── t32.tmp ├── t33.tmp ├── t8.tmp ├── t9.tmp ├── tiledrain.str ├── tillage.til ├── time.sim ├── tmp.cli ├── topography.hyd ├── treatment.trt ├── urban.urb ├── weather-sta.cli ├── weather-wgn.cli ├── weir.res ├── wetland.wet ├── zerror_aa.csv ├── zrecall_day.txt ├── zrecall_mon.txt └── zrecall_yr.txt ├── test_calibration.py ├── test_data_manager.py ├── test_newtype.py ├── test_sensitivity_analyzer.py ├── test_txtinout_reader.py ├── test_utils.py └── test_validators.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation_improvement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/.github/ISSUE_TEMPLATE/documentation_improvement.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/submit_query.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/.github/ISSUE_TEMPLATE/submit_query.md -------------------------------------------------------------------------------- /.github/workflows/building.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/.github/workflows/building.yml -------------------------------------------------------------------------------- /.github/workflows/documenting.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/.github/workflows/documenting.yml -------------------------------------------------------------------------------- /.github/workflows/linting.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/.github/workflows/linting.yml -------------------------------------------------------------------------------- /.github/workflows/releasing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/.github/workflows/releasing.yml -------------------------------------------------------------------------------- /.github/workflows/testing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/.github/workflows/testing.yml -------------------------------------------------------------------------------- /.github/workflows/typing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/.github/workflows/typing.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/README.md -------------------------------------------------------------------------------- /docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/api/calibration.md: -------------------------------------------------------------------------------- 1 | ::: pySWATPlus.Calibration 2 | 3 | -------------------------------------------------------------------------------- /docs/api/data_manager.md: -------------------------------------------------------------------------------- 1 | ::: pySWATPlus.DataManager 2 | 3 | -------------------------------------------------------------------------------- /docs/api/performance_metrics.md: -------------------------------------------------------------------------------- 1 | ::: pySWATPlus.PerformanceMetrics 2 | 3 | -------------------------------------------------------------------------------- /docs/api/sensitivity_analyzer.md: -------------------------------------------------------------------------------- 1 | ::: pySWATPlus.SensitivityAnalyzer 2 | 3 | -------------------------------------------------------------------------------- /docs/api/txtinout_reader.md: -------------------------------------------------------------------------------- 1 | ::: pySWATPlus.TxtinoutReader 2 | -------------------------------------------------------------------------------- /docs/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/docs/changelog.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/requirements-docs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/docs/requirements-docs.txt -------------------------------------------------------------------------------- /docs/userguide/data_analysis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/docs/userguide/data_analysis.md -------------------------------------------------------------------------------- /docs/userguide/model_calibration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/docs/userguide/model_calibration.md -------------------------------------------------------------------------------- /docs/userguide/sensitivity_interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/docs/userguide/sensitivity_interface.md -------------------------------------------------------------------------------- /docs/userguide/swatplus_simulation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/docs/userguide/swatplus_simulation.md -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /pySWATPlus/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/pySWATPlus/__init__.py -------------------------------------------------------------------------------- /pySWATPlus/calibration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/pySWATPlus/calibration.py -------------------------------------------------------------------------------- /pySWATPlus/cpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/pySWATPlus/cpu.py -------------------------------------------------------------------------------- /pySWATPlus/data_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/pySWATPlus/data_manager.py -------------------------------------------------------------------------------- /pySWATPlus/newtype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/pySWATPlus/newtype.py -------------------------------------------------------------------------------- /pySWATPlus/performance_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/pySWATPlus/performance_metrics.py -------------------------------------------------------------------------------- /pySWATPlus/sensitivity_analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/pySWATPlus/sensitivity_analyzer.py -------------------------------------------------------------------------------- /pySWATPlus/txtinout_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/pySWATPlus/txtinout_reader.py -------------------------------------------------------------------------------- /pySWATPlus/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/pySWATPlus/utils.py -------------------------------------------------------------------------------- /pySWATPlus/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/pySWATPlus/validators.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements-mypy.txt: -------------------------------------------------------------------------------- 1 | mypy 2 | pydantic -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/setup.cfg -------------------------------------------------------------------------------- /tests/TxtInOut/SWIFT/aqu_dr.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/SWIFT/aqu_dr.swf -------------------------------------------------------------------------------- /tests/TxtInOut/SWIFT/chan_dat.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/SWIFT/chan_dat.swf -------------------------------------------------------------------------------- /tests/TxtInOut/SWIFT/chan_dr.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/SWIFT/chan_dr.swf -------------------------------------------------------------------------------- /tests/TxtInOut/SWIFT/file_cio.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/SWIFT/file_cio.swf -------------------------------------------------------------------------------- /tests/TxtInOut/SWIFT/hru_dat.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/SWIFT/hru_dat.swf -------------------------------------------------------------------------------- /tests/TxtInOut/SWIFT/hru_exco.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/SWIFT/hru_exco.swf -------------------------------------------------------------------------------- /tests/TxtInOut/SWIFT/hru_wet.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/SWIFT/hru_wet.swf -------------------------------------------------------------------------------- /tests/TxtInOut/SWIFT/precip.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/SWIFT/precip.swf -------------------------------------------------------------------------------- /tests/TxtInOut/SWIFT/res_dat.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/SWIFT/res_dat.swf -------------------------------------------------------------------------------- /tests/TxtInOut/SWIFT/res_dr.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/SWIFT/res_dr.swf -------------------------------------------------------------------------------- /tests/TxtInOut/__warnings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/__warnings.txt -------------------------------------------------------------------------------- /tests/TxtInOut/a_observe_discharge_daily.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/a_observe_discharge_daily.csv -------------------------------------------------------------------------------- /tests/TxtInOut/a_observe_discharge_monthly.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/a_observe_discharge_monthly.csv -------------------------------------------------------------------------------- /tests/TxtInOut/aqu_catunit.ele: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/aqu_catunit.ele -------------------------------------------------------------------------------- /tests/TxtInOut/aquifer.aqu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/aquifer.aqu -------------------------------------------------------------------------------- /tests/TxtInOut/aquifer.con: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/aquifer.con -------------------------------------------------------------------------------- /tests/TxtInOut/area_calc.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/area_calc.out -------------------------------------------------------------------------------- /tests/TxtInOut/basin_carbon_all.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/basin_carbon_all.txt -------------------------------------------------------------------------------- /tests/TxtInOut/basin_totc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/basin_totc.txt -------------------------------------------------------------------------------- /tests/TxtInOut/bmpuser.str: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/bmpuser.str -------------------------------------------------------------------------------- /tests/TxtInOut/cal_parms.cal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/cal_parms.cal -------------------------------------------------------------------------------- /tests/TxtInOut/chandeg.con: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/chandeg.con -------------------------------------------------------------------------------- /tests/TxtInOut/channel-lte.cha: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/channel-lte.cha -------------------------------------------------------------------------------- /tests/TxtInOut/checker.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/checker.out -------------------------------------------------------------------------------- /tests/TxtInOut/chem_app.ops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/chem_app.ops -------------------------------------------------------------------------------- /tests/TxtInOut/cntable.lum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/cntable.lum -------------------------------------------------------------------------------- /tests/TxtInOut/co2.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/co2.out -------------------------------------------------------------------------------- /tests/TxtInOut/codes.bsn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/codes.bsn -------------------------------------------------------------------------------- /tests/TxtInOut/cons_practice.lum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/cons_practice.lum -------------------------------------------------------------------------------- /tests/TxtInOut/cs_aqu.ini: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/TxtInOut/cs_channel.ini: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/TxtInOut/cs_hru.ini: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/TxtInOut/diagnostics.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/diagnostics.out -------------------------------------------------------------------------------- /tests/TxtInOut/erosion.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/erosion.out -------------------------------------------------------------------------------- /tests/TxtInOut/erosion.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/TxtInOut/fertilizer.frt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/fertilizer.frt -------------------------------------------------------------------------------- /tests/TxtInOut/field.fld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/field.fld -------------------------------------------------------------------------------- /tests/TxtInOut/file.cio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/file.cio -------------------------------------------------------------------------------- /tests/TxtInOut/files_out.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/files_out.out -------------------------------------------------------------------------------- /tests/TxtInOut/filterstrip.str: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/filterstrip.str -------------------------------------------------------------------------------- /tests/TxtInOut/fire.ops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/fire.ops -------------------------------------------------------------------------------- /tests/TxtInOut/fort.7777: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/fort.7777 -------------------------------------------------------------------------------- /tests/TxtInOut/fort.7778: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/fort.7778 -------------------------------------------------------------------------------- /tests/TxtInOut/grassedww.str: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/grassedww.str -------------------------------------------------------------------------------- /tests/TxtInOut/graze.ops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/graze.ops -------------------------------------------------------------------------------- /tests/TxtInOut/harv.ops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/harv.ops -------------------------------------------------------------------------------- /tests/TxtInOut/hmd.cli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/hmd.cli -------------------------------------------------------------------------------- /tests/TxtInOut/hru-data.hru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/hru-data.hru -------------------------------------------------------------------------------- /tests/TxtInOut/hru.con: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/hru.con -------------------------------------------------------------------------------- /tests/TxtInOut/hru_cbn_lyr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/hru_cbn_lyr.txt -------------------------------------------------------------------------------- /tests/TxtInOut/hru_orgc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/hru_orgc.txt -------------------------------------------------------------------------------- /tests/TxtInOut/hru_plc_stat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/hru_plc_stat.txt -------------------------------------------------------------------------------- /tests/TxtInOut/hru_resc_stat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/hru_resc_stat.txt -------------------------------------------------------------------------------- /tests/TxtInOut/hru_soilc_stat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/hru_soilc_stat.txt -------------------------------------------------------------------------------- /tests/TxtInOut/hru_totc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/hru_totc.txt -------------------------------------------------------------------------------- /tests/TxtInOut/hyd-sed-lte.cha: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/hyd-sed-lte.cha -------------------------------------------------------------------------------- /tests/TxtInOut/hydrology.hyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/hydrology.hyd -------------------------------------------------------------------------------- /tests/TxtInOut/hydrology.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/hydrology.res -------------------------------------------------------------------------------- /tests/TxtInOut/hydrology.wet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/hydrology.wet -------------------------------------------------------------------------------- /tests/TxtInOut/initial.aqu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/initial.aqu -------------------------------------------------------------------------------- /tests/TxtInOut/initial.cha: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/initial.cha -------------------------------------------------------------------------------- /tests/TxtInOut/initial.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/initial.res -------------------------------------------------------------------------------- /tests/TxtInOut/irr.ops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/irr.ops -------------------------------------------------------------------------------- /tests/TxtInOut/landuse.lum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/landuse.lum -------------------------------------------------------------------------------- /tests/TxtInOut/ls_unit.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/ls_unit.def -------------------------------------------------------------------------------- /tests/TxtInOut/ls_unit.ele: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/ls_unit.ele -------------------------------------------------------------------------------- /tests/TxtInOut/lu_change_out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/lu_change_out.txt -------------------------------------------------------------------------------- /tests/TxtInOut/lum.dtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/lum.dtl -------------------------------------------------------------------------------- /tests/TxtInOut/nutrients.cha: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/nutrients.cha -------------------------------------------------------------------------------- /tests/TxtInOut/nutrients.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/nutrients.res -------------------------------------------------------------------------------- /tests/TxtInOut/nutrients.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/nutrients.sol -------------------------------------------------------------------------------- /tests/TxtInOut/object.cnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/object.cnt -------------------------------------------------------------------------------- /tests/TxtInOut/om_water.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/om_water.ini -------------------------------------------------------------------------------- /tests/TxtInOut/ovn_table.lum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/ovn_table.lum -------------------------------------------------------------------------------- /tests/TxtInOut/p12.pcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/p12.pcp -------------------------------------------------------------------------------- /tests/TxtInOut/p13.pcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/p13.pcp -------------------------------------------------------------------------------- /tests/TxtInOut/p14.pcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/p14.pcp -------------------------------------------------------------------------------- /tests/TxtInOut/p15.pcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/p15.pcp -------------------------------------------------------------------------------- /tests/TxtInOut/p16.pcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/p16.pcp -------------------------------------------------------------------------------- /tests/TxtInOut/p18.pcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/p18.pcp -------------------------------------------------------------------------------- /tests/TxtInOut/p19.pcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/p19.pcp -------------------------------------------------------------------------------- /tests/TxtInOut/p2.pcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/p2.pcp -------------------------------------------------------------------------------- /tests/TxtInOut/p20.pcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/p20.pcp -------------------------------------------------------------------------------- /tests/TxtInOut/p21.pcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/p21.pcp -------------------------------------------------------------------------------- /tests/TxtInOut/p22.pcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/p22.pcp -------------------------------------------------------------------------------- /tests/TxtInOut/p25.pcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/p25.pcp -------------------------------------------------------------------------------- /tests/TxtInOut/p26.pcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/p26.pcp -------------------------------------------------------------------------------- /tests/TxtInOut/p27.pcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/p27.pcp -------------------------------------------------------------------------------- /tests/TxtInOut/p28.pcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/p28.pcp -------------------------------------------------------------------------------- /tests/TxtInOut/p29.pcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/p29.pcp -------------------------------------------------------------------------------- /tests/TxtInOut/p32.pcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/p32.pcp -------------------------------------------------------------------------------- /tests/TxtInOut/p33.pcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/p33.pcp -------------------------------------------------------------------------------- /tests/TxtInOut/p8.pcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/p8.pcp -------------------------------------------------------------------------------- /tests/TxtInOut/p9.pcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/p9.pcp -------------------------------------------------------------------------------- /tests/TxtInOut/parameters.bsn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/parameters.bsn -------------------------------------------------------------------------------- /tests/TxtInOut/pcp.cli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/pcp.cli -------------------------------------------------------------------------------- /tests/TxtInOut/pesticide.pes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/pesticide.pes -------------------------------------------------------------------------------- /tests/TxtInOut/plant.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/plant.ini -------------------------------------------------------------------------------- /tests/TxtInOut/plants.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/plants.plt -------------------------------------------------------------------------------- /tests/TxtInOut/print.prt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/print.prt -------------------------------------------------------------------------------- /tests/TxtInOut/r12.hmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/r12.hmd -------------------------------------------------------------------------------- /tests/TxtInOut/r13.hmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/r13.hmd -------------------------------------------------------------------------------- /tests/TxtInOut/r14.hmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/r14.hmd -------------------------------------------------------------------------------- /tests/TxtInOut/r15.hmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/r15.hmd -------------------------------------------------------------------------------- /tests/TxtInOut/r16.hmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/r16.hmd -------------------------------------------------------------------------------- /tests/TxtInOut/r18.hmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/r18.hmd -------------------------------------------------------------------------------- /tests/TxtInOut/r19.hmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/r19.hmd -------------------------------------------------------------------------------- /tests/TxtInOut/r2.hmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/r2.hmd -------------------------------------------------------------------------------- /tests/TxtInOut/r20.hmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/r20.hmd -------------------------------------------------------------------------------- /tests/TxtInOut/r21.hmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/r21.hmd -------------------------------------------------------------------------------- /tests/TxtInOut/r22.hmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/r22.hmd -------------------------------------------------------------------------------- /tests/TxtInOut/r25.hmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/r25.hmd -------------------------------------------------------------------------------- /tests/TxtInOut/r26.hmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/r26.hmd -------------------------------------------------------------------------------- /tests/TxtInOut/r27.hmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/r27.hmd -------------------------------------------------------------------------------- /tests/TxtInOut/r28.hmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/r28.hmd -------------------------------------------------------------------------------- /tests/TxtInOut/r29.hmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/r29.hmd -------------------------------------------------------------------------------- /tests/TxtInOut/r32.hmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/r32.hmd -------------------------------------------------------------------------------- /tests/TxtInOut/r33.hmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/r33.hmd -------------------------------------------------------------------------------- /tests/TxtInOut/r8.hmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/r8.hmd -------------------------------------------------------------------------------- /tests/TxtInOut/r9.hmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/r9.hmd -------------------------------------------------------------------------------- /tests/TxtInOut/res_rel.dtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/res_rel.dtl -------------------------------------------------------------------------------- /tests/TxtInOut/reservoir.con: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/reservoir.con -------------------------------------------------------------------------------- /tests/TxtInOut/reservoir.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/reservoir.res -------------------------------------------------------------------------------- /tests/TxtInOut/reservoir_sed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/reservoir_sed.txt -------------------------------------------------------------------------------- /tests/TxtInOut/rev61.0.1_64rel.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/rev61.0.1_64rel.exe -------------------------------------------------------------------------------- /tests/TxtInOut/rout_unit.con: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/rout_unit.con -------------------------------------------------------------------------------- /tests/TxtInOut/rout_unit.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/rout_unit.def -------------------------------------------------------------------------------- /tests/TxtInOut/rout_unit.ele: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/rout_unit.ele -------------------------------------------------------------------------------- /tests/TxtInOut/rout_unit.rtu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/rout_unit.rtu -------------------------------------------------------------------------------- /tests/TxtInOut/salt_aqu.ini: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/TxtInOut/salt_channel.ini: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/TxtInOut/salt_hru.ini: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/TxtInOut/sediment.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/sediment.res -------------------------------------------------------------------------------- /tests/TxtInOut/septic.sep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/septic.sep -------------------------------------------------------------------------------- /tests/TxtInOut/septic.str: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/septic.str -------------------------------------------------------------------------------- /tests/TxtInOut/simulation.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/simulation.out -------------------------------------------------------------------------------- /tests/TxtInOut/slr.cli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/slr.cli -------------------------------------------------------------------------------- /tests/TxtInOut/snow.sno: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/snow.sno -------------------------------------------------------------------------------- /tests/TxtInOut/soil_plant.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/soil_plant.ini -------------------------------------------------------------------------------- /tests/TxtInOut/soils.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/soils.sol -------------------------------------------------------------------------------- /tests/TxtInOut/sr12.slr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/sr12.slr -------------------------------------------------------------------------------- /tests/TxtInOut/sr13.slr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/sr13.slr -------------------------------------------------------------------------------- /tests/TxtInOut/sr14.slr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/sr14.slr -------------------------------------------------------------------------------- /tests/TxtInOut/sr15.slr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/sr15.slr -------------------------------------------------------------------------------- /tests/TxtInOut/sr16.slr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/sr16.slr -------------------------------------------------------------------------------- /tests/TxtInOut/sr18.slr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/sr18.slr -------------------------------------------------------------------------------- /tests/TxtInOut/sr19.slr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/sr19.slr -------------------------------------------------------------------------------- /tests/TxtInOut/sr2.slr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/sr2.slr -------------------------------------------------------------------------------- /tests/TxtInOut/sr20.slr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/sr20.slr -------------------------------------------------------------------------------- /tests/TxtInOut/sr21.slr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/sr21.slr -------------------------------------------------------------------------------- /tests/TxtInOut/sr22.slr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/sr22.slr -------------------------------------------------------------------------------- /tests/TxtInOut/sr25.slr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/sr25.slr -------------------------------------------------------------------------------- /tests/TxtInOut/sr26.slr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/sr26.slr -------------------------------------------------------------------------------- /tests/TxtInOut/sr27.slr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/sr27.slr -------------------------------------------------------------------------------- /tests/TxtInOut/sr28.slr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/sr28.slr -------------------------------------------------------------------------------- /tests/TxtInOut/sr29.slr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/sr29.slr -------------------------------------------------------------------------------- /tests/TxtInOut/sr32.slr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/sr32.slr -------------------------------------------------------------------------------- /tests/TxtInOut/sr33.slr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/sr33.slr -------------------------------------------------------------------------------- /tests/TxtInOut/sr8.slr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/sr8.slr -------------------------------------------------------------------------------- /tests/TxtInOut/sr9.slr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/sr9.slr -------------------------------------------------------------------------------- /tests/TxtInOut/success.fin: -------------------------------------------------------------------------------- 1 | 2 | Execution successfully completed 3 | -------------------------------------------------------------------------------- /tests/TxtInOut/swatplus-61.0.1-lin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/swatplus-61.0.1-lin -------------------------------------------------------------------------------- /tests/TxtInOut/sweep.ops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/sweep.ops -------------------------------------------------------------------------------- /tests/TxtInOut/t12.tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/t12.tmp -------------------------------------------------------------------------------- /tests/TxtInOut/t13.tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/t13.tmp -------------------------------------------------------------------------------- /tests/TxtInOut/t14.tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/t14.tmp -------------------------------------------------------------------------------- /tests/TxtInOut/t15.tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/t15.tmp -------------------------------------------------------------------------------- /tests/TxtInOut/t16.tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/t16.tmp -------------------------------------------------------------------------------- /tests/TxtInOut/t18.tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/t18.tmp -------------------------------------------------------------------------------- /tests/TxtInOut/t19.tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/t19.tmp -------------------------------------------------------------------------------- /tests/TxtInOut/t2.tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/t2.tmp -------------------------------------------------------------------------------- /tests/TxtInOut/t20.tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/t20.tmp -------------------------------------------------------------------------------- /tests/TxtInOut/t21.tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/t21.tmp -------------------------------------------------------------------------------- /tests/TxtInOut/t22.tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/t22.tmp -------------------------------------------------------------------------------- /tests/TxtInOut/t25.tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/t25.tmp -------------------------------------------------------------------------------- /tests/TxtInOut/t26.tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/t26.tmp -------------------------------------------------------------------------------- /tests/TxtInOut/t27.tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/t27.tmp -------------------------------------------------------------------------------- /tests/TxtInOut/t28.tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/t28.tmp -------------------------------------------------------------------------------- /tests/TxtInOut/t29.tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/t29.tmp -------------------------------------------------------------------------------- /tests/TxtInOut/t32.tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/t32.tmp -------------------------------------------------------------------------------- /tests/TxtInOut/t33.tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/t33.tmp -------------------------------------------------------------------------------- /tests/TxtInOut/t8.tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/t8.tmp -------------------------------------------------------------------------------- /tests/TxtInOut/t9.tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/t9.tmp -------------------------------------------------------------------------------- /tests/TxtInOut/tiledrain.str: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/tiledrain.str -------------------------------------------------------------------------------- /tests/TxtInOut/tillage.til: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/tillage.til -------------------------------------------------------------------------------- /tests/TxtInOut/time.sim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/time.sim -------------------------------------------------------------------------------- /tests/TxtInOut/tmp.cli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/tmp.cli -------------------------------------------------------------------------------- /tests/TxtInOut/topography.hyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/topography.hyd -------------------------------------------------------------------------------- /tests/TxtInOut/treatment.trt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/TxtInOut/urban.urb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/urban.urb -------------------------------------------------------------------------------- /tests/TxtInOut/weather-sta.cli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/weather-sta.cli -------------------------------------------------------------------------------- /tests/TxtInOut/weather-wgn.cli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/weather-wgn.cli -------------------------------------------------------------------------------- /tests/TxtInOut/weir.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/weir.res -------------------------------------------------------------------------------- /tests/TxtInOut/wetland.wet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/wetland.wet -------------------------------------------------------------------------------- /tests/TxtInOut/zerror_aa.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/zerror_aa.csv -------------------------------------------------------------------------------- /tests/TxtInOut/zrecall_day.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/zrecall_day.txt -------------------------------------------------------------------------------- /tests/TxtInOut/zrecall_mon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/zrecall_mon.txt -------------------------------------------------------------------------------- /tests/TxtInOut/zrecall_yr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/TxtInOut/zrecall_yr.txt -------------------------------------------------------------------------------- /tests/test_calibration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/test_calibration.py -------------------------------------------------------------------------------- /tests/test_data_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/test_data_manager.py -------------------------------------------------------------------------------- /tests/test_newtype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/test_newtype.py -------------------------------------------------------------------------------- /tests/test_sensitivity_analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/test_sensitivity_analyzer.py -------------------------------------------------------------------------------- /tests/test_txtinout_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/test_txtinout_reader.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tests/test_validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swat-model/pySWATPlus/HEAD/tests/test_validators.py --------------------------------------------------------------------------------