source: issm/trunk/src/m/solutions/cielo/modelsize.m@ 922

Last change on this file since 922 was 922, checked in by Eric.Larour, 16 years ago

reworked diagnostic core to more resemble parallel core

File size: 554 bytes
Line 
1function dof=modelsize(models)
2%DOF - return the maximum number of degrees of freedom of the model
3%
4% Usage:
5% dof=modelsize(m_dh,m_dv,m_ds,m_dhu,m_sl)
6
7%recover models
8m_dh=models.dh;
9m_dv=models.dv;
10m_ds=models.ds;
11m_dhu=models.dhu;
12m_sl=models.sl;
13
14dof=0;
15if ~isempty(m_ds.nodesets),
16 dof=m_ds.nodesets.fsize; %biggest dof number
17end
18if ~isempty(m_dh.nodesets),
19 if dof<m_dh.nodesets.fsize,
20 dof=m_dh.nodesets.fsize; %biggest dof number
21 end
22end
23if ~isempty(m_dhu.nodesets),
24 if dof<m_dhu.nodesets.fsize,
25 dof=m_dhu.nodesets.fsize;
26 end
27end
Note: See TracBrowser for help on using the repository browser.