William Jenkins
Scripps Institution of Oceanography
wjenkins@ucsd.edu
This package contains Python utilities for interacting with the popular ocean acoustics modeling software, Acoustics Toolbox (AT), developed and maintained by Mike Porter. Code in this package has been adapted primarily from:
- Hunter Akins' PyAT
- Aaron Thodes' MATLAB scripts for interacting with AT.
Current functionality includes:
- KRAKEN (normal modes)
- Basic transmission loss plotting.
- Basic signal processing functions.
Future intended functionality:
- Bellhop (ray tracing)
- Additional plotting functions
- IO functions for reading in experimental data.
- Robust signal processing workflows (e.g., matched field processing)
TritonOA
can be built directly from source or installed using pip
.
- Open a terminal and navigate to the desired installation directory.
- Save
TritonOA.yml
to the directory by running:
a. MacOS:
curl -LJO https://raw.githubusercontent.com/NeptuneProjects/TritonOA/master/TritonOA.yml
b. Linux:
wget --no-check-certificate --content-disposition https://raw.githubusercontent.com/NeptuneProjects/TritonOA/master/TritonOA.yml
- In Terminal, run:
conda env create -f TritonOA.yml
- Once the environment is set up and the package is installed, activate your environment by running:
conda activate TritonOA
- In a virtual environment, run:
pip install git+https://github.com/NeptuneProjects/TritonOA.git
A Jupyter notebooks illustrating use cases is provided in the tutorials
folder.