Last change
on this file since 9075 was 9075, checked in by Mathieu Morlighem, 14 years ago |
Simplified spcthickness (use new NaN scheme)
|
File size:
707 bytes
|
Line | |
---|
1 | function displayprognostic(md)
|
---|
2 | %DISPLAYPROGNOSTIC - display solution parameters
|
---|
3 | %
|
---|
4 | % To avoid clobbering display.m with every field from model md,
|
---|
5 | % we create this routine that displays the solution parameters
|
---|
6 | % from model md, only if requested.
|
---|
7 | %
|
---|
8 | % Usage:
|
---|
9 | % displayprognostic(md)
|
---|
10 |
|
---|
11 | disp(sprintf(' Prognostic solution parameters:'));
|
---|
12 |
|
---|
13 | disp(sprintf('\n transient:'));
|
---|
14 | fielddisplay(md,'dt','time step [yr]');
|
---|
15 | fielddisplay(md,'ndt','time span [yr]');
|
---|
16 | fielddisplay(md,'artificial_diffusivity','yes->1, no->0');
|
---|
17 | fielddisplay(md,'prognostic_DG','yes->1, no->0');
|
---|
18 |
|
---|
19 | disp(sprintf('\n boundary conditions:'));
|
---|
20 | fielddisplay(md,'spcthickness','thickness constraints (NaN means no constraint)');
|
---|
Note:
See
TracBrowser
for help on using the repository browser.