├── .gitignore ├── How_use_netCDF_Reader.ipynb ├── README.md ├── defaults.json ├── fourier.py ├── initial.py ├── internal_forced.py ├── namelist.py ├── nc_tools.py ├── netCDF_Reader.py ├── plot_wake_directly.py ├── plotting.py ├── requirements.txt ├── rossby.py ├── screenshots └── wake.png ├── script_read_netcdf.py ├── shipwake.py ├── shipwake_arbitrary.py ├── starter.py ├── wave2d.py └── wavepackets.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | history.nc 3 | 4 | -------------------------------------------------------------------------------- /How_use_netCDF_Reader.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/wave2d/HEAD/How_use_netCDF_Reader.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/wave2d/HEAD/README.md -------------------------------------------------------------------------------- /defaults.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/wave2d/HEAD/defaults.json -------------------------------------------------------------------------------- /fourier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/wave2d/HEAD/fourier.py -------------------------------------------------------------------------------- /initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/wave2d/HEAD/initial.py -------------------------------------------------------------------------------- /internal_forced.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/wave2d/HEAD/internal_forced.py -------------------------------------------------------------------------------- /namelist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/wave2d/HEAD/namelist.py -------------------------------------------------------------------------------- /nc_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/wave2d/HEAD/nc_tools.py -------------------------------------------------------------------------------- /netCDF_Reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/wave2d/HEAD/netCDF_Reader.py -------------------------------------------------------------------------------- /plot_wake_directly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/wave2d/HEAD/plot_wake_directly.py -------------------------------------------------------------------------------- /plotting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/wave2d/HEAD/plotting.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/wave2d/HEAD/requirements.txt -------------------------------------------------------------------------------- /rossby.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/wave2d/HEAD/rossby.py -------------------------------------------------------------------------------- /screenshots/wake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/wave2d/HEAD/screenshots/wake.png -------------------------------------------------------------------------------- /script_read_netcdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/wave2d/HEAD/script_read_netcdf.py -------------------------------------------------------------------------------- /shipwake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/wave2d/HEAD/shipwake.py -------------------------------------------------------------------------------- /shipwake_arbitrary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/wave2d/HEAD/shipwake_arbitrary.py -------------------------------------------------------------------------------- /starter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/wave2d/HEAD/starter.py -------------------------------------------------------------------------------- /wave2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/wave2d/HEAD/wave2d.py -------------------------------------------------------------------------------- /wavepackets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/wave2d/HEAD/wavepackets.py --------------------------------------------------------------------------------