├── .gitmodules ├── LICENSE.txt ├── README.md ├── RELEASE_NOTES.md ├── hrldas ├── HRLDAS_forcing │ ├── Makefile │ ├── create_forcing.F │ ├── lib │ │ ├── Makefile │ │ ├── arguments_module.F │ │ ├── cio.c │ │ ├── decode_jpeg2000.c │ │ ├── gbytesys.F │ │ ├── get_unused_unit.F │ │ ├── io_f.c │ │ ├── kwm_date_utilities.F │ │ ├── kwm_grid_utilities.F │ │ ├── kwm_string_utilities.F │ │ ├── kwm_timing_utilities.F │ │ ├── module_geo_em.F │ │ ├── module_grib.F │ │ ├── module_grib1.F │ │ ├── module_grib2.F │ │ ├── module_grib2_tables.F │ │ ├── module_grib_common.F │ │ ├── module_input_data_structure.F │ │ ├── module_llxy.F │ │ ├── module_mapinfo.F │ │ ├── module_wrfinputfile.F │ │ ├── swap4c.c │ │ ├── swap4f.F │ │ └── trig_degrees.F │ └── run │ │ ├── Makefile │ │ ├── README.namelist │ │ └── examples │ │ ├── ERA5 │ │ ├── Prepare_ERA5-Land_Forcing.sh │ │ ├── extract_era5_init.py │ │ └── namelist.input.ERA5 │ │ ├── GLDAS │ │ ├── GLDASp4_elevation_025d.nc4 │ │ ├── Makefile │ │ ├── check_SW.ncl │ │ ├── combine_precips_netcdf.f90 │ │ ├── combine_precips_netcdf.perl │ │ ├── create_UV_netcdf.f90 │ │ ├── create_UV_netcdf.perl │ │ ├── extract_gldas.py │ │ ├── extract_gldas_init.py │ │ ├── fill_SSRD.f90 │ │ ├── fill_SSRD.perl │ │ └── namelist.input.GLDAS │ │ ├── NARR │ │ ├── NARR.LANDSEA_MASK.grb.gz │ │ ├── NARR_ELEVATION.grb.gz │ │ ├── NARR_lat.gz │ │ ├── NARR_lon.gz │ │ ├── check_SW.ncl │ │ ├── extract_narr_30m.perl │ │ ├── extract_narr_init.perl │ │ ├── extract_narr_sfc.perl │ │ ├── fill_DSWRF.f90 │ │ ├── fill_DSWRF.perl │ │ └── namelist.input.NARR │ │ ├── NLDAS │ │ ├── NLDAS_ELEVATION.grb.gz │ │ ├── extract_nldas.perl │ │ ├── extract_nldas_init.perl │ │ └── namelist.input.NLDAS │ │ ├── namelist.example.complex │ │ ├── namelist.example.simple │ │ ├── single_point │ │ ├── Makefile │ │ ├── bondville.dat │ │ └── create_point_data.f90 │ │ ├── single_point_MLDAS │ │ ├── Makefile │ │ ├── bondville.dat │ │ └── create_point_data.f90 │ │ └── vector │ │ ├── create_ldasin_files.ncl │ │ ├── create_setup.ncl │ │ ├── location1.dat │ │ ├── location2.dat │ │ └── location3.dat ├── IO_code │ ├── Makefile │ ├── main_hrldas_driver.F │ ├── module_NoahMP_hrldas_driver.F │ └── module_hrldas_netcdf_io.F ├── MPP │ ├── CPL_WRF.F │ ├── Makefile.NoahMP │ └── mpp_land.F ├── Makefile ├── Utility_routines │ ├── Makefile │ ├── kwm_string_utilities.F │ ├── module_date_utilities.F │ ├── module_domain.F │ ├── module_model_constants.F │ ├── module_ra_gfdleta.F │ ├── module_wrf_error.F │ └── module_wrf_utilities.F ├── arch │ ├── user_build_options.gfortran.mpi │ ├── user_build_options.gfortran.mpi.container │ ├── user_build_options.gfortran.mpi.derecho │ ├── user_build_options.gfortran.serial │ ├── user_build_options.gfortran.serial2 │ ├── user_build_options.ifort.mpi │ ├── user_build_options.ifort.mpi.derecho │ ├── user_build_options.ifort.serial │ ├── user_build_options.ifort.serial2 │ ├── user_build_options.pgi.mpi │ └── user_build_options.pgi.serial ├── configure ├── docs │ ├── README.ERA5 │ ├── README.GLDAS │ ├── README.NARR │ ├── README.NLDAS │ ├── README.single_point │ └── README.vector └── run │ ├── Makefile │ ├── NoahmpTable.TBL │ ├── README.namelist │ ├── URBPARM.TBL │ ├── URBPARM_LCZ.TBL │ ├── URBPARM_UZE.TBL │ ├── examples │ ├── ERA5 │ │ └── namelist.hrldas.ERA5 │ ├── GLDAS │ │ └── namelist.hrldas.GLDAS │ ├── NARR │ │ └── namelist.hrldas.NARR │ ├── NLDAS │ │ └── namelist.hrldas.NLDAS │ ├── single_MLDAS │ │ ├── Bondville_obs_2001.dat │ │ ├── MP-Crop-MLDAS-draft-v1.0.py │ │ ├── README.MLDAS │ │ ├── namelist.hrldas.examples │ │ └── restart │ │ │ └── RESTART.2001050100_DOMAIN1 │ ├── single_point │ │ └── namelist.hrldas.single_point │ └── vector │ │ └── namelist.hrldas.vector │ ├── namelist.hrldas_example │ ├── snicar_drdt_bst_fit_60_c070416.nc │ ├── snicar_optics_480bnd_c012422.nc │ └── snicar_optics_5bnd_c013122.nc ├── tutorial ├── NoahMP_docker_container_setup.pdf ├── Note0_Download_Compile.ipynb ├── Note1_Single_Point.ipynb ├── Note2_2D_NLDAS2_domain.ipynb ├── Note3_Output_Additional_Variables.ipynb ├── Note4_Code_Development_GitHub_Pull_Request.ipynb ├── Note5_Regional_modeling_ERA5-Land_forcing.ipynb ├── Note6_AMS2024_NoahMP_short_course.ipynb ├── Note7_AMS24_Tutorial_UFS_NoahMP_component.ipynb ├── README.md └── varibles_HRLDAS_setupfile.txt └── urban └── wrf ├── Makefile ├── NoahmpUrbanDriverMainMod.F ├── URBPARM.TBL ├── URBPARM_LCZ.TBL ├── URBPARM_UZE.TBL ├── module_bep_bem_helper.F ├── module_sf_bem.F ├── module_sf_bep.F ├── module_sf_bep_bem.F └── module_sf_urban.F /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE_NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/RELEASE_NOTES.md -------------------------------------------------------------------------------- /hrldas/HRLDAS_forcing/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/HRLDAS_forcing/Makefile -------------------------------------------------------------------------------- /hrldas/HRLDAS_forcing/create_forcing.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/HRLDAS_forcing/create_forcing.F -------------------------------------------------------------------------------- /hrldas/HRLDAS_forcing/lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/HRLDAS_forcing/lib/Makefile -------------------------------------------------------------------------------- /hrldas/HRLDAS_forcing/lib/arguments_module.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/HRLDAS_forcing/lib/arguments_module.F -------------------------------------------------------------------------------- /hrldas/HRLDAS_forcing/lib/cio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/HRLDAS_forcing/lib/cio.c -------------------------------------------------------------------------------- /hrldas/HRLDAS_forcing/lib/decode_jpeg2000.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/HRLDAS_forcing/lib/decode_jpeg2000.c -------------------------------------------------------------------------------- /hrldas/HRLDAS_forcing/lib/gbytesys.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/HRLDAS_forcing/lib/gbytesys.F -------------------------------------------------------------------------------- /hrldas/HRLDAS_forcing/lib/get_unused_unit.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/HRLDAS_forcing/lib/get_unused_unit.F -------------------------------------------------------------------------------- /hrldas/HRLDAS_forcing/lib/io_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/HRLDAS_forcing/lib/io_f.c -------------------------------------------------------------------------------- /hrldas/HRLDAS_forcing/lib/kwm_date_utilities.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/HRLDAS_forcing/lib/kwm_date_utilities.F -------------------------------------------------------------------------------- /hrldas/HRLDAS_forcing/lib/kwm_grid_utilities.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/HRLDAS_forcing/lib/kwm_grid_utilities.F -------------------------------------------------------------------------------- /hrldas/HRLDAS_forcing/lib/kwm_string_utilities.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/HRLDAS_forcing/lib/kwm_string_utilities.F -------------------------------------------------------------------------------- /hrldas/HRLDAS_forcing/lib/kwm_timing_utilities.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/HRLDAS_forcing/lib/kwm_timing_utilities.F -------------------------------------------------------------------------------- /hrldas/HRLDAS_forcing/lib/module_geo_em.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/HRLDAS_forcing/lib/module_geo_em.F -------------------------------------------------------------------------------- /hrldas/HRLDAS_forcing/lib/module_grib.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/HRLDAS_forcing/lib/module_grib.F -------------------------------------------------------------------------------- /hrldas/HRLDAS_forcing/lib/module_grib1.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/HRLDAS_forcing/lib/module_grib1.F -------------------------------------------------------------------------------- /hrldas/HRLDAS_forcing/lib/module_grib2.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/HRLDAS_forcing/lib/module_grib2.F -------------------------------------------------------------------------------- /hrldas/HRLDAS_forcing/lib/module_grib2_tables.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/HRLDAS_forcing/lib/module_grib2_tables.F -------------------------------------------------------------------------------- /hrldas/HRLDAS_forcing/lib/module_grib_common.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/HRLDAS_forcing/lib/module_grib_common.F -------------------------------------------------------------------------------- /hrldas/HRLDAS_forcing/lib/module_input_data_structure.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/HRLDAS_forcing/lib/module_input_data_structure.F -------------------------------------------------------------------------------- /hrldas/HRLDAS_forcing/lib/module_llxy.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/HRLDAS_forcing/lib/module_llxy.F -------------------------------------------------------------------------------- /hrldas/HRLDAS_forcing/lib/module_mapinfo.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/HRLDAS_forcing/lib/module_mapinfo.F -------------------------------------------------------------------------------- /hrldas/HRLDAS_forcing/lib/module_wrfinputfile.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/HRLDAS_forcing/lib/module_wrfinputfile.F -------------------------------------------------------------------------------- /hrldas/HRLDAS_forcing/lib/swap4c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/HRLDAS_forcing/lib/swap4c.c -------------------------------------------------------------------------------- /hrldas/HRLDAS_forcing/lib/swap4f.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/HRLDAS_forcing/lib/swap4f.F -------------------------------------------------------------------------------- /hrldas/HRLDAS_forcing/lib/trig_degrees.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/HRLDAS_forcing/lib/trig_degrees.F -------------------------------------------------------------------------------- /hrldas/HRLDAS_forcing/run/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/HRLDAS_forcing/run/Makefile -------------------------------------------------------------------------------- /hrldas/HRLDAS_forcing/run/README.namelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/HRLDAS_forcing/run/README.namelist -------------------------------------------------------------------------------- /hrldas/HRLDAS_forcing/run/examples/ERA5/Prepare_ERA5-Land_Forcing.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/HRLDAS_forcing/run/examples/ERA5/Prepare_ERA5-Land_Forcing.sh -------------------------------------------------------------------------------- /hrldas/HRLDAS_forcing/run/examples/ERA5/extract_era5_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/HRLDAS_forcing/run/examples/ERA5/extract_era5_init.py -------------------------------------------------------------------------------- /hrldas/HRLDAS_forcing/run/examples/ERA5/namelist.input.ERA5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/HRLDAS_forcing/run/examples/ERA5/namelist.input.ERA5 -------------------------------------------------------------------------------- /hrldas/HRLDAS_forcing/run/examples/GLDAS/GLDASp4_elevation_025d.nc4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/HRLDAS_forcing/run/examples/GLDAS/GLDASp4_elevation_025d.nc4 -------------------------------------------------------------------------------- /hrldas/HRLDAS_forcing/run/examples/GLDAS/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/HRLDAS_forcing/run/examples/GLDAS/Makefile -------------------------------------------------------------------------------- /hrldas/HRLDAS_forcing/run/examples/GLDAS/check_SW.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/HRLDAS_forcing/run/examples/GLDAS/check_SW.ncl -------------------------------------------------------------------------------- /hrldas/HRLDAS_forcing/run/examples/GLDAS/combine_precips_netcdf.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/HRLDAS_forcing/run/examples/GLDAS/combine_precips_netcdf.f90 -------------------------------------------------------------------------------- /hrldas/HRLDAS_forcing/run/examples/GLDAS/combine_precips_netcdf.perl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/HRLDAS_forcing/run/examples/GLDAS/combine_precips_netcdf.perl -------------------------------------------------------------------------------- /hrldas/HRLDAS_forcing/run/examples/GLDAS/create_UV_netcdf.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/HRLDAS_forcing/run/examples/GLDAS/create_UV_netcdf.f90 -------------------------------------------------------------------------------- /hrldas/HRLDAS_forcing/run/examples/GLDAS/create_UV_netcdf.perl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/HRLDAS_forcing/run/examples/GLDAS/create_UV_netcdf.perl -------------------------------------------------------------------------------- /hrldas/HRLDAS_forcing/run/examples/GLDAS/extract_gldas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/HRLDAS_forcing/run/examples/GLDAS/extract_gldas.py -------------------------------------------------------------------------------- /hrldas/HRLDAS_forcing/run/examples/GLDAS/extract_gldas_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/HRLDAS_forcing/run/examples/GLDAS/extract_gldas_init.py -------------------------------------------------------------------------------- /hrldas/HRLDAS_forcing/run/examples/GLDAS/fill_SSRD.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/HRLDAS_forcing/run/examples/GLDAS/fill_SSRD.f90 -------------------------------------------------------------------------------- /hrldas/HRLDAS_forcing/run/examples/GLDAS/fill_SSRD.perl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/HRLDAS_forcing/run/examples/GLDAS/fill_SSRD.perl -------------------------------------------------------------------------------- /hrldas/HRLDAS_forcing/run/examples/GLDAS/namelist.input.GLDAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/HRLDAS_forcing/run/examples/GLDAS/namelist.input.GLDAS -------------------------------------------------------------------------------- /hrldas/HRLDAS_forcing/run/examples/NARR/NARR.LANDSEA_MASK.grb.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/HRLDAS_forcing/run/examples/NARR/NARR.LANDSEA_MASK.grb.gz -------------------------------------------------------------------------------- /hrldas/HRLDAS_forcing/run/examples/NARR/NARR_ELEVATION.grb.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/HRLDAS_forcing/run/examples/NARR/NARR_ELEVATION.grb.gz -------------------------------------------------------------------------------- /hrldas/HRLDAS_forcing/run/examples/NARR/NARR_lat.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/HRLDAS_forcing/run/examples/NARR/NARR_lat.gz -------------------------------------------------------------------------------- /hrldas/HRLDAS_forcing/run/examples/NARR/NARR_lon.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/HRLDAS_forcing/run/examples/NARR/NARR_lon.gz -------------------------------------------------------------------------------- /hrldas/HRLDAS_forcing/run/examples/NARR/check_SW.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/HRLDAS_forcing/run/examples/NARR/check_SW.ncl -------------------------------------------------------------------------------- /hrldas/HRLDAS_forcing/run/examples/NARR/extract_narr_30m.perl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/HRLDAS_forcing/run/examples/NARR/extract_narr_30m.perl -------------------------------------------------------------------------------- /hrldas/HRLDAS_forcing/run/examples/NARR/extract_narr_init.perl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/HRLDAS_forcing/run/examples/NARR/extract_narr_init.perl -------------------------------------------------------------------------------- /hrldas/HRLDAS_forcing/run/examples/NARR/extract_narr_sfc.perl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/HRLDAS_forcing/run/examples/NARR/extract_narr_sfc.perl -------------------------------------------------------------------------------- /hrldas/HRLDAS_forcing/run/examples/NARR/fill_DSWRF.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/HRLDAS_forcing/run/examples/NARR/fill_DSWRF.f90 -------------------------------------------------------------------------------- /hrldas/HRLDAS_forcing/run/examples/NARR/fill_DSWRF.perl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/HRLDAS_forcing/run/examples/NARR/fill_DSWRF.perl -------------------------------------------------------------------------------- /hrldas/HRLDAS_forcing/run/examples/NARR/namelist.input.NARR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/HRLDAS_forcing/run/examples/NARR/namelist.input.NARR -------------------------------------------------------------------------------- /hrldas/HRLDAS_forcing/run/examples/NLDAS/NLDAS_ELEVATION.grb.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/HRLDAS_forcing/run/examples/NLDAS/NLDAS_ELEVATION.grb.gz -------------------------------------------------------------------------------- /hrldas/HRLDAS_forcing/run/examples/NLDAS/extract_nldas.perl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/HRLDAS_forcing/run/examples/NLDAS/extract_nldas.perl -------------------------------------------------------------------------------- /hrldas/HRLDAS_forcing/run/examples/NLDAS/extract_nldas_init.perl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/HRLDAS_forcing/run/examples/NLDAS/extract_nldas_init.perl -------------------------------------------------------------------------------- /hrldas/HRLDAS_forcing/run/examples/NLDAS/namelist.input.NLDAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/HRLDAS_forcing/run/examples/NLDAS/namelist.input.NLDAS -------------------------------------------------------------------------------- /hrldas/HRLDAS_forcing/run/examples/namelist.example.complex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/HRLDAS_forcing/run/examples/namelist.example.complex -------------------------------------------------------------------------------- /hrldas/HRLDAS_forcing/run/examples/namelist.example.simple: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/HRLDAS_forcing/run/examples/namelist.example.simple -------------------------------------------------------------------------------- /hrldas/HRLDAS_forcing/run/examples/single_point/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/HRLDAS_forcing/run/examples/single_point/Makefile -------------------------------------------------------------------------------- /hrldas/HRLDAS_forcing/run/examples/single_point/bondville.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/HRLDAS_forcing/run/examples/single_point/bondville.dat -------------------------------------------------------------------------------- /hrldas/HRLDAS_forcing/run/examples/single_point/create_point_data.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/HRLDAS_forcing/run/examples/single_point/create_point_data.f90 -------------------------------------------------------------------------------- /hrldas/HRLDAS_forcing/run/examples/single_point_MLDAS/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/HRLDAS_forcing/run/examples/single_point_MLDAS/Makefile -------------------------------------------------------------------------------- /hrldas/HRLDAS_forcing/run/examples/single_point_MLDAS/bondville.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/HRLDAS_forcing/run/examples/single_point_MLDAS/bondville.dat -------------------------------------------------------------------------------- /hrldas/HRLDAS_forcing/run/examples/single_point_MLDAS/create_point_data.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/HRLDAS_forcing/run/examples/single_point_MLDAS/create_point_data.f90 -------------------------------------------------------------------------------- /hrldas/HRLDAS_forcing/run/examples/vector/create_ldasin_files.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/HRLDAS_forcing/run/examples/vector/create_ldasin_files.ncl -------------------------------------------------------------------------------- /hrldas/HRLDAS_forcing/run/examples/vector/create_setup.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/HRLDAS_forcing/run/examples/vector/create_setup.ncl -------------------------------------------------------------------------------- /hrldas/HRLDAS_forcing/run/examples/vector/location1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/HRLDAS_forcing/run/examples/vector/location1.dat -------------------------------------------------------------------------------- /hrldas/HRLDAS_forcing/run/examples/vector/location2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/HRLDAS_forcing/run/examples/vector/location2.dat -------------------------------------------------------------------------------- /hrldas/HRLDAS_forcing/run/examples/vector/location3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/HRLDAS_forcing/run/examples/vector/location3.dat -------------------------------------------------------------------------------- /hrldas/IO_code/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/IO_code/Makefile -------------------------------------------------------------------------------- /hrldas/IO_code/main_hrldas_driver.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/IO_code/main_hrldas_driver.F -------------------------------------------------------------------------------- /hrldas/IO_code/module_NoahMP_hrldas_driver.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/IO_code/module_NoahMP_hrldas_driver.F -------------------------------------------------------------------------------- /hrldas/IO_code/module_hrldas_netcdf_io.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/IO_code/module_hrldas_netcdf_io.F -------------------------------------------------------------------------------- /hrldas/MPP/CPL_WRF.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/MPP/CPL_WRF.F -------------------------------------------------------------------------------- /hrldas/MPP/Makefile.NoahMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/MPP/Makefile.NoahMP -------------------------------------------------------------------------------- /hrldas/MPP/mpp_land.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/MPP/mpp_land.F -------------------------------------------------------------------------------- /hrldas/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/Makefile -------------------------------------------------------------------------------- /hrldas/Utility_routines/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/Utility_routines/Makefile -------------------------------------------------------------------------------- /hrldas/Utility_routines/kwm_string_utilities.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/Utility_routines/kwm_string_utilities.F -------------------------------------------------------------------------------- /hrldas/Utility_routines/module_date_utilities.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/Utility_routines/module_date_utilities.F -------------------------------------------------------------------------------- /hrldas/Utility_routines/module_domain.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/Utility_routines/module_domain.F -------------------------------------------------------------------------------- /hrldas/Utility_routines/module_model_constants.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/Utility_routines/module_model_constants.F -------------------------------------------------------------------------------- /hrldas/Utility_routines/module_ra_gfdleta.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/Utility_routines/module_ra_gfdleta.F -------------------------------------------------------------------------------- /hrldas/Utility_routines/module_wrf_error.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/Utility_routines/module_wrf_error.F -------------------------------------------------------------------------------- /hrldas/Utility_routines/module_wrf_utilities.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/Utility_routines/module_wrf_utilities.F -------------------------------------------------------------------------------- /hrldas/arch/user_build_options.gfortran.mpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/arch/user_build_options.gfortran.mpi -------------------------------------------------------------------------------- /hrldas/arch/user_build_options.gfortran.mpi.container: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/arch/user_build_options.gfortran.mpi.container -------------------------------------------------------------------------------- /hrldas/arch/user_build_options.gfortran.mpi.derecho: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/arch/user_build_options.gfortran.mpi.derecho -------------------------------------------------------------------------------- /hrldas/arch/user_build_options.gfortran.serial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/arch/user_build_options.gfortran.serial -------------------------------------------------------------------------------- /hrldas/arch/user_build_options.gfortran.serial2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/arch/user_build_options.gfortran.serial2 -------------------------------------------------------------------------------- /hrldas/arch/user_build_options.ifort.mpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/arch/user_build_options.ifort.mpi -------------------------------------------------------------------------------- /hrldas/arch/user_build_options.ifort.mpi.derecho: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/arch/user_build_options.ifort.mpi.derecho -------------------------------------------------------------------------------- /hrldas/arch/user_build_options.ifort.serial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/arch/user_build_options.ifort.serial -------------------------------------------------------------------------------- /hrldas/arch/user_build_options.ifort.serial2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/arch/user_build_options.ifort.serial2 -------------------------------------------------------------------------------- /hrldas/arch/user_build_options.pgi.mpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/arch/user_build_options.pgi.mpi -------------------------------------------------------------------------------- /hrldas/arch/user_build_options.pgi.serial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/arch/user_build_options.pgi.serial -------------------------------------------------------------------------------- /hrldas/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/configure -------------------------------------------------------------------------------- /hrldas/docs/README.ERA5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/docs/README.ERA5 -------------------------------------------------------------------------------- /hrldas/docs/README.GLDAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/docs/README.GLDAS -------------------------------------------------------------------------------- /hrldas/docs/README.NARR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/docs/README.NARR -------------------------------------------------------------------------------- /hrldas/docs/README.NLDAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/docs/README.NLDAS -------------------------------------------------------------------------------- /hrldas/docs/README.single_point: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/docs/README.single_point -------------------------------------------------------------------------------- /hrldas/docs/README.vector: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/docs/README.vector -------------------------------------------------------------------------------- /hrldas/run/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/run/Makefile -------------------------------------------------------------------------------- /hrldas/run/NoahmpTable.TBL: -------------------------------------------------------------------------------- 1 | ../../noahmp/parameters/NoahmpTable.TBL -------------------------------------------------------------------------------- /hrldas/run/README.namelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/run/README.namelist -------------------------------------------------------------------------------- /hrldas/run/URBPARM.TBL: -------------------------------------------------------------------------------- 1 | ../../urban/wrf/URBPARM.TBL -------------------------------------------------------------------------------- /hrldas/run/URBPARM_LCZ.TBL: -------------------------------------------------------------------------------- 1 | ../../urban/wrf/URBPARM_LCZ.TBL -------------------------------------------------------------------------------- /hrldas/run/URBPARM_UZE.TBL: -------------------------------------------------------------------------------- 1 | ../../urban/wrf/URBPARM_UZE.TBL -------------------------------------------------------------------------------- /hrldas/run/examples/ERA5/namelist.hrldas.ERA5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/run/examples/ERA5/namelist.hrldas.ERA5 -------------------------------------------------------------------------------- /hrldas/run/examples/GLDAS/namelist.hrldas.GLDAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/run/examples/GLDAS/namelist.hrldas.GLDAS -------------------------------------------------------------------------------- /hrldas/run/examples/NARR/namelist.hrldas.NARR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/run/examples/NARR/namelist.hrldas.NARR -------------------------------------------------------------------------------- /hrldas/run/examples/NLDAS/namelist.hrldas.NLDAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/run/examples/NLDAS/namelist.hrldas.NLDAS -------------------------------------------------------------------------------- /hrldas/run/examples/single_MLDAS/Bondville_obs_2001.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/run/examples/single_MLDAS/Bondville_obs_2001.dat -------------------------------------------------------------------------------- /hrldas/run/examples/single_MLDAS/MP-Crop-MLDAS-draft-v1.0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/run/examples/single_MLDAS/MP-Crop-MLDAS-draft-v1.0.py -------------------------------------------------------------------------------- /hrldas/run/examples/single_MLDAS/README.MLDAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/run/examples/single_MLDAS/README.MLDAS -------------------------------------------------------------------------------- /hrldas/run/examples/single_MLDAS/namelist.hrldas.examples: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/run/examples/single_MLDAS/namelist.hrldas.examples -------------------------------------------------------------------------------- /hrldas/run/examples/single_MLDAS/restart/RESTART.2001050100_DOMAIN1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/run/examples/single_MLDAS/restart/RESTART.2001050100_DOMAIN1 -------------------------------------------------------------------------------- /hrldas/run/examples/single_point/namelist.hrldas.single_point: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/run/examples/single_point/namelist.hrldas.single_point -------------------------------------------------------------------------------- /hrldas/run/examples/vector/namelist.hrldas.vector: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/run/examples/vector/namelist.hrldas.vector -------------------------------------------------------------------------------- /hrldas/run/namelist.hrldas_example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/hrldas/run/namelist.hrldas_example -------------------------------------------------------------------------------- /hrldas/run/snicar_drdt_bst_fit_60_c070416.nc: -------------------------------------------------------------------------------- 1 | ../../noahmp/parameters/snicar_drdt_bst_fit_60_c070416.nc -------------------------------------------------------------------------------- /hrldas/run/snicar_optics_480bnd_c012422.nc: -------------------------------------------------------------------------------- 1 | ../../noahmp/parameters/snicar_optics_480bnd_c012422.nc -------------------------------------------------------------------------------- /hrldas/run/snicar_optics_5bnd_c013122.nc: -------------------------------------------------------------------------------- 1 | ../../noahmp/parameters/snicar_optics_5bnd_c013122.nc -------------------------------------------------------------------------------- /tutorial/NoahMP_docker_container_setup.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/tutorial/NoahMP_docker_container_setup.pdf -------------------------------------------------------------------------------- /tutorial/Note0_Download_Compile.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/tutorial/Note0_Download_Compile.ipynb -------------------------------------------------------------------------------- /tutorial/Note1_Single_Point.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/tutorial/Note1_Single_Point.ipynb -------------------------------------------------------------------------------- /tutorial/Note2_2D_NLDAS2_domain.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/tutorial/Note2_2D_NLDAS2_domain.ipynb -------------------------------------------------------------------------------- /tutorial/Note3_Output_Additional_Variables.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/tutorial/Note3_Output_Additional_Variables.ipynb -------------------------------------------------------------------------------- /tutorial/Note4_Code_Development_GitHub_Pull_Request.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/tutorial/Note4_Code_Development_GitHub_Pull_Request.ipynb -------------------------------------------------------------------------------- /tutorial/Note5_Regional_modeling_ERA5-Land_forcing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/tutorial/Note5_Regional_modeling_ERA5-Land_forcing.ipynb -------------------------------------------------------------------------------- /tutorial/Note6_AMS2024_NoahMP_short_course.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/tutorial/Note6_AMS2024_NoahMP_short_course.ipynb -------------------------------------------------------------------------------- /tutorial/Note7_AMS24_Tutorial_UFS_NoahMP_component.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/tutorial/Note7_AMS24_Tutorial_UFS_NoahMP_component.ipynb -------------------------------------------------------------------------------- /tutorial/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/tutorial/README.md -------------------------------------------------------------------------------- /tutorial/varibles_HRLDAS_setupfile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/tutorial/varibles_HRLDAS_setupfile.txt -------------------------------------------------------------------------------- /urban/wrf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/urban/wrf/Makefile -------------------------------------------------------------------------------- /urban/wrf/NoahmpUrbanDriverMainMod.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/urban/wrf/NoahmpUrbanDriverMainMod.F -------------------------------------------------------------------------------- /urban/wrf/URBPARM.TBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/urban/wrf/URBPARM.TBL -------------------------------------------------------------------------------- /urban/wrf/URBPARM_LCZ.TBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/urban/wrf/URBPARM_LCZ.TBL -------------------------------------------------------------------------------- /urban/wrf/URBPARM_UZE.TBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/urban/wrf/URBPARM_UZE.TBL -------------------------------------------------------------------------------- /urban/wrf/module_bep_bem_helper.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/urban/wrf/module_bep_bem_helper.F -------------------------------------------------------------------------------- /urban/wrf/module_sf_bem.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/urban/wrf/module_sf_bem.F -------------------------------------------------------------------------------- /urban/wrf/module_sf_bep.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/urban/wrf/module_sf_bep.F -------------------------------------------------------------------------------- /urban/wrf/module_sf_bep_bem.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/urban/wrf/module_sf_bep_bem.F -------------------------------------------------------------------------------- /urban/wrf/module_sf_urban.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/hrldas/HEAD/urban/wrf/module_sf_urban.F --------------------------------------------------------------------------------