%--------------------------------------------------------------------------
% TOPOLOGY
%--------------------------------------------------------------------------
% Creation of a TOPOLOGY object.
%--------------------------------------------------------------------------
% Syntax
%--------------------------------------------------------------------------
TP = TOPOLOGY(MO)
%--------------------------------------------------------------------------
% Description
%--------------------------------------------------------------------------
% TOPOLOGY creates a TOPOLOGY object. This type of object can be used to
% describe a finite element TOPOLOGY. This object has the following
% properties:
% - model : MODEL object
% - index : INDEX object
% - elem_topo : ELEM_TOPO object
% The length of the model property is equal to the number of the ELEM_TOPO
% objects. In CastLab, the TOPOLOGY is one of the three global variables.
%--------------------------------------------------------------------------
% Input arguments
%--------------------------------------------------------------------------
% MO : MODEL obejct - set of MODEL objects
%--------------------------------------------------------------------------
% Output arguments
%--------------------------------------------------------------------------
% TP : TOPOLOGY object
%--------------------------------------------------------------------------
% Example
%--------------------------------------------------------------------------
MO
MO =
MODEL with properties:
group: [1x1 GROUP]
formulation: 'MECHANICS'
elasticity: 'ELASTICITY'
elasticity_type: 'ISOTROPIC'
law_type: []
law_name: []
elem_type: []
int_var_number: 1
int_rule_stif: [1x2 INT_RULE]
int_rule_mass: [1x2 INT_RULE]
section_topo: []
crack_path: []
TP = TOPOLOGY(MO)
TP =
TOPOLOGY with properties:
model: [1x1 MODEL]
index: [1x1 INDEX]
elem_topo: [1x1 ELEM_TOPO]