source: anuga_work/development/near_shore_PMD/profile.m @ 5236

Last change on this file since 5236 was 5077, checked in by duncan, 16 years ago

Add info from Michael

File size: 316 bytes
Line 
1clear all
2clc
3
4% Nominal swash zone
5x0=(-100:1:0)';
6h0=-0.05*x0;
7
8% Nominal surf zone
9x1=(1:1:1000)';
10h1=-0.15*(x1.^(0.5));
11
12% Nominal shoreface
13x2=(1001:1:10000)';
14h2=-0.01888*(x2.^(0.8));
15
16
17h=[h0;h1;h2];
18x=[x0;x1;x2];
19exp1_profile=[x h];
20
21plot(x,h)
22
23save exp1_profile.dat exp1_profile -ascii
Note: See TracBrowser for help on using the repository browser.