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

Last change on this file since 4965 was 4965, checked in by seroussi, 15 years ago

no dirichlet needed in balancedthickness DG

File size: 723 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');
17fielddisplay(md,'prognostic_DG','yes->1, no->0');
18
19disp(sprintf('\n boundary conditions:'));
20fielddisplay(md,'spcthickness','constraints flag list (first column) and values (second column)');
Note: See TracBrowser for help on using the repository browser.