├── .gitignore ├── Figures ├── Fig1-git.jpg ├── Fig2-git.png ├── WVRT_plot_20141017000000.png ├── moisture_sink_20141006000000.png └── moisture_source_20141017000000.png ├── Inputs ├── input_back_WRF_EVAL_CAN.cfg └── input_back_WRF_EVAL_MED.cfg ├── LICENSE ├── Logo └── LogoV1.png ├── Masks ├── CAN.nc └── MET.nc ├── README.md ├── output ├── 20141006000000 │ ├── 20141006000000.txt │ ├── 20141006000000_dqdt_forw.nc │ ├── 20141006000000_parposit_forw.nc │ ├── forw_20141006000000.nc │ └── moisture_sink_20141006000000.png ├── 20141017000000 │ ├── 20141017000000.txt │ ├── 20141017000000_dqdt_back.nc │ ├── 20141017000000_parposit_back.nc │ ├── WVRT_20141017000000.nc │ ├── WVRT_plot_20141017000000.png │ ├── back_20141017000000.nc │ └── moisture_source_20141017000000.png ├── lat_plot.txt └── lon_plot.txt ├── run_example_HPC ├── run_TROVA.py └── run_trova.sh └── src ├── README.md ├── install_trova.sh ├── setup.py └── trova ├── LAST_UPDATE ├── VERSION ├── __init__.py ├── _version.py ├── buid_trova_so.sh ├── functions.f90 └── trova.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tramo-ephyslab/TROVA-master/HEAD/.gitignore -------------------------------------------------------------------------------- /Figures/Fig1-git.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tramo-ephyslab/TROVA-master/HEAD/Figures/Fig1-git.jpg -------------------------------------------------------------------------------- /Figures/Fig2-git.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tramo-ephyslab/TROVA-master/HEAD/Figures/Fig2-git.png -------------------------------------------------------------------------------- /Figures/WVRT_plot_20141017000000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tramo-ephyslab/TROVA-master/HEAD/Figures/WVRT_plot_20141017000000.png -------------------------------------------------------------------------------- /Figures/moisture_sink_20141006000000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tramo-ephyslab/TROVA-master/HEAD/Figures/moisture_sink_20141006000000.png -------------------------------------------------------------------------------- /Figures/moisture_source_20141017000000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tramo-ephyslab/TROVA-master/HEAD/Figures/moisture_source_20141017000000.png -------------------------------------------------------------------------------- /Inputs/input_back_WRF_EVAL_CAN.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tramo-ephyslab/TROVA-master/HEAD/Inputs/input_back_WRF_EVAL_CAN.cfg -------------------------------------------------------------------------------- /Inputs/input_back_WRF_EVAL_MED.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tramo-ephyslab/TROVA-master/HEAD/Inputs/input_back_WRF_EVAL_MED.cfg -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tramo-ephyslab/TROVA-master/HEAD/LICENSE -------------------------------------------------------------------------------- /Logo/LogoV1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tramo-ephyslab/TROVA-master/HEAD/Logo/LogoV1.png -------------------------------------------------------------------------------- /Masks/CAN.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tramo-ephyslab/TROVA-master/HEAD/Masks/CAN.nc -------------------------------------------------------------------------------- /Masks/MET.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tramo-ephyslab/TROVA-master/HEAD/Masks/MET.nc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tramo-ephyslab/TROVA-master/HEAD/README.md -------------------------------------------------------------------------------- /output/20141006000000/20141006000000.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tramo-ephyslab/TROVA-master/HEAD/output/20141006000000/20141006000000.txt -------------------------------------------------------------------------------- /output/20141006000000/20141006000000_dqdt_forw.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tramo-ephyslab/TROVA-master/HEAD/output/20141006000000/20141006000000_dqdt_forw.nc -------------------------------------------------------------------------------- /output/20141006000000/20141006000000_parposit_forw.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tramo-ephyslab/TROVA-master/HEAD/output/20141006000000/20141006000000_parposit_forw.nc -------------------------------------------------------------------------------- /output/20141006000000/forw_20141006000000.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tramo-ephyslab/TROVA-master/HEAD/output/20141006000000/forw_20141006000000.nc -------------------------------------------------------------------------------- /output/20141006000000/moisture_sink_20141006000000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tramo-ephyslab/TROVA-master/HEAD/output/20141006000000/moisture_sink_20141006000000.png -------------------------------------------------------------------------------- /output/20141017000000/20141017000000.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tramo-ephyslab/TROVA-master/HEAD/output/20141017000000/20141017000000.txt -------------------------------------------------------------------------------- /output/20141017000000/20141017000000_dqdt_back.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tramo-ephyslab/TROVA-master/HEAD/output/20141017000000/20141017000000_dqdt_back.nc -------------------------------------------------------------------------------- /output/20141017000000/20141017000000_parposit_back.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tramo-ephyslab/TROVA-master/HEAD/output/20141017000000/20141017000000_parposit_back.nc -------------------------------------------------------------------------------- /output/20141017000000/WVRT_20141017000000.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tramo-ephyslab/TROVA-master/HEAD/output/20141017000000/WVRT_20141017000000.nc -------------------------------------------------------------------------------- /output/20141017000000/WVRT_plot_20141017000000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tramo-ephyslab/TROVA-master/HEAD/output/20141017000000/WVRT_plot_20141017000000.png -------------------------------------------------------------------------------- /output/20141017000000/back_20141017000000.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tramo-ephyslab/TROVA-master/HEAD/output/20141017000000/back_20141017000000.nc -------------------------------------------------------------------------------- /output/20141017000000/moisture_source_20141017000000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tramo-ephyslab/TROVA-master/HEAD/output/20141017000000/moisture_source_20141017000000.png -------------------------------------------------------------------------------- /output/lat_plot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tramo-ephyslab/TROVA-master/HEAD/output/lat_plot.txt -------------------------------------------------------------------------------- /output/lon_plot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tramo-ephyslab/TROVA-master/HEAD/output/lon_plot.txt -------------------------------------------------------------------------------- /run_example_HPC/run_TROVA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tramo-ephyslab/TROVA-master/HEAD/run_example_HPC/run_TROVA.py -------------------------------------------------------------------------------- /run_example_HPC/run_trova.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tramo-ephyslab/TROVA-master/HEAD/run_example_HPC/run_trova.sh -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tramo-ephyslab/TROVA-master/HEAD/src/README.md -------------------------------------------------------------------------------- /src/install_trova.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | python setup.py install 4 | -------------------------------------------------------------------------------- /src/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tramo-ephyslab/TROVA-master/HEAD/src/setup.py -------------------------------------------------------------------------------- /src/trova/LAST_UPDATE: -------------------------------------------------------------------------------- 1 | 15-02-2025 2 | -------------------------------------------------------------------------------- /src/trova/VERSION: -------------------------------------------------------------------------------- 1 | 1.1.1 2 | -------------------------------------------------------------------------------- /src/trova/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tramo-ephyslab/TROVA-master/HEAD/src/trova/__init__.py -------------------------------------------------------------------------------- /src/trova/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tramo-ephyslab/TROVA-master/HEAD/src/trova/_version.py -------------------------------------------------------------------------------- /src/trova/buid_trova_so.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tramo-ephyslab/TROVA-master/HEAD/src/trova/buid_trova_so.sh -------------------------------------------------------------------------------- /src/trova/functions.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tramo-ephyslab/TROVA-master/HEAD/src/trova/functions.f90 -------------------------------------------------------------------------------- /src/trova/trova.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tramo-ephyslab/TROVA-master/HEAD/src/trova/trova.py --------------------------------------------------------------------------------