geth3dpools

Gets defined pools inside an open instance.

Syntax

R = geth3dpools(fid, [, datatype])

Inputs

fid
Integer representing the file ID, returned from createh3dfile().
Type: double | integer
datatype
A datatype name or index.
Type: string | int

Outputs

R
Cell containing all pool names in an H3D file with correct indexing or pool names in a datatype if name/index was given.
Type: double | cell

Example

% Create H3D file
idx =createh3dfile(resultFile)
		
% Create H3D layers
lidx1 = cw_h3d_createLayer(idx, 'Layer 1');
lidx2 = cw_h3d_createLayer(idx, 'Layer 2');
	
% Create H3D pools
pidx1 = cw_h3d_createPool(idx, '2D');
pidx2 = cw_h3d_createPool(idx, '3D');

% Create datatype
tidx1  =createh3ddatatype(idx, 'Element Stresses', '3Dtensor', 'elem', 'pools', [pidx1 pidx2], 'layers', [lidx1 lidx2]);