1 // Created on: 2002-12-12
2 // Created by: data exchange team
3 // Copyright (c) 2002-2014 OPEN CASCADE SAS
4 //
5 // This file is part of Open CASCADE Technology software library.
6 //
7 // This library is free software; you can redistribute it and/or modify it under
8 // the terms of the GNU Lesser General Public License version 2.1 as published
9 // by the Free Software Foundation, with special exception defined in the file
10 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
11 // distribution for complete text of the license and disclaimer of any warranty.
12 //
13 // Alternatively, this file may be used under the terms of Open CASCADE
14 // commercial license or contractual agreement.
15 
16 // Generator:	ExpToCas (EXPRESS -> CASCADE/XSTEP Translator) V1.2
17 
18 #include <Interface_Check.hxx>
19 #include <Interface_EntityIterator.hxx>
20 #include <RWStepFEA_RWFeaLinearElasticity.hxx>
21 #include <StepData_StepReaderData.hxx>
22 #include <StepData_StepWriter.hxx>
23 #include <StepFEA_FeaLinearElasticity.hxx>
24 #include <StepFEA_SymmetricTensor43dMember.hxx>
25 #include <TColStd_HArray1OfReal.hxx>
26 
27 //=======================================================================
28 //function : RWStepFEA_RWFeaLinearElasticity
29 //purpose  :
30 //=======================================================================
RWStepFEA_RWFeaLinearElasticity()31 RWStepFEA_RWFeaLinearElasticity::RWStepFEA_RWFeaLinearElasticity ()
32 {
33 }
34 
35 //=======================================================================
36 //function : ReadStep
37 //purpose  :
38 //=======================================================================
39 
ReadStep(const Handle (StepData_StepReaderData)& data,const Standard_Integer num,Handle (Interface_Check)& ach,const Handle (StepFEA_FeaLinearElasticity)& ent) const40 void RWStepFEA_RWFeaLinearElasticity::ReadStep (const Handle(StepData_StepReaderData)& data,
41                                                 const Standard_Integer num,
42                                                 Handle(Interface_Check)& ach,
43                                                 const Handle(StepFEA_FeaLinearElasticity) &ent) const
44 {
45   // Check number of parameters
46   if ( ! data->CheckNbParams(num,2,ach,"fea_linear_elasticity") ) return;
47 
48   // Inherited fields of RepresentationItem
49 
50   Handle(TCollection_HAsciiString) aRepresentationItem_Name;
51   data->ReadString (num, 1, "representation_item.name", ach, aRepresentationItem_Name);
52 
53   // Own fields of FeaLinearElasticity
54 
55   StepFEA_SymmetricTensor43d aFeaConstants;
56   data->ReadEntity (num, 2, "fea_constants", ach, aFeaConstants);
57 
58   // Initialize entity
59   ent->Init(aRepresentationItem_Name,
60             aFeaConstants);
61 
62 }
63 
64 //=======================================================================
65 //function : WriteStep
66 //purpose  :
67 //=======================================================================
68 
WriteStep(StepData_StepWriter & SW,const Handle (StepFEA_FeaLinearElasticity)& ent) const69 void RWStepFEA_RWFeaLinearElasticity::WriteStep (StepData_StepWriter& SW,
70                                                  const Handle(StepFEA_FeaLinearElasticity) &ent) const
71 {
72 
73   // Inherited fields of RepresentationItem
74 
75   SW.Send (ent->StepRepr_RepresentationItem::Name());
76 
77   // Own fields of FeaLinearElasticity
78 
79   SW.Send (ent->FeaConstants().Value());
80 }
81 
82 //=======================================================================
83 //function : Share
84 //purpose  :
85 //=======================================================================
86 
Share(const Handle (StepFEA_FeaLinearElasticity)& ent,Interface_EntityIterator & iter) const87 void RWStepFEA_RWFeaLinearElasticity::Share (const Handle(StepFEA_FeaLinearElasticity) &ent,
88                                              Interface_EntityIterator& iter) const
89 {
90 
91   // Inherited fields of RepresentationItem
92 
93   // Own fields of FeaLinearElasticity
94 
95   iter.AddItem (ent->FeaConstants().Value());
96 }
97