├── .coveragerc ├── .flake8 ├── .gitattributes ├── .github ├── CODEOWNERS ├── dependabot.yml └── workflows │ ├── build_docs.yaml │ ├── release.yml │ ├── test.yaml │ └── test_releases.yml ├── .gitignore ├── .pre-commit-config.yaml ├── DISCLAIMER.md ├── LICENSE.md ├── MANIFEST.in ├── Readme.md ├── bin ├── linux │ ├── mf6 │ ├── mfnwt │ └── zbud6 ├── mac │ ├── mf6 │ ├── mfnwt │ └── zbud6 └── win │ ├── mf6.exe │ ├── mfnwt.exe │ └── zbud6.exe ├── binder ├── environment.yml ├── postBuild └── start ├── ci └── test_environment.yaml ├── code.json ├── docs ├── Makefile ├── make.bat └── source │ ├── 10min.rst │ ├── _static │ ├── .placeholder │ └── fig1_pleasant_lake_model.jpg │ ├── api │ ├── index.rst │ ├── mfsetup.discretization.rst │ ├── mfsetup.fileio.rst │ ├── mfsetup.grid.rst │ ├── mfsetup.interpolate.rst │ ├── mfsetup.mf6model.rst │ ├── mfsetup.mfmodel.rst │ ├── mfsetup.mfnwtmodel.rst │ ├── mfsetup.tdis.rst │ └── mfsetup.tmr.rst │ ├── concepts │ ├── index.rst │ ├── interp.rst │ ├── lgr.rst │ └── perimeter-bcs.rst │ ├── conf.py │ ├── config-file-defaults.rst │ ├── config-file-gallery.rst │ ├── config-file.rst │ ├── contributing.rst │ ├── examples.rst │ ├── index.rst │ ├── input │ ├── basic-stress.rst │ ├── dis.rst │ ├── ic.rst │ ├── index.rst │ ├── lak.rst │ ├── obs.rst │ ├── oc.rst │ ├── props.rst │ └── sfr.rst │ ├── installation.rst │ ├── philosophy.rst │ ├── pleasant-example.rst │ ├── references.rst │ ├── release-history.rst │ ├── structure.rst │ └── troubleshooting.rst ├── examples ├── Pleasant_lake_lgr_example.ipynb ├── data │ └── pleasant │ │ ├── external │ │ ├── CHD_0000.dat │ │ ├── CHD_0001.dat │ │ ├── CHD_0002.dat │ │ ├── CHD_0003.dat │ │ ├── CHD_0004.dat │ │ ├── CHD_0005.dat │ │ ├── CHD_0006.dat │ │ ├── CHD_0007.dat │ │ ├── CHD_0008.dat │ │ ├── CHD_0009.dat │ │ ├── CHD_0010.dat │ │ ├── CHD_0011.dat │ │ ├── CHD_0012.dat │ │ ├── WEL_0000.dat │ │ ├── WEL_0001.dat │ │ ├── WEL_0002.dat │ │ ├── WEL_0003.dat │ │ ├── WEL_0004.dat │ │ ├── WEL_0005.dat │ │ ├── WEL_0006.dat │ │ ├── WEL_0007.dat │ │ ├── WEL_0008.dat │ │ ├── WEL_0009.dat │ │ ├── WEL_0010.dat │ │ ├── WEL_0011.dat │ │ ├── WEL_0012.dat │ │ ├── botm0.dat │ │ ├── botm1.dat │ │ ├── botm2.dat │ │ ├── botm3.dat │ │ ├── delc.ref │ │ ├── delr.ref │ │ ├── finf0.dat │ │ ├── finf1.dat │ │ ├── finf10.dat │ │ ├── finf11.dat │ │ ├── finf12.dat │ │ ├── finf2.dat │ │ ├── finf3.dat │ │ ├── finf4.dat │ │ ├── finf5.dat │ │ ├── finf6.dat │ │ ├── finf7.dat │ │ ├── finf8.dat │ │ ├── finf9.dat │ │ ├── hk0.dat │ │ ├── hk1.dat │ │ ├── hk2.dat │ │ ├── hk3.dat │ │ ├── ibound0.dat │ │ ├── ibound1.dat │ │ ├── ibound2.dat │ │ ├── ibound3.dat │ │ ├── ss0.dat │ │ ├── ss1.dat │ │ ├── ss2.dat │ │ ├── ss3.dat │ │ ├── strt0.dat │ │ ├── strt1.dat │ │ ├── strt2.dat │ │ ├── strt3.dat │ │ ├── sy0.dat │ │ ├── sy1.dat │ │ ├── sy2.dat │ │ ├── sy3.dat │ │ ├── top.dat │ │ ├── vka0.dat │ │ ├── vka1.dat │ │ ├── vka2.dat │ │ └── vka3.dat │ │ ├── grid.json │ │ ├── pleasant.bas │ │ ├── pleasant.cbc │ │ ├── pleasant.chd │ │ ├── pleasant.dis │ │ ├── pleasant.hds │ │ ├── pleasant.list │ │ ├── pleasant.nam │ │ ├── pleasant.nwt │ │ ├── pleasant.oc │ │ ├── pleasant.rch │ │ ├── pleasant.sfr │ │ ├── pleasant.sfr.out │ │ ├── pleasant.upw │ │ ├── pleasant.wel │ │ ├── postproc │ │ └── shps │ │ │ ├── pleasant_bbox.dbf │ │ │ ├── pleasant_bbox.prj │ │ │ ├── pleasant_bbox.shp │ │ │ └── pleasant_bbox.shx │ │ └── source_data │ │ ├── PRISM_ppt_tmean_stable_4km_189501_201901_43.9850_-89.5522.csv │ │ ├── rasters │ │ ├── botm0.tif │ │ ├── botm1.tif │ │ ├── botm2.tif │ │ ├── botm3.tif │ │ ├── dem40m.tif │ │ └── pleasant_bathymetry.tif │ │ ├── shps │ │ ├── NHDPlusAttributes │ │ │ ├── PlusFlow.dbf │ │ │ ├── PlusFlowlineVAA.dbf │ │ │ └── elevslope.dbf │ │ ├── NHDSnapshot │ │ │ └── Hydrography │ │ │ │ ├── NHDFlowline.dbf │ │ │ │ ├── NHDFlowline.prj │ │ │ │ ├── NHDFlowline.shp │ │ │ │ └── NHDFlowline.shx │ │ ├── all_lakes.dbf │ │ ├── all_lakes.prj │ │ ├── all_lakes.shp │ │ ├── all_lakes.shx │ │ ├── csls_sources_wu_pts.dbf │ │ ├── csls_sources_wu_pts.shp │ │ ├── csls_sources_wu_pts.shx │ │ ├── ghb_lake.dbf │ │ ├── ghb_lake.prj │ │ ├── ghb_lake.shp │ │ ├── ghb_lake.shx │ │ ├── wood_lake.dbf │ │ ├── wood_lake.prj │ │ ├── wood_lake.shp │ │ └── wood_lake.shx │ │ └── tables │ │ ├── area_stage_vol_Pleasant.csv │ │ ├── gages.csv │ │ ├── lake_sites.csv │ │ ├── master_wu.csv │ │ ├── nwis_heads_info_file.csv │ │ ├── streambed_elevations.csv │ │ ├── uwsp_heads.csv │ │ ├── wdnr_gw_sites.csv │ │ └── wgnhs_head_targets.csv ├── initial_config_box.yaml ├── initial_config_full.yaml ├── initial_config_poly.yaml ├── initial_grid_setup.py ├── initial_model_setup.py ├── pleasant_lgr_inset.yml ├── pleasant_lgr_parent.yml └── update_starting_heads_from_previous.py ├── gis.yml ├── make_release.sh ├── mfsetup ├── __init__.py ├── _version.py ├── bcs.py ├── checks.py ├── config.py ├── discretization.py ├── equality.py ├── evaporation.py ├── fileio.py ├── grid.py ├── ic.py ├── interpolate.py ├── lakes.py ├── mf5to6.py ├── mf6_defaults.yml ├── mf6model.py ├── mfmodel.py ├── mfnwt_defaults.yml ├── mfnwtmodel.py ├── model_version.py ├── mover.py ├── obs.py ├── oc.py ├── sourcedata.py ├── sourcemodel.py ├── tdis.py ├── test_tmr_export_models.ipynb ├── testing.py ├── tests │ ├── __init__.py │ ├── conftest.py │ ├── data │ │ ├── RGN_rjh_3_23_18.NWT │ │ ├── pfl_nwt_test.yml │ │ ├── plainfieldlakes │ │ │ ├── external │ │ │ │ ├── CHD_0000.dat │ │ │ │ ├── WEL_0000.dat │ │ │ │ ├── botm0.dat │ │ │ │ ├── botm1.dat │ │ │ │ ├── botm2.dat │ │ │ │ ├── botm3.dat │ │ │ │ ├── delc.ref │ │ │ │ ├── delr.ref │ │ │ │ ├── finf0.dat │ │ │ │ ├── hk0.dat │ │ │ │ ├── hk1.dat │ │ │ │ ├── hk2.dat │ │ │ │ ├── hk3.dat │ │ │ │ ├── ibound0.dat │ │ │ │ ├── ibound1.dat │ │ │ │ ├── ibound2.dat │ │ │ │ ├── ibound3.dat │ │ │ │ ├── strt0.dat │ │ │ │ ├── strt1.dat │ │ │ │ ├── strt2.dat │ │ │ │ ├── strt3.dat │ │ │ │ ├── top.dat │ │ │ │ ├── vka0.dat │ │ │ │ ├── vka1.dat │ │ │ │ ├── vka2.dat │ │ │ │ └── vka3.dat │ │ │ ├── grid.json │ │ │ ├── pfl.bas │ │ │ ├── pfl.cbc │ │ │ ├── pfl.chd │ │ │ ├── pfl.dis │ │ │ ├── pfl.hds │ │ │ ├── pfl.nam │ │ │ ├── pfl.nwt │ │ │ ├── pfl.oc │ │ │ ├── pfl.rch │ │ │ ├── pfl.upw │ │ │ ├── pfl.wel │ │ │ └── source_data │ │ │ │ ├── added_wells.csv │ │ │ │ ├── all_lakes.dbf │ │ │ │ ├── all_lakes.prj │ │ │ │ ├── all_lakes.shp │ │ │ │ ├── all_lakes.shx │ │ │ │ ├── all_lakes_stage_area_volume.csv │ │ │ │ ├── dem10m.tif │ │ │ │ ├── lake_sites.csv │ │ │ │ ├── master_wu.csv │ │ │ │ ├── net_infiltration__2012-01-01_to_2017-12-31__1066_by_1145__SUM__INCHES_PER_YEAR.tif │ │ │ │ ├── nwis_heads_info_file.csv │ │ │ │ ├── pfl_bathymetry.tif │ │ │ │ ├── uwsp_heads.csv │ │ │ │ ├── wdnr_gw_sites.csv │ │ │ │ ├── wu_points.dbf │ │ │ │ ├── wu_points.prj │ │ │ │ ├── wu_points.shp │ │ │ │ └── wu_points.shx │ │ ├── pleasant_mf6_test.yml │ │ ├── pleasant_nwt_test.yml │ │ ├── pleasant_vertical_lgr_inset.yml │ │ ├── pleasant_vertical_lgr_parent.yml │ │ ├── shellmound.yml │ │ ├── shellmound │ │ │ ├── net_infiltration__2000-01-01_to_2017-12-31__414_by_394.nc │ │ │ ├── rasters │ │ │ │ ├── k0.tif │ │ │ │ ├── k1.tif │ │ │ │ ├── k10.tif │ │ │ │ ├── k11.tif │ │ │ │ ├── k12.tif │ │ │ │ ├── k2.tif │ │ │ │ ├── k3.tif │ │ │ │ ├── k330.tif │ │ │ │ ├── k331.tif │ │ │ │ ├── k3310.tif │ │ │ │ ├── k3311.tif │ │ │ │ ├── k3312.tif │ │ │ │ ├── k332.tif │ │ │ │ ├── k333.tif │ │ │ │ ├── k334.tif │ │ │ │ ├── k335.tif │ │ │ │ ├── k336.tif │ │ │ │ ├── k337.tif │ │ │ │ ├── k338.tif │ │ │ │ ├── k339.tif │ │ │ │ ├── k4.tif │ │ │ │ ├── k5.tif │ │ │ │ ├── k6.tif │ │ │ │ ├── k7.tif │ │ │ │ ├── k8.tif │ │ │ │ ├── k9.tif │ │ │ │ ├── lcaq_surf.tif │ │ │ │ ├── lccu_surf.tif │ │ │ │ ├── lwaq_surf.tif │ │ │ │ ├── mcaq_surf.tif │ │ │ │ ├── mccu_surf.tif │ │ │ │ ├── mdwy_surf.tif │ │ │ │ ├── meras_100m_dem.tif │ │ │ │ ├── mwaq_surf.tif │ │ │ │ ├── ucaq_surf.tif │ │ │ │ └── vkbg_surf.tif │ │ │ ├── shps │ │ │ │ ├── active_area.dbf │ │ │ │ ├── active_area.prj │ │ │ │ ├── active_area.shp │ │ │ │ ├── active_area.shx │ │ │ │ ├── flowlines.dbf │ │ │ │ ├── flowlines.prj │ │ │ │ ├── flowlines.shp │ │ │ │ ├── flowlines.shx │ │ │ │ ├── waterbodies.dbf │ │ │ │ ├── waterbodies.prj │ │ │ │ ├── waterbodies.shp │ │ │ │ └── waterbodies.shx │ │ │ ├── tables │ │ │ │ ├── 1998-2007_avg_pumping_from_meras21_m3.csv │ │ │ │ ├── chd_heads.csv │ │ │ │ ├── flowline_routing.csv │ │ │ │ ├── head_obs_well_info.csv │ │ │ │ ├── head_obs_well_info2.csv │ │ │ │ ├── inflows.csv │ │ │ │ ├── iwum_m3_1M.csv │ │ │ │ ├── iwum_m3_6M.csv │ │ │ │ ├── observations.csv │ │ │ │ ├── preprocessed_head_obs_info.csv │ │ │ │ ├── sp69_pumping_from_meras21_m3.csv │ │ │ │ └── swb_runoff_by_nhdplus_comid_m3d.csv │ │ │ └── tmr_parent │ │ │ │ ├── external │ │ │ │ ├── botm0.dat │ │ │ │ ├── botm1.dat │ │ │ │ ├── botm10.dat │ │ │ │ ├── botm11.dat │ │ │ │ ├── botm12.dat │ │ │ │ ├── botm2.dat │ │ │ │ ├── botm3.dat │ │ │ │ ├── botm4.dat │ │ │ │ ├── botm5.dat │ │ │ │ ├── botm6.dat │ │ │ │ ├── botm7.dat │ │ │ │ ├── botm8.dat │ │ │ │ ├── botm9.dat │ │ │ │ ├── idomain0.dat │ │ │ │ ├── idomain1.dat │ │ │ │ ├── idomain10.dat │ │ │ │ ├── idomain11.dat │ │ │ │ ├── idomain12.dat │ │ │ │ ├── idomain2.dat │ │ │ │ ├── idomain3.dat │ │ │ │ ├── idomain4.dat │ │ │ │ ├── idomain5.dat │ │ │ │ ├── idomain6.dat │ │ │ │ ├── idomain7.dat │ │ │ │ ├── idomain8.dat │ │ │ │ ├── idomain9.dat │ │ │ │ ├── irch.dat │ │ │ │ ├── k0.dat │ │ │ │ ├── k1.dat │ │ │ │ ├── k10.dat │ │ │ │ ├── k11.dat │ │ │ │ ├── k12.dat │ │ │ │ ├── k2.dat │ │ │ │ ├── k3.dat │ │ │ │ ├── k330.dat │ │ │ │ ├── k331.dat │ │ │ │ ├── k3310.dat │ │ │ │ ├── k3311.dat │ │ │ │ ├── k3312.dat │ │ │ │ ├── k332.dat │ │ │ │ ├── k333.dat │ │ │ │ ├── k334.dat │ │ │ │ ├── k335.dat │ │ │ │ ├── k336.dat │ │ │ │ ├── k337.dat │ │ │ │ ├── k338.dat │ │ │ │ ├── k339.dat │ │ │ │ ├── k4.dat │ │ │ │ ├── k5.dat │ │ │ │ ├── k6.dat │ │ │ │ ├── k7.dat │ │ │ │ ├── k8.dat │ │ │ │ ├── k9.dat │ │ │ │ ├── rch0.dat │ │ │ │ ├── rch1.dat │ │ │ │ ├── rch10.dat │ │ │ │ ├── rch11.dat │ │ │ │ ├── rch12.dat │ │ │ │ ├── rch13.dat │ │ │ │ ├── rch14.dat │ │ │ │ ├── rch15.dat │ │ │ │ ├── rch16.dat │ │ │ │ ├── rch17.dat │ │ │ │ ├── rch18.dat │ │ │ │ ├── rch2.dat │ │ │ │ ├── rch3.dat │ │ │ │ ├── rch4.dat │ │ │ │ ├── rch5.dat │ │ │ │ ├── rch6.dat │ │ │ │ ├── rch7.dat │ │ │ │ ├── rch8.dat │ │ │ │ ├── rch9.dat │ │ │ │ ├── ss0.dat │ │ │ │ ├── ss1.dat │ │ │ │ ├── ss10.dat │ │ │ │ ├── ss11.dat │ │ │ │ ├── ss12.dat │ │ │ │ ├── ss2.dat │ │ │ │ ├── ss3.dat │ │ │ │ ├── ss4.dat │ │ │ │ ├── ss5.dat │ │ │ │ ├── ss6.dat │ │ │ │ ├── ss7.dat │ │ │ │ ├── ss8.dat │ │ │ │ ├── ss9.dat │ │ │ │ ├── strt0.dat │ │ │ │ ├── strt1.dat │ │ │ │ ├── strt10.dat │ │ │ │ ├── strt11.dat │ │ │ │ ├── strt12.dat │ │ │ │ ├── strt2.dat │ │ │ │ ├── strt3.dat │ │ │ │ ├── strt4.dat │ │ │ │ ├── strt5.dat │ │ │ │ ├── strt6.dat │ │ │ │ ├── strt7.dat │ │ │ │ ├── strt8.dat │ │ │ │ ├── strt9.dat │ │ │ │ ├── sy0.dat │ │ │ │ ├── sy1.dat │ │ │ │ ├── sy10.dat │ │ │ │ ├── sy11.dat │ │ │ │ ├── sy12.dat │ │ │ │ ├── sy2.dat │ │ │ │ ├── sy3.dat │ │ │ │ ├── sy4.dat │ │ │ │ ├── sy5.dat │ │ │ │ ├── sy6.dat │ │ │ │ ├── sy7.dat │ │ │ │ ├── sy8.dat │ │ │ │ ├── sy9.dat │ │ │ │ └── top.dat │ │ │ │ ├── gis │ │ │ │ ├── irregular_boundary.dbf │ │ │ │ ├── irregular_boundary.prj │ │ │ │ ├── irregular_boundary.shp │ │ │ │ └── irregular_boundary.shx │ │ │ │ ├── mfsim.ims │ │ │ │ ├── mfsim.lst │ │ │ │ ├── mfsim.nam │ │ │ │ ├── mfsim.tdis │ │ │ │ ├── postproc │ │ │ │ └── shps │ │ │ │ │ ├── shellmound_bbox.dbf │ │ │ │ │ ├── shellmound_bbox.prj │ │ │ │ │ ├── shellmound_bbox.shp │ │ │ │ │ └── shellmound_bbox.shx │ │ │ │ ├── shellmound.cbc │ │ │ │ ├── shellmound.dis │ │ │ │ ├── shellmound.dis.grb │ │ │ │ ├── shellmound.hds │ │ │ │ ├── shellmound.head.obs │ │ │ │ ├── shellmound.ic │ │ │ │ ├── shellmound.list │ │ │ │ ├── shellmound.nam │ │ │ │ ├── shellmound.npf │ │ │ │ ├── shellmound.obs │ │ │ │ ├── shellmound.oc │ │ │ │ ├── shellmound.rcha │ │ │ │ ├── shellmound.sfr │ │ │ │ ├── shellmound.sfr.out.bin │ │ │ │ ├── shellmound.sfr.stage.bin │ │ │ │ ├── shellmound.sto │ │ │ │ ├── shellmound.wel │ │ │ │ ├── shellmound_grid.json │ │ │ │ ├── shellmound_wel_lookup.csv │ │ │ │ └── tables │ │ │ │ └── stress_period_data.csv │ │ ├── shellmound_flat_layers.yml │ │ └── shellmound_tmr_inset.yml │ ├── plot.py │ ├── test_bcs.py │ ├── test_config.py │ ├── test_discretization.py │ ├── test_equality.py │ ├── test_evaporation.py │ ├── test_fileio.py │ ├── test_get_data_from_parent.py │ ├── test_get_model_version.py │ ├── test_grid.py │ ├── test_ic.py │ ├── test_import.py │ ├── test_interpolation.py │ ├── test_lakes.py │ ├── test_lgr.py │ ├── test_mf5to6.py │ ├── test_mf6_shellmound.py │ ├── test_mf6_shellmound_mixed_layers.py │ ├── test_mf6_shellmound_rot_grid.py │ ├── test_mf6_tmr_shellmound.py │ ├── test_mover.py │ ├── test_notebooks.py │ ├── test_obs.py │ ├── test_oc.py │ ├── test_pfl_mfnwt_inset.py │ ├── test_pleasant_mf6_inset.py │ ├── test_pleasant_mfnwt_inset.py │ ├── test_solver_setup.py │ ├── test_sourcedata.py │ ├── test_tdis.py │ ├── test_testing.py │ ├── test_tmr.py │ ├── test_units.py │ ├── test_usage.py │ ├── test_utils.py │ ├── test_wateruse.py │ └── test_wells.py ├── tmr.py ├── units.py ├── utils.py ├── wateruse.py ├── wells.py └── zbud.py ├── pyproject.toml ├── setup.py └── versioneer.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/.coveragerc -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/.flake8 -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | mfsetup/_version.py export-subst 2 | -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | @aleaf 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build_docs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/.github/workflows/build_docs.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.github/workflows/test_releases.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/.github/workflows/test_releases.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /DISCLAIMER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/DISCLAIMER.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/LICENSE.md -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/Readme.md -------------------------------------------------------------------------------- /bin/linux/mf6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/bin/linux/mf6 -------------------------------------------------------------------------------- /bin/linux/mfnwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/bin/linux/mfnwt -------------------------------------------------------------------------------- /bin/linux/zbud6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/bin/linux/zbud6 -------------------------------------------------------------------------------- /bin/mac/mf6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/bin/mac/mf6 -------------------------------------------------------------------------------- /bin/mac/mfnwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/bin/mac/mfnwt -------------------------------------------------------------------------------- /bin/mac/zbud6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/bin/mac/zbud6 -------------------------------------------------------------------------------- /bin/win/mf6.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/bin/win/mf6.exe -------------------------------------------------------------------------------- /bin/win/mfnwt.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/bin/win/mfnwt.exe -------------------------------------------------------------------------------- /bin/win/zbud6.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/bin/win/zbud6.exe -------------------------------------------------------------------------------- /binder/environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/binder/environment.yml -------------------------------------------------------------------------------- /binder/postBuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/binder/postBuild -------------------------------------------------------------------------------- /binder/start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/binder/start -------------------------------------------------------------------------------- /ci/test_environment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/ci/test_environment.yaml -------------------------------------------------------------------------------- /code.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/code.json -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/source/10min.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/docs/source/10min.rst -------------------------------------------------------------------------------- /docs/source/_static/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/source/_static/fig1_pleasant_lake_model.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/docs/source/_static/fig1_pleasant_lake_model.jpg -------------------------------------------------------------------------------- /docs/source/api/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/docs/source/api/index.rst -------------------------------------------------------------------------------- /docs/source/api/mfsetup.discretization.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/docs/source/api/mfsetup.discretization.rst -------------------------------------------------------------------------------- /docs/source/api/mfsetup.fileio.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/docs/source/api/mfsetup.fileio.rst -------------------------------------------------------------------------------- /docs/source/api/mfsetup.grid.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/docs/source/api/mfsetup.grid.rst -------------------------------------------------------------------------------- /docs/source/api/mfsetup.interpolate.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/docs/source/api/mfsetup.interpolate.rst -------------------------------------------------------------------------------- /docs/source/api/mfsetup.mf6model.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/docs/source/api/mfsetup.mf6model.rst -------------------------------------------------------------------------------- /docs/source/api/mfsetup.mfmodel.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/docs/source/api/mfsetup.mfmodel.rst -------------------------------------------------------------------------------- /docs/source/api/mfsetup.mfnwtmodel.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/docs/source/api/mfsetup.mfnwtmodel.rst -------------------------------------------------------------------------------- /docs/source/api/mfsetup.tdis.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/docs/source/api/mfsetup.tdis.rst -------------------------------------------------------------------------------- /docs/source/api/mfsetup.tmr.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/docs/source/api/mfsetup.tmr.rst -------------------------------------------------------------------------------- /docs/source/concepts/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/docs/source/concepts/index.rst -------------------------------------------------------------------------------- /docs/source/concepts/interp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/docs/source/concepts/interp.rst -------------------------------------------------------------------------------- /docs/source/concepts/lgr.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/docs/source/concepts/lgr.rst -------------------------------------------------------------------------------- /docs/source/concepts/perimeter-bcs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/docs/source/concepts/perimeter-bcs.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/config-file-defaults.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/docs/source/config-file-defaults.rst -------------------------------------------------------------------------------- /docs/source/config-file-gallery.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/docs/source/config-file-gallery.rst -------------------------------------------------------------------------------- /docs/source/config-file.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/docs/source/config-file.rst -------------------------------------------------------------------------------- /docs/source/contributing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/docs/source/contributing.rst -------------------------------------------------------------------------------- /docs/source/examples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/docs/source/examples.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/input/basic-stress.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/docs/source/input/basic-stress.rst -------------------------------------------------------------------------------- /docs/source/input/dis.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/docs/source/input/dis.rst -------------------------------------------------------------------------------- /docs/source/input/ic.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/docs/source/input/ic.rst -------------------------------------------------------------------------------- /docs/source/input/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/docs/source/input/index.rst -------------------------------------------------------------------------------- /docs/source/input/lak.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/docs/source/input/lak.rst -------------------------------------------------------------------------------- /docs/source/input/obs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/docs/source/input/obs.rst -------------------------------------------------------------------------------- /docs/source/input/oc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/docs/source/input/oc.rst -------------------------------------------------------------------------------- /docs/source/input/props.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/docs/source/input/props.rst -------------------------------------------------------------------------------- /docs/source/input/sfr.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/docs/source/input/sfr.rst -------------------------------------------------------------------------------- /docs/source/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/docs/source/installation.rst -------------------------------------------------------------------------------- /docs/source/philosophy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/docs/source/philosophy.rst -------------------------------------------------------------------------------- /docs/source/pleasant-example.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/docs/source/pleasant-example.rst -------------------------------------------------------------------------------- /docs/source/references.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/docs/source/references.rst -------------------------------------------------------------------------------- /docs/source/release-history.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/docs/source/release-history.rst -------------------------------------------------------------------------------- /docs/source/structure.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/docs/source/structure.rst -------------------------------------------------------------------------------- /docs/source/troubleshooting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/docs/source/troubleshooting.rst -------------------------------------------------------------------------------- /examples/Pleasant_lake_lgr_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/Pleasant_lake_lgr_example.ipynb -------------------------------------------------------------------------------- /examples/data/pleasant/external/CHD_0000.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/external/CHD_0000.dat -------------------------------------------------------------------------------- /examples/data/pleasant/external/CHD_0001.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/external/CHD_0001.dat -------------------------------------------------------------------------------- /examples/data/pleasant/external/CHD_0002.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/external/CHD_0002.dat -------------------------------------------------------------------------------- /examples/data/pleasant/external/CHD_0003.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/external/CHD_0003.dat -------------------------------------------------------------------------------- /examples/data/pleasant/external/CHD_0004.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/external/CHD_0004.dat -------------------------------------------------------------------------------- /examples/data/pleasant/external/CHD_0005.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/external/CHD_0005.dat -------------------------------------------------------------------------------- /examples/data/pleasant/external/CHD_0006.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/external/CHD_0006.dat -------------------------------------------------------------------------------- /examples/data/pleasant/external/CHD_0007.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/external/CHD_0007.dat -------------------------------------------------------------------------------- /examples/data/pleasant/external/CHD_0008.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/external/CHD_0008.dat -------------------------------------------------------------------------------- /examples/data/pleasant/external/CHD_0009.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/external/CHD_0009.dat -------------------------------------------------------------------------------- /examples/data/pleasant/external/CHD_0010.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/external/CHD_0010.dat -------------------------------------------------------------------------------- /examples/data/pleasant/external/CHD_0011.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/external/CHD_0011.dat -------------------------------------------------------------------------------- /examples/data/pleasant/external/CHD_0012.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/external/CHD_0012.dat -------------------------------------------------------------------------------- /examples/data/pleasant/external/WEL_0000.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/external/WEL_0000.dat -------------------------------------------------------------------------------- /examples/data/pleasant/external/WEL_0001.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/external/WEL_0001.dat -------------------------------------------------------------------------------- /examples/data/pleasant/external/WEL_0002.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/external/WEL_0002.dat -------------------------------------------------------------------------------- /examples/data/pleasant/external/WEL_0003.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/external/WEL_0003.dat -------------------------------------------------------------------------------- /examples/data/pleasant/external/WEL_0004.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/external/WEL_0004.dat -------------------------------------------------------------------------------- /examples/data/pleasant/external/WEL_0005.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/external/WEL_0005.dat -------------------------------------------------------------------------------- /examples/data/pleasant/external/WEL_0006.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/external/WEL_0006.dat -------------------------------------------------------------------------------- /examples/data/pleasant/external/WEL_0007.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/external/WEL_0007.dat -------------------------------------------------------------------------------- /examples/data/pleasant/external/WEL_0008.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/external/WEL_0008.dat -------------------------------------------------------------------------------- /examples/data/pleasant/external/WEL_0009.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/external/WEL_0009.dat -------------------------------------------------------------------------------- /examples/data/pleasant/external/WEL_0010.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/external/WEL_0010.dat -------------------------------------------------------------------------------- /examples/data/pleasant/external/WEL_0011.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/external/WEL_0011.dat -------------------------------------------------------------------------------- /examples/data/pleasant/external/WEL_0012.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/external/WEL_0012.dat -------------------------------------------------------------------------------- /examples/data/pleasant/external/botm0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/external/botm0.dat -------------------------------------------------------------------------------- /examples/data/pleasant/external/botm1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/external/botm1.dat -------------------------------------------------------------------------------- /examples/data/pleasant/external/botm2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/external/botm2.dat -------------------------------------------------------------------------------- /examples/data/pleasant/external/botm3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/external/botm3.dat -------------------------------------------------------------------------------- /examples/data/pleasant/external/delc.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/external/delc.ref -------------------------------------------------------------------------------- /examples/data/pleasant/external/delr.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/external/delr.ref -------------------------------------------------------------------------------- /examples/data/pleasant/external/finf0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/external/finf0.dat -------------------------------------------------------------------------------- /examples/data/pleasant/external/finf1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/external/finf1.dat -------------------------------------------------------------------------------- /examples/data/pleasant/external/finf10.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/external/finf10.dat -------------------------------------------------------------------------------- /examples/data/pleasant/external/finf11.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/external/finf11.dat -------------------------------------------------------------------------------- /examples/data/pleasant/external/finf12.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/external/finf12.dat -------------------------------------------------------------------------------- /examples/data/pleasant/external/finf2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/external/finf2.dat -------------------------------------------------------------------------------- /examples/data/pleasant/external/finf3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/external/finf3.dat -------------------------------------------------------------------------------- /examples/data/pleasant/external/finf4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/external/finf4.dat -------------------------------------------------------------------------------- /examples/data/pleasant/external/finf5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/external/finf5.dat -------------------------------------------------------------------------------- /examples/data/pleasant/external/finf6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/external/finf6.dat -------------------------------------------------------------------------------- /examples/data/pleasant/external/finf7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/external/finf7.dat -------------------------------------------------------------------------------- /examples/data/pleasant/external/finf8.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/external/finf8.dat -------------------------------------------------------------------------------- /examples/data/pleasant/external/finf9.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/external/finf9.dat -------------------------------------------------------------------------------- /examples/data/pleasant/external/hk0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/external/hk0.dat -------------------------------------------------------------------------------- /examples/data/pleasant/external/hk1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/external/hk1.dat -------------------------------------------------------------------------------- /examples/data/pleasant/external/hk2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/external/hk2.dat -------------------------------------------------------------------------------- /examples/data/pleasant/external/hk3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/external/hk3.dat -------------------------------------------------------------------------------- /examples/data/pleasant/external/ibound0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/external/ibound0.dat -------------------------------------------------------------------------------- /examples/data/pleasant/external/ibound1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/external/ibound1.dat -------------------------------------------------------------------------------- /examples/data/pleasant/external/ibound2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/external/ibound2.dat -------------------------------------------------------------------------------- /examples/data/pleasant/external/ibound3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/external/ibound3.dat -------------------------------------------------------------------------------- /examples/data/pleasant/external/ss0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/external/ss0.dat -------------------------------------------------------------------------------- /examples/data/pleasant/external/ss1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/external/ss1.dat -------------------------------------------------------------------------------- /examples/data/pleasant/external/ss2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/external/ss2.dat -------------------------------------------------------------------------------- /examples/data/pleasant/external/ss3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/external/ss3.dat -------------------------------------------------------------------------------- /examples/data/pleasant/external/strt0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/external/strt0.dat -------------------------------------------------------------------------------- /examples/data/pleasant/external/strt1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/external/strt1.dat -------------------------------------------------------------------------------- /examples/data/pleasant/external/strt2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/external/strt2.dat -------------------------------------------------------------------------------- /examples/data/pleasant/external/strt3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/external/strt3.dat -------------------------------------------------------------------------------- /examples/data/pleasant/external/sy0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/external/sy0.dat -------------------------------------------------------------------------------- /examples/data/pleasant/external/sy1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/external/sy1.dat -------------------------------------------------------------------------------- /examples/data/pleasant/external/sy2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/external/sy2.dat -------------------------------------------------------------------------------- /examples/data/pleasant/external/sy3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/external/sy3.dat -------------------------------------------------------------------------------- /examples/data/pleasant/external/top.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/external/top.dat -------------------------------------------------------------------------------- /examples/data/pleasant/external/vka0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/external/vka0.dat -------------------------------------------------------------------------------- /examples/data/pleasant/external/vka1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/external/vka1.dat -------------------------------------------------------------------------------- /examples/data/pleasant/external/vka2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/external/vka2.dat -------------------------------------------------------------------------------- /examples/data/pleasant/external/vka3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/external/vka3.dat -------------------------------------------------------------------------------- /examples/data/pleasant/grid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/grid.json -------------------------------------------------------------------------------- /examples/data/pleasant/pleasant.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/pleasant.bas -------------------------------------------------------------------------------- /examples/data/pleasant/pleasant.cbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/pleasant.cbc -------------------------------------------------------------------------------- /examples/data/pleasant/pleasant.chd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/pleasant.chd -------------------------------------------------------------------------------- /examples/data/pleasant/pleasant.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/pleasant.dis -------------------------------------------------------------------------------- /examples/data/pleasant/pleasant.hds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/pleasant.hds -------------------------------------------------------------------------------- /examples/data/pleasant/pleasant.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/pleasant.list -------------------------------------------------------------------------------- /examples/data/pleasant/pleasant.nam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/pleasant.nam -------------------------------------------------------------------------------- /examples/data/pleasant/pleasant.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/pleasant.nwt -------------------------------------------------------------------------------- /examples/data/pleasant/pleasant.oc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/pleasant.oc -------------------------------------------------------------------------------- /examples/data/pleasant/pleasant.rch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/pleasant.rch -------------------------------------------------------------------------------- /examples/data/pleasant/pleasant.sfr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/pleasant.sfr -------------------------------------------------------------------------------- /examples/data/pleasant/pleasant.sfr.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/pleasant.sfr.out -------------------------------------------------------------------------------- /examples/data/pleasant/pleasant.upw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/pleasant.upw -------------------------------------------------------------------------------- /examples/data/pleasant/pleasant.wel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/pleasant.wel -------------------------------------------------------------------------------- /examples/data/pleasant/postproc/shps/pleasant_bbox.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/postproc/shps/pleasant_bbox.dbf -------------------------------------------------------------------------------- /examples/data/pleasant/postproc/shps/pleasant_bbox.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/postproc/shps/pleasant_bbox.prj -------------------------------------------------------------------------------- /examples/data/pleasant/postproc/shps/pleasant_bbox.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/postproc/shps/pleasant_bbox.shp -------------------------------------------------------------------------------- /examples/data/pleasant/postproc/shps/pleasant_bbox.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/postproc/shps/pleasant_bbox.shx -------------------------------------------------------------------------------- /examples/data/pleasant/source_data/PRISM_ppt_tmean_stable_4km_189501_201901_43.9850_-89.5522.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/source_data/PRISM_ppt_tmean_stable_4km_189501_201901_43.9850_-89.5522.csv -------------------------------------------------------------------------------- /examples/data/pleasant/source_data/rasters/botm0.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/source_data/rasters/botm0.tif -------------------------------------------------------------------------------- /examples/data/pleasant/source_data/rasters/botm1.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/source_data/rasters/botm1.tif -------------------------------------------------------------------------------- /examples/data/pleasant/source_data/rasters/botm2.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/source_data/rasters/botm2.tif -------------------------------------------------------------------------------- /examples/data/pleasant/source_data/rasters/botm3.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/source_data/rasters/botm3.tif -------------------------------------------------------------------------------- /examples/data/pleasant/source_data/rasters/dem40m.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/source_data/rasters/dem40m.tif -------------------------------------------------------------------------------- /examples/data/pleasant/source_data/rasters/pleasant_bathymetry.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/source_data/rasters/pleasant_bathymetry.tif -------------------------------------------------------------------------------- /examples/data/pleasant/source_data/shps/NHDPlusAttributes/PlusFlow.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/source_data/shps/NHDPlusAttributes/PlusFlow.dbf -------------------------------------------------------------------------------- /examples/data/pleasant/source_data/shps/NHDPlusAttributes/PlusFlowlineVAA.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/source_data/shps/NHDPlusAttributes/PlusFlowlineVAA.dbf -------------------------------------------------------------------------------- /examples/data/pleasant/source_data/shps/NHDPlusAttributes/elevslope.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/source_data/shps/NHDPlusAttributes/elevslope.dbf -------------------------------------------------------------------------------- /examples/data/pleasant/source_data/shps/NHDSnapshot/Hydrography/NHDFlowline.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/source_data/shps/NHDSnapshot/Hydrography/NHDFlowline.dbf -------------------------------------------------------------------------------- /examples/data/pleasant/source_data/shps/NHDSnapshot/Hydrography/NHDFlowline.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/source_data/shps/NHDSnapshot/Hydrography/NHDFlowline.prj -------------------------------------------------------------------------------- /examples/data/pleasant/source_data/shps/NHDSnapshot/Hydrography/NHDFlowline.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/source_data/shps/NHDSnapshot/Hydrography/NHDFlowline.shp -------------------------------------------------------------------------------- /examples/data/pleasant/source_data/shps/NHDSnapshot/Hydrography/NHDFlowline.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/source_data/shps/NHDSnapshot/Hydrography/NHDFlowline.shx -------------------------------------------------------------------------------- /examples/data/pleasant/source_data/shps/all_lakes.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/source_data/shps/all_lakes.dbf -------------------------------------------------------------------------------- /examples/data/pleasant/source_data/shps/all_lakes.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/source_data/shps/all_lakes.prj -------------------------------------------------------------------------------- /examples/data/pleasant/source_data/shps/all_lakes.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/source_data/shps/all_lakes.shp -------------------------------------------------------------------------------- /examples/data/pleasant/source_data/shps/all_lakes.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/source_data/shps/all_lakes.shx -------------------------------------------------------------------------------- /examples/data/pleasant/source_data/shps/csls_sources_wu_pts.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/source_data/shps/csls_sources_wu_pts.dbf -------------------------------------------------------------------------------- /examples/data/pleasant/source_data/shps/csls_sources_wu_pts.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/source_data/shps/csls_sources_wu_pts.shp -------------------------------------------------------------------------------- /examples/data/pleasant/source_data/shps/csls_sources_wu_pts.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/source_data/shps/csls_sources_wu_pts.shx -------------------------------------------------------------------------------- /examples/data/pleasant/source_data/shps/ghb_lake.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/source_data/shps/ghb_lake.dbf -------------------------------------------------------------------------------- /examples/data/pleasant/source_data/shps/ghb_lake.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/source_data/shps/ghb_lake.prj -------------------------------------------------------------------------------- /examples/data/pleasant/source_data/shps/ghb_lake.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/source_data/shps/ghb_lake.shp -------------------------------------------------------------------------------- /examples/data/pleasant/source_data/shps/ghb_lake.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/source_data/shps/ghb_lake.shx -------------------------------------------------------------------------------- /examples/data/pleasant/source_data/shps/wood_lake.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/source_data/shps/wood_lake.dbf -------------------------------------------------------------------------------- /examples/data/pleasant/source_data/shps/wood_lake.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/source_data/shps/wood_lake.prj -------------------------------------------------------------------------------- /examples/data/pleasant/source_data/shps/wood_lake.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/source_data/shps/wood_lake.shp -------------------------------------------------------------------------------- /examples/data/pleasant/source_data/shps/wood_lake.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/source_data/shps/wood_lake.shx -------------------------------------------------------------------------------- /examples/data/pleasant/source_data/tables/area_stage_vol_Pleasant.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/source_data/tables/area_stage_vol_Pleasant.csv -------------------------------------------------------------------------------- /examples/data/pleasant/source_data/tables/gages.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/source_data/tables/gages.csv -------------------------------------------------------------------------------- /examples/data/pleasant/source_data/tables/lake_sites.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/source_data/tables/lake_sites.csv -------------------------------------------------------------------------------- /examples/data/pleasant/source_data/tables/master_wu.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/source_data/tables/master_wu.csv -------------------------------------------------------------------------------- /examples/data/pleasant/source_data/tables/nwis_heads_info_file.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/source_data/tables/nwis_heads_info_file.csv -------------------------------------------------------------------------------- /examples/data/pleasant/source_data/tables/streambed_elevations.csv: -------------------------------------------------------------------------------- 1 | x,y,elevation 2 | -89.541946,43.987440,296.9 3 | -------------------------------------------------------------------------------- /examples/data/pleasant/source_data/tables/uwsp_heads.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/source_data/tables/uwsp_heads.csv -------------------------------------------------------------------------------- /examples/data/pleasant/source_data/tables/wdnr_gw_sites.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/source_data/tables/wdnr_gw_sites.csv -------------------------------------------------------------------------------- /examples/data/pleasant/source_data/tables/wgnhs_head_targets.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/data/pleasant/source_data/tables/wgnhs_head_targets.csv -------------------------------------------------------------------------------- /examples/initial_config_box.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/initial_config_box.yaml -------------------------------------------------------------------------------- /examples/initial_config_full.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/initial_config_full.yaml -------------------------------------------------------------------------------- /examples/initial_config_poly.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/initial_config_poly.yaml -------------------------------------------------------------------------------- /examples/initial_grid_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/initial_grid_setup.py -------------------------------------------------------------------------------- /examples/initial_model_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/initial_model_setup.py -------------------------------------------------------------------------------- /examples/pleasant_lgr_inset.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/pleasant_lgr_inset.yml -------------------------------------------------------------------------------- /examples/pleasant_lgr_parent.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/pleasant_lgr_parent.yml -------------------------------------------------------------------------------- /examples/update_starting_heads_from_previous.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/examples/update_starting_heads_from_previous.py -------------------------------------------------------------------------------- /gis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/gis.yml -------------------------------------------------------------------------------- /make_release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/make_release.sh -------------------------------------------------------------------------------- /mfsetup/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/__init__.py -------------------------------------------------------------------------------- /mfsetup/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/_version.py -------------------------------------------------------------------------------- /mfsetup/bcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/bcs.py -------------------------------------------------------------------------------- /mfsetup/checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/checks.py -------------------------------------------------------------------------------- /mfsetup/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/config.py -------------------------------------------------------------------------------- /mfsetup/discretization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/discretization.py -------------------------------------------------------------------------------- /mfsetup/equality.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/equality.py -------------------------------------------------------------------------------- /mfsetup/evaporation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/evaporation.py -------------------------------------------------------------------------------- /mfsetup/fileio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/fileio.py -------------------------------------------------------------------------------- /mfsetup/grid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/grid.py -------------------------------------------------------------------------------- /mfsetup/ic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/ic.py -------------------------------------------------------------------------------- /mfsetup/interpolate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/interpolate.py -------------------------------------------------------------------------------- /mfsetup/lakes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/lakes.py -------------------------------------------------------------------------------- /mfsetup/mf5to6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/mf5to6.py -------------------------------------------------------------------------------- /mfsetup/mf6_defaults.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/mf6_defaults.yml -------------------------------------------------------------------------------- /mfsetup/mf6model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/mf6model.py -------------------------------------------------------------------------------- /mfsetup/mfmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/mfmodel.py -------------------------------------------------------------------------------- /mfsetup/mfnwt_defaults.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/mfnwt_defaults.yml -------------------------------------------------------------------------------- /mfsetup/mfnwtmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/mfnwtmodel.py -------------------------------------------------------------------------------- /mfsetup/model_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/model_version.py -------------------------------------------------------------------------------- /mfsetup/mover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/mover.py -------------------------------------------------------------------------------- /mfsetup/obs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/obs.py -------------------------------------------------------------------------------- /mfsetup/oc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/oc.py -------------------------------------------------------------------------------- /mfsetup/sourcedata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/sourcedata.py -------------------------------------------------------------------------------- /mfsetup/sourcemodel.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mfsetup/tdis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tdis.py -------------------------------------------------------------------------------- /mfsetup/test_tmr_export_models.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/test_tmr_export_models.ipynb -------------------------------------------------------------------------------- /mfsetup/testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/testing.py -------------------------------------------------------------------------------- /mfsetup/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mfsetup/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/conftest.py -------------------------------------------------------------------------------- /mfsetup/tests/data/RGN_rjh_3_23_18.NWT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/RGN_rjh_3_23_18.NWT -------------------------------------------------------------------------------- /mfsetup/tests/data/pfl_nwt_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/pfl_nwt_test.yml -------------------------------------------------------------------------------- /mfsetup/tests/data/plainfieldlakes/external/CHD_0000.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/plainfieldlakes/external/CHD_0000.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/plainfieldlakes/external/WEL_0000.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/plainfieldlakes/external/WEL_0000.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/plainfieldlakes/external/botm0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/plainfieldlakes/external/botm0.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/plainfieldlakes/external/botm1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/plainfieldlakes/external/botm1.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/plainfieldlakes/external/botm2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/plainfieldlakes/external/botm2.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/plainfieldlakes/external/botm3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/plainfieldlakes/external/botm3.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/plainfieldlakes/external/delc.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/plainfieldlakes/external/delc.ref -------------------------------------------------------------------------------- /mfsetup/tests/data/plainfieldlakes/external/delr.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/plainfieldlakes/external/delr.ref -------------------------------------------------------------------------------- /mfsetup/tests/data/plainfieldlakes/external/finf0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/plainfieldlakes/external/finf0.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/plainfieldlakes/external/hk0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/plainfieldlakes/external/hk0.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/plainfieldlakes/external/hk1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/plainfieldlakes/external/hk1.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/plainfieldlakes/external/hk2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/plainfieldlakes/external/hk2.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/plainfieldlakes/external/hk3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/plainfieldlakes/external/hk3.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/plainfieldlakes/external/ibound0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/plainfieldlakes/external/ibound0.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/plainfieldlakes/external/ibound1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/plainfieldlakes/external/ibound1.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/plainfieldlakes/external/ibound2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/plainfieldlakes/external/ibound2.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/plainfieldlakes/external/ibound3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/plainfieldlakes/external/ibound3.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/plainfieldlakes/external/strt0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/plainfieldlakes/external/strt0.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/plainfieldlakes/external/strt1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/plainfieldlakes/external/strt1.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/plainfieldlakes/external/strt2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/plainfieldlakes/external/strt2.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/plainfieldlakes/external/strt3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/plainfieldlakes/external/strt3.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/plainfieldlakes/external/top.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/plainfieldlakes/external/top.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/plainfieldlakes/external/vka0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/plainfieldlakes/external/vka0.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/plainfieldlakes/external/vka1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/plainfieldlakes/external/vka1.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/plainfieldlakes/external/vka2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/plainfieldlakes/external/vka2.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/plainfieldlakes/external/vka3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/plainfieldlakes/external/vka3.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/plainfieldlakes/grid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/plainfieldlakes/grid.json -------------------------------------------------------------------------------- /mfsetup/tests/data/plainfieldlakes/pfl.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/plainfieldlakes/pfl.bas -------------------------------------------------------------------------------- /mfsetup/tests/data/plainfieldlakes/pfl.cbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/plainfieldlakes/pfl.cbc -------------------------------------------------------------------------------- /mfsetup/tests/data/plainfieldlakes/pfl.chd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/plainfieldlakes/pfl.chd -------------------------------------------------------------------------------- /mfsetup/tests/data/plainfieldlakes/pfl.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/plainfieldlakes/pfl.dis -------------------------------------------------------------------------------- /mfsetup/tests/data/plainfieldlakes/pfl.hds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/plainfieldlakes/pfl.hds -------------------------------------------------------------------------------- /mfsetup/tests/data/plainfieldlakes/pfl.nam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/plainfieldlakes/pfl.nam -------------------------------------------------------------------------------- /mfsetup/tests/data/plainfieldlakes/pfl.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/plainfieldlakes/pfl.nwt -------------------------------------------------------------------------------- /mfsetup/tests/data/plainfieldlakes/pfl.oc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/plainfieldlakes/pfl.oc -------------------------------------------------------------------------------- /mfsetup/tests/data/plainfieldlakes/pfl.rch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/plainfieldlakes/pfl.rch -------------------------------------------------------------------------------- /mfsetup/tests/data/plainfieldlakes/pfl.upw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/plainfieldlakes/pfl.upw -------------------------------------------------------------------------------- /mfsetup/tests/data/plainfieldlakes/pfl.wel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/plainfieldlakes/pfl.wel -------------------------------------------------------------------------------- /mfsetup/tests/data/plainfieldlakes/source_data/added_wells.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/plainfieldlakes/source_data/added_wells.csv -------------------------------------------------------------------------------- /mfsetup/tests/data/plainfieldlakes/source_data/all_lakes.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/plainfieldlakes/source_data/all_lakes.dbf -------------------------------------------------------------------------------- /mfsetup/tests/data/plainfieldlakes/source_data/all_lakes.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/plainfieldlakes/source_data/all_lakes.prj -------------------------------------------------------------------------------- /mfsetup/tests/data/plainfieldlakes/source_data/all_lakes.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/plainfieldlakes/source_data/all_lakes.shp -------------------------------------------------------------------------------- /mfsetup/tests/data/plainfieldlakes/source_data/all_lakes.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/plainfieldlakes/source_data/all_lakes.shx -------------------------------------------------------------------------------- /mfsetup/tests/data/plainfieldlakes/source_data/all_lakes_stage_area_volume.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/plainfieldlakes/source_data/all_lakes_stage_area_volume.csv -------------------------------------------------------------------------------- /mfsetup/tests/data/plainfieldlakes/source_data/dem10m.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/plainfieldlakes/source_data/dem10m.tif -------------------------------------------------------------------------------- /mfsetup/tests/data/plainfieldlakes/source_data/lake_sites.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/plainfieldlakes/source_data/lake_sites.csv -------------------------------------------------------------------------------- /mfsetup/tests/data/plainfieldlakes/source_data/master_wu.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/plainfieldlakes/source_data/master_wu.csv -------------------------------------------------------------------------------- /mfsetup/tests/data/plainfieldlakes/source_data/net_infiltration__2012-01-01_to_2017-12-31__1066_by_1145__SUM__INCHES_PER_YEAR.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/plainfieldlakes/source_data/net_infiltration__2012-01-01_to_2017-12-31__1066_by_1145__SUM__INCHES_PER_YEAR.tif -------------------------------------------------------------------------------- /mfsetup/tests/data/plainfieldlakes/source_data/nwis_heads_info_file.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/plainfieldlakes/source_data/nwis_heads_info_file.csv -------------------------------------------------------------------------------- /mfsetup/tests/data/plainfieldlakes/source_data/pfl_bathymetry.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/plainfieldlakes/source_data/pfl_bathymetry.tif -------------------------------------------------------------------------------- /mfsetup/tests/data/plainfieldlakes/source_data/uwsp_heads.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/plainfieldlakes/source_data/uwsp_heads.csv -------------------------------------------------------------------------------- /mfsetup/tests/data/plainfieldlakes/source_data/wdnr_gw_sites.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/plainfieldlakes/source_data/wdnr_gw_sites.csv -------------------------------------------------------------------------------- /mfsetup/tests/data/plainfieldlakes/source_data/wu_points.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/plainfieldlakes/source_data/wu_points.dbf -------------------------------------------------------------------------------- /mfsetup/tests/data/plainfieldlakes/source_data/wu_points.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/plainfieldlakes/source_data/wu_points.prj -------------------------------------------------------------------------------- /mfsetup/tests/data/plainfieldlakes/source_data/wu_points.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/plainfieldlakes/source_data/wu_points.shp -------------------------------------------------------------------------------- /mfsetup/tests/data/plainfieldlakes/source_data/wu_points.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/plainfieldlakes/source_data/wu_points.shx -------------------------------------------------------------------------------- /mfsetup/tests/data/pleasant_mf6_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/pleasant_mf6_test.yml -------------------------------------------------------------------------------- /mfsetup/tests/data/pleasant_nwt_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/pleasant_nwt_test.yml -------------------------------------------------------------------------------- /mfsetup/tests/data/pleasant_vertical_lgr_inset.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/pleasant_vertical_lgr_inset.yml -------------------------------------------------------------------------------- /mfsetup/tests/data/pleasant_vertical_lgr_parent.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/pleasant_vertical_lgr_parent.yml -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound.yml -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/net_infiltration__2000-01-01_to_2017-12-31__414_by_394.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/net_infiltration__2000-01-01_to_2017-12-31__414_by_394.nc -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/rasters/k0.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/rasters/k0.tif -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/rasters/k1.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/rasters/k1.tif -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/rasters/k10.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/rasters/k10.tif -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/rasters/k11.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/rasters/k11.tif -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/rasters/k12.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/rasters/k12.tif -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/rasters/k2.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/rasters/k2.tif -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/rasters/k3.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/rasters/k3.tif -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/rasters/k330.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/rasters/k330.tif -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/rasters/k331.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/rasters/k331.tif -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/rasters/k3310.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/rasters/k3310.tif -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/rasters/k3311.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/rasters/k3311.tif -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/rasters/k3312.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/rasters/k3312.tif -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/rasters/k332.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/rasters/k332.tif -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/rasters/k333.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/rasters/k333.tif -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/rasters/k334.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/rasters/k334.tif -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/rasters/k335.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/rasters/k335.tif -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/rasters/k336.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/rasters/k336.tif -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/rasters/k337.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/rasters/k337.tif -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/rasters/k338.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/rasters/k338.tif -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/rasters/k339.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/rasters/k339.tif -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/rasters/k4.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/rasters/k4.tif -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/rasters/k5.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/rasters/k5.tif -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/rasters/k6.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/rasters/k6.tif -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/rasters/k7.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/rasters/k7.tif -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/rasters/k8.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/rasters/k8.tif -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/rasters/k9.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/rasters/k9.tif -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/rasters/lcaq_surf.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/rasters/lcaq_surf.tif -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/rasters/lccu_surf.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/rasters/lccu_surf.tif -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/rasters/lwaq_surf.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/rasters/lwaq_surf.tif -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/rasters/mcaq_surf.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/rasters/mcaq_surf.tif -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/rasters/mccu_surf.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/rasters/mccu_surf.tif -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/rasters/mdwy_surf.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/rasters/mdwy_surf.tif -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/rasters/meras_100m_dem.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/rasters/meras_100m_dem.tif -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/rasters/mwaq_surf.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/rasters/mwaq_surf.tif -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/rasters/ucaq_surf.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/rasters/ucaq_surf.tif -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/rasters/vkbg_surf.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/rasters/vkbg_surf.tif -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/shps/active_area.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/shps/active_area.dbf -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/shps/active_area.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/shps/active_area.prj -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/shps/active_area.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/shps/active_area.shp -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/shps/active_area.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/shps/active_area.shx -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/shps/flowlines.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/shps/flowlines.dbf -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/shps/flowlines.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/shps/flowlines.prj -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/shps/flowlines.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/shps/flowlines.shp -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/shps/flowlines.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/shps/flowlines.shx -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/shps/waterbodies.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/shps/waterbodies.dbf -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/shps/waterbodies.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/shps/waterbodies.prj -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/shps/waterbodies.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/shps/waterbodies.shp -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/shps/waterbodies.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/shps/waterbodies.shx -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tables/1998-2007_avg_pumping_from_meras21_m3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tables/1998-2007_avg_pumping_from_meras21_m3.csv -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tables/chd_heads.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tables/chd_heads.csv -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tables/flowline_routing.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tables/flowline_routing.csv -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tables/head_obs_well_info.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tables/head_obs_well_info.csv -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tables/head_obs_well_info2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tables/head_obs_well_info2.csv -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tables/inflows.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tables/inflows.csv -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tables/iwum_m3_1M.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tables/iwum_m3_1M.csv -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tables/iwum_m3_6M.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tables/iwum_m3_6M.csv -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tables/observations.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tables/observations.csv -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tables/preprocessed_head_obs_info.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tables/preprocessed_head_obs_info.csv -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tables/sp69_pumping_from_meras21_m3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tables/sp69_pumping_from_meras21_m3.csv -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tables/swb_runoff_by_nhdplus_comid_m3d.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tables/swb_runoff_by_nhdplus_comid_m3d.csv -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/botm0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/botm0.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/botm1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/botm1.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/botm10.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/botm10.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/botm11.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/botm11.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/botm12.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/botm12.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/botm2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/botm2.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/botm3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/botm3.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/botm4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/botm4.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/botm5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/botm5.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/botm6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/botm6.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/botm7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/botm7.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/botm8.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/botm8.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/botm9.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/botm9.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/idomain0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/idomain0.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/idomain1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/idomain1.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/idomain10.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/idomain10.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/idomain11.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/idomain11.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/idomain12.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/idomain12.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/idomain2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/idomain2.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/idomain3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/idomain3.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/idomain4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/idomain4.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/idomain5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/idomain5.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/idomain6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/idomain6.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/idomain7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/idomain7.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/idomain8.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/idomain8.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/idomain9.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/idomain9.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/irch.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/irch.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/k0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/k0.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/k1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/k1.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/k10.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/k10.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/k11.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/k11.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/k12.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/k12.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/k2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/k2.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/k3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/k3.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/k330.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/k330.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/k331.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/k331.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/k3310.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/k3310.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/k3311.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/k3311.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/k3312.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/k3312.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/k332.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/k332.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/k333.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/k333.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/k334.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/k334.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/k335.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/k335.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/k336.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/k336.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/k337.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/k337.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/k338.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/k338.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/k339.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/k339.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/k4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/k4.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/k5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/k5.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/k6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/k6.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/k7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/k7.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/k8.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/k8.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/k9.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/k9.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/rch0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/rch0.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/rch1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/rch1.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/rch10.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/rch10.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/rch11.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/rch11.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/rch12.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/rch12.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/rch13.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/rch13.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/rch14.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/rch14.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/rch15.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/rch15.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/rch16.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/rch16.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/rch17.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/rch17.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/rch18.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/rch18.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/rch2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/rch2.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/rch3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/rch3.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/rch4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/rch4.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/rch5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/rch5.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/rch6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/rch6.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/rch7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/rch7.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/rch8.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/rch8.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/rch9.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/rch9.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/ss0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/ss0.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/ss1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/ss1.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/ss10.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/ss10.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/ss11.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/ss11.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/ss12.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/ss12.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/ss2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/ss2.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/ss3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/ss3.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/ss4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/ss4.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/ss5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/ss5.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/ss6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/ss6.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/ss7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/ss7.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/ss8.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/ss8.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/ss9.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/ss9.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/strt0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/strt0.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/strt1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/strt1.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/strt10.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/strt10.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/strt11.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/strt11.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/strt12.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/strt12.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/strt2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/strt2.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/strt3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/strt3.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/strt4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/strt4.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/strt5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/strt5.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/strt6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/strt6.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/strt7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/strt7.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/strt8.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/strt8.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/strt9.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/strt9.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/sy0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/sy0.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/sy1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/sy1.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/sy10.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/sy10.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/sy11.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/sy11.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/sy12.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/sy12.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/sy2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/sy2.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/sy3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/sy3.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/sy4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/sy4.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/sy5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/sy5.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/sy6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/sy6.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/sy7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/sy7.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/sy8.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/sy8.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/sy9.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/sy9.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/external/top.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/external/top.dat -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/gis/irregular_boundary.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/gis/irregular_boundary.dbf -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/gis/irregular_boundary.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/gis/irregular_boundary.prj -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/gis/irregular_boundary.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/gis/irregular_boundary.shp -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/gis/irregular_boundary.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/gis/irregular_boundary.shx -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/mfsim.ims: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/mfsim.ims -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/mfsim.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/mfsim.lst -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/mfsim.nam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/mfsim.nam -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/mfsim.tdis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/mfsim.tdis -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/postproc/shps/shellmound_bbox.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/postproc/shps/shellmound_bbox.dbf -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/postproc/shps/shellmound_bbox.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/postproc/shps/shellmound_bbox.prj -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/postproc/shps/shellmound_bbox.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/postproc/shps/shellmound_bbox.shp -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/postproc/shps/shellmound_bbox.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/postproc/shps/shellmound_bbox.shx -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/shellmound.cbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/shellmound.cbc -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/shellmound.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/shellmound.dis -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/shellmound.dis.grb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/shellmound.dis.grb -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/shellmound.hds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/shellmound.hds -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/shellmound.head.obs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/shellmound.head.obs -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/shellmound.ic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/shellmound.ic -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/shellmound.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/shellmound.list -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/shellmound.nam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/shellmound.nam -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/shellmound.npf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/shellmound.npf -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/shellmound.obs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/shellmound.obs -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/shellmound.oc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/shellmound.oc -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/shellmound.rcha: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/shellmound.rcha -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/shellmound.sfr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/shellmound.sfr -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/shellmound.sfr.out.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/shellmound.sfr.out.bin -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/shellmound.sfr.stage.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/shellmound.sfr.stage.bin -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/shellmound.sto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/shellmound.sto -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/shellmound.wel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/shellmound.wel -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/shellmound_grid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/shellmound_grid.json -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/shellmound_wel_lookup.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/shellmound_wel_lookup.csv -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound/tmr_parent/tables/stress_period_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound/tmr_parent/tables/stress_period_data.csv -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound_flat_layers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound_flat_layers.yml -------------------------------------------------------------------------------- /mfsetup/tests/data/shellmound_tmr_inset.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/data/shellmound_tmr_inset.yml -------------------------------------------------------------------------------- /mfsetup/tests/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/plot.py -------------------------------------------------------------------------------- /mfsetup/tests/test_bcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/test_bcs.py -------------------------------------------------------------------------------- /mfsetup/tests/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/test_config.py -------------------------------------------------------------------------------- /mfsetup/tests/test_discretization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/test_discretization.py -------------------------------------------------------------------------------- /mfsetup/tests/test_equality.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/test_equality.py -------------------------------------------------------------------------------- /mfsetup/tests/test_evaporation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/test_evaporation.py -------------------------------------------------------------------------------- /mfsetup/tests/test_fileio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/test_fileio.py -------------------------------------------------------------------------------- /mfsetup/tests/test_get_data_from_parent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/test_get_data_from_parent.py -------------------------------------------------------------------------------- /mfsetup/tests/test_get_model_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/test_get_model_version.py -------------------------------------------------------------------------------- /mfsetup/tests/test_grid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/test_grid.py -------------------------------------------------------------------------------- /mfsetup/tests/test_ic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/test_ic.py -------------------------------------------------------------------------------- /mfsetup/tests/test_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/test_import.py -------------------------------------------------------------------------------- /mfsetup/tests/test_interpolation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/test_interpolation.py -------------------------------------------------------------------------------- /mfsetup/tests/test_lakes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/test_lakes.py -------------------------------------------------------------------------------- /mfsetup/tests/test_lgr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/test_lgr.py -------------------------------------------------------------------------------- /mfsetup/tests/test_mf5to6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/test_mf5to6.py -------------------------------------------------------------------------------- /mfsetup/tests/test_mf6_shellmound.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/test_mf6_shellmound.py -------------------------------------------------------------------------------- /mfsetup/tests/test_mf6_shellmound_mixed_layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/test_mf6_shellmound_mixed_layers.py -------------------------------------------------------------------------------- /mfsetup/tests/test_mf6_shellmound_rot_grid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/test_mf6_shellmound_rot_grid.py -------------------------------------------------------------------------------- /mfsetup/tests/test_mf6_tmr_shellmound.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/test_mf6_tmr_shellmound.py -------------------------------------------------------------------------------- /mfsetup/tests/test_mover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/test_mover.py -------------------------------------------------------------------------------- /mfsetup/tests/test_notebooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/test_notebooks.py -------------------------------------------------------------------------------- /mfsetup/tests/test_obs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/test_obs.py -------------------------------------------------------------------------------- /mfsetup/tests/test_oc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/test_oc.py -------------------------------------------------------------------------------- /mfsetup/tests/test_pfl_mfnwt_inset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/test_pfl_mfnwt_inset.py -------------------------------------------------------------------------------- /mfsetup/tests/test_pleasant_mf6_inset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/test_pleasant_mf6_inset.py -------------------------------------------------------------------------------- /mfsetup/tests/test_pleasant_mfnwt_inset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/test_pleasant_mfnwt_inset.py -------------------------------------------------------------------------------- /mfsetup/tests/test_solver_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/test_solver_setup.py -------------------------------------------------------------------------------- /mfsetup/tests/test_sourcedata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/test_sourcedata.py -------------------------------------------------------------------------------- /mfsetup/tests/test_tdis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/test_tdis.py -------------------------------------------------------------------------------- /mfsetup/tests/test_testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/test_testing.py -------------------------------------------------------------------------------- /mfsetup/tests/test_tmr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/test_tmr.py -------------------------------------------------------------------------------- /mfsetup/tests/test_units.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/test_units.py -------------------------------------------------------------------------------- /mfsetup/tests/test_usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/test_usage.py -------------------------------------------------------------------------------- /mfsetup/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/test_utils.py -------------------------------------------------------------------------------- /mfsetup/tests/test_wateruse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/test_wateruse.py -------------------------------------------------------------------------------- /mfsetup/tests/test_wells.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tests/test_wells.py -------------------------------------------------------------------------------- /mfsetup/tmr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/tmr.py -------------------------------------------------------------------------------- /mfsetup/units.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/units.py -------------------------------------------------------------------------------- /mfsetup/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/utils.py -------------------------------------------------------------------------------- /mfsetup/wateruse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/wateruse.py -------------------------------------------------------------------------------- /mfsetup/wells.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/wells.py -------------------------------------------------------------------------------- /mfsetup/zbud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/mfsetup/zbud.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/setup.py -------------------------------------------------------------------------------- /versioneer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DOI-USGS/modflow-setup/HEAD/versioneer.py --------------------------------------------------------------------------------