Matlab-to-SPINS grid ordering: Difference between revisions

From Fluids Wiki
Jump to navigation Jump to search
mNo edit summary
Line 19: Line 19:
* <code>resize_z.m</code> Spectral interpolation in z-direction.
* <code>resize_z.m</code> Spectral interpolation in z-direction.
* <code>matlab2spins2d.m</code> Writing data to disk.
* <code>matlab2spins2d.m</code> Writing data to disk.
== Running the code on Graham ==
It's a good idea to test the case you want to run on a local machine first. When you are ready to run the code on Graham, follow [https://wiki.math.uwaterloo.ca/fluidswiki/index.php?title=MATLAB_on_Graham this link].

Revision as of 14:33, 9 July 2018

Matlab to SPINS grid ordering, for a 2D domain with periodic (or free-slip) conditions in the x-direction and free-slip conditions in the z-direction and a flat bottom boundary. It solves the DJL equation for solitary waves or the Taylor-Goldstein equation for traveling/standing linear waves, interpolates the u, w and rho fields onto a regular (non-Cheb) grid, and then saves the data as SPINS input files (for wave_reader_x).

Getting the code

The code is hosted in a git repository on the UW git server. To extract the code from the git repository, go to (or create) the directory in which you want to run simulations using SPINS. In that directory, type git clone https://git.uwaterloo.ca/c2xu/matlab2spins.git. This will create a directory called matlab2spins where the code is stored.

Components

  • driver_unidomain.m Input parameters and main driver file for matlab2spins2d.m.
  • driver_multidomain.m Input parameters and main driver file for matlab2spins2d.m with different waves in multiple domains combined together.
  • tg.m Taylor-Goldstein equation solver for traveling/standing linear waves.
  • get_eta.m Main iteration loop of the DJL solver.
  • md_diff.m Differentiation matrix for the DJL solver.
  • iswpost.m Post processing for the DJL solver.
  • iswpic.m Making plots for the DJL solver.
  • find_contour.m Find the contour of Ri=0.25 in the DJL solution.
  • contour_data.m Function called by find_contour.m.
  • spins_interp2d.m Interpolation of flow fields from DJL/TG solver onto SPINS grid.
  • resize_x.m Spectral interpolation in x-direction.
  • resize_z.m Spectral interpolation in z-direction.
  • matlab2spins2d.m Writing data to disk.

Running the code on Graham

It's a good idea to test the case you want to run on a local machine first. When you are ready to run the code on Graham, follow this link.