blob: b304429575354f0adfbc3f69caf0bbd39a0750ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
-- File: StepFEA_FeaLinearElasticity.cdl
-- Created: Thu Dec 12 17:51:05 2002
-- Author: data exchange team
-- Generator: ExpToCas (EXPRESS -> CASCADE/XSTEP Translator) V1.2
-- Copyright: Open CASCADE 2002
class FeaLinearElasticity from StepFEA
inherits FeaMaterialPropertyRepresentationItem from StepFEA
---Purpose: Representation of STEP entity FeaLinearElasticity
uses
HAsciiString from TCollection,
SymmetricTensor43d from StepFEA
is
Create returns FeaLinearElasticity from StepFEA;
---Purpose: Empty constructor
Init (me: mutable; aRepresentationItem_Name: HAsciiString from TCollection;
aFeaConstants: SymmetricTensor43d from StepFEA);
---Purpose: Initialize all fields (own and inherited)
FeaConstants (me) returns SymmetricTensor43d from StepFEA;
---Purpose: Returns field FeaConstants
SetFeaConstants (me: mutable; FeaConstants: SymmetricTensor43d from StepFEA);
---Purpose: Set field FeaConstants
fields
theFeaConstants: SymmetricTensor43d from StepFEA;
end FeaLinearElasticity;
|