source: issm/trunk/src/m/classes/public/display/displayprognostic.m@ 1758

Last change on this file since 1758 was 1758, checked in by Mathieu Morlighem, 16 years ago

some fixing while renaming

File size: 673 bytes
Line 
1function 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
11disp(sprintf(' Prognostic solution parameters:'));
12
13disp(sprintf('\n transient:'));
14fielddisplay(md,'dt','time step [yr]');
15fielddisplay(md,'ndt','time span [yr]');
16fielddisplay(md,'artificial_diffusivity','yes->1, no->0');
17
18disp(sprintf('\n boundary conditions:'));
19fielddisplay(md,'spcthickness','constraints flag list (first column) and values (second column)');
Note: See TracBrowser for help on using the repository browser.