%--------------------------------------------------------------------------
% TIMELOAD
%--------------------------------------------------------------------------
% Creation of a TIMELOAD object.
%--------------------------------------------------------------------------
% Syntax
%--------------------------------------------------------------------------
TL = TIMELOAD(CHP1,EV1,type)
%--------------------------------------------------------------------------
% Description
%--------------------------------------------------------------------------
% TIMELOAD creates a TIMELOAD object. This type of object is used to
% describe a time evolution of a loading. It has the following properties:
% - val_char : CHPOINT object
% - evol_lo : EVOL object
% - type : STRING describing the type. It can be equal to:
% - DIRI : prescribed displacement
% - MECA : prescribed load
% - val_ass : vector - assembly of val_char
%--------------------------------------------------------------------------
% Input arguments
%--------------------------------------------------------------------------
% - val_char : see above
% - evol_lo : see above
% - type : See above
% - val_ass : see above
%--------------------------------------------------------------------------
% Output arguments
%--------------------------------------------------------------------------
% TL : TIMELOAD object
%--------------------------------------------------------------------------
% Example
%--------------------------------------------------------------------------
CL2 = MATRICE('DIRI','P2',1);
FO1 = CHPOINT.DEPI(CL2,1);
EV1 = EVOL([0 1],[0 5e-3],'Time','Displacement (m)');
CHT = TIMELOAD(FO1,EV1,'DIRI');
CHT
CHT =
TIMELOAD with properties:
val_char: [1x1 CHPOINT]
evol_lo: [1x1 EVOL]
type: 'DIRI'
val_ass: []