1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-08-19 13:40:49 +03:00
Files
occt/src/FEmTool/FEmTool_ElementsOfRefMatrix.cdl
abv ed4415982c 0024624: Lost word in license statement in source files
License statement text corrected; compiler warnings caused by Bison 2.41 disabled for MSVC; a few other compiler warnings on 54-bit Windows eliminated by appropriate type cast
Wrong license statements corrected in several files.
Copyright and license statements added in XSD and GLSL files.
Copyright year updated in some files.
Obsolete documentation files removed from DrawResources.
2014-03-25 16:38:55 +04:00

73 lines
2.5 KiB
Plaintext

-- Created on: 1998-11-10
-- Created by: Igor FEOKTISTOV
-- Copyright (c) 1998-1999 Matra Datavision
-- Copyright (c) 1999-2014 OPEN CASCADE SAS
--
-- This file is part of Open CASCADE Technology software library.
--
-- This library is free software; you can redistribute it and/or modify it under
-- the terms of the GNU Lesser General Public License version 2.1 as published
-- by the Free Software Foundation, with special exception defined in the file
-- OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
-- distribution for complete text of the license and disclaimer of any warranty.
--
-- Alternatively, this file may be used under the terms of Open CASCADE
-- commercial license or contractual agreement.
class ElementsOfRefMatrix from FEmTool inherits FunctionSet from math
---Purpose: this class describes the functions needed for
-- calculating matrix elements of RefMatrix for linear
-- criteriums (Tension, Flexsion and Jerk).
-- Each function from set gives value Pi(u)'*Pj(u)' or
-- Pi(u)''*Pj(u)'' or Pi(u)'''*Pj(u)''' for each i and j,
-- where Pi(u) is i-th basis function of expansion and
-- (') means derivative.
uses
Vector from math,
Base from PLib
raises
ConstructionError from Standard
is
Create(TheBase : Base from PLib; DerOrder : Integer from Standard)
-- DerOrder is order of derivative (1, 2, 3)
returns ElementsOfRefMatrix from FEmTool
raises ConstructionError from Standard;
-- if DerOrder is not valid
NbVariables(me)
---Purpose: returns the number of variables of the function.
-- It is supposed that NbVariables = 1.
returns Integer;
NbEquations(me)
---Purpose: returns the number of equations of the function.
returns Integer;
Value(me: in out; X: Vector; F: out Vector)
---Purpose: computes the values <F> of the functions for the
-- variable <X>.
-- returns True if the computation was done successfully,
-- False otherwise.
-- F contains results only for i<=j in following order:
-- P0*P0, P0*P1, P0*P2... P1*P1, P1*P2,... (upper triangle of
-- matrix {PiPj})
returns Boolean;
fields
myBase : Base from PLib;
myDerOrder : Integer;
myNbEquations : Integer;
end ElementsOfRefMatrix;