├── DESCRIPTION ├── F2CNotes ├── LEVEL_01.DIR ├── NAMESPACE ├── NOTES ├── R └── standalone.R ├── README.md ├── Strategy ├── inst └── ExampleInputs │ ├── Hannah │ ├── ATMOSPH.IN │ ├── DESCRIPT.TXT │ ├── HYDRUS1D.DAT │ ├── PROFILE.DAT │ └── SELECTOR.IN │ ├── Pond1.h1d │ ├── Pond1 │ ├── ATMOSPH.IN │ ├── DESCRIPT.TXT │ ├── Hydrus1d.dat │ ├── OBS_NODE.xls │ ├── PROFILE.DAT │ └── Selector.in │ ├── Pond2.h1d │ ├── Pond2 │ ├── ATMOSPH.IN │ ├── DESCRIPT.TXT │ ├── Hydrus1d.dat │ ├── PROFILE.DAT │ └── Selector.in │ ├── Pond3.h1d │ ├── Pond3 │ ├── ATMOSPH.IN │ ├── DESCRIPT.TXT │ ├── Hydrus1d.dat │ ├── PROFILE.DAT │ └── Selector.in │ ├── Pond4.h1d │ ├── Pond4 │ ├── ATMOSPH.IN │ ├── DESCRIPT.TXT │ ├── HYDRUS1D.DAT │ ├── PROFILE.DAT │ └── SELECTOR.IN │ ├── Pond5.h1d │ └── Pond5 │ ├── ATMOSPH.IN │ ├── DESCRIPT.TXT │ ├── HYDRUS1D.DAT │ ├── PROFILE.DAT │ └── SELECTOR.IN └── src ├── HYDRUS.c ├── HYDRUS_clone.c ├── HYSTER.c ├── INPUT.c ├── MATERIAL.c ├── Makevars ├── OUTPUT.c ├── RHydrus.h ├── Rhydrus.c ├── SINK.c ├── SOLUTE.c ├── TEMPER.c ├── TIME.c ├── WATFLOW.c ├── fortran_src ├── HYDRUS.f ├── HYSTER.f ├── INPUT.f ├── MATERIAL.f ├── OUTPUT.f ├── README ├── SINK.f ├── SOLUTE.f ├── TEMPER.f ├── TIME.f └── WATFLOW.f └── proxies.c /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mespe/RHydrus/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /F2CNotes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mespe/RHydrus/HEAD/F2CNotes -------------------------------------------------------------------------------- /LEVEL_01.DIR: -------------------------------------------------------------------------------- 1 | inst/ExampleInputs/Hannah/ 2 | -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- 1 | exportPattern(".*") 2 | useDynLib(RHydrus) 3 | 4 | 5 | -------------------------------------------------------------------------------- /NOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mespe/RHydrus/HEAD/NOTES -------------------------------------------------------------------------------- /R/standalone.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mespe/RHydrus/HEAD/R/standalone.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mespe/RHydrus/HEAD/README.md -------------------------------------------------------------------------------- /Strategy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mespe/RHydrus/HEAD/Strategy -------------------------------------------------------------------------------- /inst/ExampleInputs/Hannah/ATMOSPH.IN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mespe/RHydrus/HEAD/inst/ExampleInputs/Hannah/ATMOSPH.IN -------------------------------------------------------------------------------- /inst/ExampleInputs/Hannah/DESCRIPT.TXT: -------------------------------------------------------------------------------- 1 | Pcp_File_Version=1 2 | -------------------------------------------------------------------------------- /inst/ExampleInputs/Hannah/HYDRUS1D.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mespe/RHydrus/HEAD/inst/ExampleInputs/Hannah/HYDRUS1D.DAT -------------------------------------------------------------------------------- /inst/ExampleInputs/Hannah/PROFILE.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mespe/RHydrus/HEAD/inst/ExampleInputs/Hannah/PROFILE.DAT -------------------------------------------------------------------------------- /inst/ExampleInputs/Hannah/SELECTOR.IN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mespe/RHydrus/HEAD/inst/ExampleInputs/Hannah/SELECTOR.IN -------------------------------------------------------------------------------- /inst/ExampleInputs/Pond1.h1d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mespe/RHydrus/HEAD/inst/ExampleInputs/Pond1.h1d -------------------------------------------------------------------------------- /inst/ExampleInputs/Pond1/ATMOSPH.IN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mespe/RHydrus/HEAD/inst/ExampleInputs/Pond1/ATMOSPH.IN -------------------------------------------------------------------------------- /inst/ExampleInputs/Pond1/DESCRIPT.TXT: -------------------------------------------------------------------------------- 1 | Pcp_File_Version=1 2 | Atmospheric boundary with surface runoff -------------------------------------------------------------------------------- /inst/ExampleInputs/Pond1/Hydrus1d.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mespe/RHydrus/HEAD/inst/ExampleInputs/Pond1/Hydrus1d.dat -------------------------------------------------------------------------------- /inst/ExampleInputs/Pond1/OBS_NODE.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mespe/RHydrus/HEAD/inst/ExampleInputs/Pond1/OBS_NODE.xls -------------------------------------------------------------------------------- /inst/ExampleInputs/Pond1/PROFILE.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mespe/RHydrus/HEAD/inst/ExampleInputs/Pond1/PROFILE.DAT -------------------------------------------------------------------------------- /inst/ExampleInputs/Pond1/Selector.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mespe/RHydrus/HEAD/inst/ExampleInputs/Pond1/Selector.in -------------------------------------------------------------------------------- /inst/ExampleInputs/Pond2.h1d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mespe/RHydrus/HEAD/inst/ExampleInputs/Pond2.h1d -------------------------------------------------------------------------------- /inst/ExampleInputs/Pond2/ATMOSPH.IN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mespe/RHydrus/HEAD/inst/ExampleInputs/Pond2/ATMOSPH.IN -------------------------------------------------------------------------------- /inst/ExampleInputs/Pond2/DESCRIPT.TXT: -------------------------------------------------------------------------------- 1 | Pcp_File_Version=1 2 | Atmospheric boundary with unlimited surface water layer -------------------------------------------------------------------------------- /inst/ExampleInputs/Pond2/Hydrus1d.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mespe/RHydrus/HEAD/inst/ExampleInputs/Pond2/Hydrus1d.dat -------------------------------------------------------------------------------- /inst/ExampleInputs/Pond2/PROFILE.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mespe/RHydrus/HEAD/inst/ExampleInputs/Pond2/PROFILE.DAT -------------------------------------------------------------------------------- /inst/ExampleInputs/Pond2/Selector.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mespe/RHydrus/HEAD/inst/ExampleInputs/Pond2/Selector.in -------------------------------------------------------------------------------- /inst/ExampleInputs/Pond3.h1d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mespe/RHydrus/HEAD/inst/ExampleInputs/Pond3.h1d -------------------------------------------------------------------------------- /inst/ExampleInputs/Pond3/ATMOSPH.IN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mespe/RHydrus/HEAD/inst/ExampleInputs/Pond3/ATMOSPH.IN -------------------------------------------------------------------------------- /inst/ExampleInputs/Pond3/DESCRIPT.TXT: -------------------------------------------------------------------------------- 1 | Pcp_File_Version=1 2 | Atmospheric boundary with limited surface water layer -------------------------------------------------------------------------------- /inst/ExampleInputs/Pond3/Hydrus1d.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mespe/RHydrus/HEAD/inst/ExampleInputs/Pond3/Hydrus1d.dat -------------------------------------------------------------------------------- /inst/ExampleInputs/Pond3/PROFILE.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mespe/RHydrus/HEAD/inst/ExampleInputs/Pond3/PROFILE.DAT -------------------------------------------------------------------------------- /inst/ExampleInputs/Pond3/Selector.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mespe/RHydrus/HEAD/inst/ExampleInputs/Pond3/Selector.in -------------------------------------------------------------------------------- /inst/ExampleInputs/Pond4.h1d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mespe/RHydrus/HEAD/inst/ExampleInputs/Pond4.h1d -------------------------------------------------------------------------------- /inst/ExampleInputs/Pond4/ATMOSPH.IN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mespe/RHydrus/HEAD/inst/ExampleInputs/Pond4/ATMOSPH.IN -------------------------------------------------------------------------------- /inst/ExampleInputs/Pond4/DESCRIPT.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mespe/RHydrus/HEAD/inst/ExampleInputs/Pond4/DESCRIPT.TXT -------------------------------------------------------------------------------- /inst/ExampleInputs/Pond4/HYDRUS1D.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mespe/RHydrus/HEAD/inst/ExampleInputs/Pond4/HYDRUS1D.DAT -------------------------------------------------------------------------------- /inst/ExampleInputs/Pond4/PROFILE.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mespe/RHydrus/HEAD/inst/ExampleInputs/Pond4/PROFILE.DAT -------------------------------------------------------------------------------- /inst/ExampleInputs/Pond4/SELECTOR.IN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mespe/RHydrus/HEAD/inst/ExampleInputs/Pond4/SELECTOR.IN -------------------------------------------------------------------------------- /inst/ExampleInputs/Pond5.h1d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mespe/RHydrus/HEAD/inst/ExampleInputs/Pond5.h1d -------------------------------------------------------------------------------- /inst/ExampleInputs/Pond5/ATMOSPH.IN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mespe/RHydrus/HEAD/inst/ExampleInputs/Pond5/ATMOSPH.IN -------------------------------------------------------------------------------- /inst/ExampleInputs/Pond5/DESCRIPT.TXT: -------------------------------------------------------------------------------- 1 | Pcp_File_Version=1 2 | Falling head BC - Infiltration from ponding -------------------------------------------------------------------------------- /inst/ExampleInputs/Pond5/HYDRUS1D.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mespe/RHydrus/HEAD/inst/ExampleInputs/Pond5/HYDRUS1D.DAT -------------------------------------------------------------------------------- /inst/ExampleInputs/Pond5/PROFILE.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mespe/RHydrus/HEAD/inst/ExampleInputs/Pond5/PROFILE.DAT -------------------------------------------------------------------------------- /inst/ExampleInputs/Pond5/SELECTOR.IN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mespe/RHydrus/HEAD/inst/ExampleInputs/Pond5/SELECTOR.IN -------------------------------------------------------------------------------- /src/HYDRUS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mespe/RHydrus/HEAD/src/HYDRUS.c -------------------------------------------------------------------------------- /src/HYDRUS_clone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mespe/RHydrus/HEAD/src/HYDRUS_clone.c -------------------------------------------------------------------------------- /src/HYSTER.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mespe/RHydrus/HEAD/src/HYSTER.c -------------------------------------------------------------------------------- /src/INPUT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mespe/RHydrus/HEAD/src/INPUT.c -------------------------------------------------------------------------------- /src/MATERIAL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mespe/RHydrus/HEAD/src/MATERIAL.c -------------------------------------------------------------------------------- /src/Makevars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mespe/RHydrus/HEAD/src/Makevars -------------------------------------------------------------------------------- /src/OUTPUT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mespe/RHydrus/HEAD/src/OUTPUT.c -------------------------------------------------------------------------------- /src/RHydrus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mespe/RHydrus/HEAD/src/RHydrus.h -------------------------------------------------------------------------------- /src/Rhydrus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mespe/RHydrus/HEAD/src/Rhydrus.c -------------------------------------------------------------------------------- /src/SINK.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mespe/RHydrus/HEAD/src/SINK.c -------------------------------------------------------------------------------- /src/SOLUTE.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mespe/RHydrus/HEAD/src/SOLUTE.c -------------------------------------------------------------------------------- /src/TEMPER.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mespe/RHydrus/HEAD/src/TEMPER.c -------------------------------------------------------------------------------- /src/TIME.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mespe/RHydrus/HEAD/src/TIME.c -------------------------------------------------------------------------------- /src/WATFLOW.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mespe/RHydrus/HEAD/src/WATFLOW.c -------------------------------------------------------------------------------- /src/fortran_src/HYDRUS.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mespe/RHydrus/HEAD/src/fortran_src/HYDRUS.f -------------------------------------------------------------------------------- /src/fortran_src/HYSTER.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mespe/RHydrus/HEAD/src/fortran_src/HYSTER.f -------------------------------------------------------------------------------- /src/fortran_src/INPUT.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mespe/RHydrus/HEAD/src/fortran_src/INPUT.f -------------------------------------------------------------------------------- /src/fortran_src/MATERIAL.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mespe/RHydrus/HEAD/src/fortran_src/MATERIAL.f -------------------------------------------------------------------------------- /src/fortran_src/OUTPUT.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mespe/RHydrus/HEAD/src/fortran_src/OUTPUT.f -------------------------------------------------------------------------------- /src/fortran_src/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mespe/RHydrus/HEAD/src/fortran_src/README -------------------------------------------------------------------------------- /src/fortran_src/SINK.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mespe/RHydrus/HEAD/src/fortran_src/SINK.f -------------------------------------------------------------------------------- /src/fortran_src/SOLUTE.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mespe/RHydrus/HEAD/src/fortran_src/SOLUTE.f -------------------------------------------------------------------------------- /src/fortran_src/TEMPER.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mespe/RHydrus/HEAD/src/fortran_src/TEMPER.f -------------------------------------------------------------------------------- /src/fortran_src/TIME.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mespe/RHydrus/HEAD/src/fortran_src/TIME.f -------------------------------------------------------------------------------- /src/fortran_src/WATFLOW.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mespe/RHydrus/HEAD/src/fortran_src/WATFLOW.f -------------------------------------------------------------------------------- /src/proxies.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mespe/RHydrus/HEAD/src/proxies.c --------------------------------------------------------------------------------