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

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

improved display

File size: 857 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,'gridondirichlet_prog','grid on dirichlet flags list');
20fielddisplay(md,'dirichletvalues_prog','values of the dirichlet [m]');
21fielddisplay(md,'segmentonneumann_prog','segments on ice front list');
22fielddisplay(md,'neumannvalues_prog','values of the Neumann [m/a]');
Note: See TracBrowser for help on using the repository browser.