CHLNDDEV / OceanMesh2D

A two-dimensional triangular mesh generator with pre- and post-processing utilities written in pure MATLAB (no toolboxes required) designed specifically to build models that solve shallow-water equations or wave equations in a coastal environment (ADCIRC, FVCOM, WaveWatch3, SWAN, SCHISM, Telemac, etc.).
https://github.com/sponsors/krober10nd
GNU General Public License v3.0
179 stars 65 forks source link

Prepare for new version #247

Closed krober10nd closed 2 years ago

WPringle commented 2 years ago

Example:

bgc = [0.7 0.7 0.7];   % background color
fs = 10; 
plot(m,'type','resolog','proj','lam',...
    'colormap',[10 120 25e3],'fontsize',fs);
plot(m,'type','bdnotri','proj','lam',...
    'backcolor',bgc,'fontsize',fs,'holdon',1);
title('')
l = legend; l.Location = 'bestoutside';

HSOFS_2016_resolog