-
Notifications
You must be signed in to change notification settings - Fork 172
/
Copy pathIfcMechanicalSteelMaterialProperties.cs
209 lines (196 loc) · 6 KB
/
IfcMechanicalSteelMaterialProperties.cs
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
// ------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool Xbim.CodeGeneration
//
// Changes to this file may cause incorrect behaviour and will be lost if
// the code is regenerated.
// </auto-generated>
// ------------------------------------------------------------------------------
using Xbim.Ifc2x3.MeasureResource;
using System;
using System.Collections.Generic;
using System.Linq;
using Xbim.Common;
using Xbim.Common.Exceptions;
using Xbim.Ifc2x3.MaterialPropertyResource;
//## Custom using statements
//##
namespace Xbim.Ifc2x3.MaterialPropertyResource
{
[ExpressType("IfcMechanicalSteelMaterialProperties", 510)]
// ReSharper disable once PartialTypeWithSinglePart
public partial class @IfcMechanicalSteelMaterialProperties : IfcMechanicalMaterialProperties, IInstantiableEntity, IContainsEntityReferences, IEquatable<@IfcMechanicalSteelMaterialProperties>
{
//internal constructor makes sure that objects are not created outside of the model/ assembly controlled area
internal IfcMechanicalSteelMaterialProperties(IModel model, int label, bool activated) : base(model, label, activated)
{
_relaxations = new OptionalItemSet<IfcRelaxation>( this, 0, 13);
}
#region Explicit attribute fields
private IfcPressureMeasure? _yieldStress;
private IfcPressureMeasure? _ultimateStress;
private IfcPositiveRatioMeasure? _ultimateStrain;
private IfcModulusOfElasticityMeasure? _hardeningModule;
private IfcPressureMeasure? _proportionalStress;
private IfcPositiveRatioMeasure? _plasticStrain;
private readonly OptionalItemSet<IfcRelaxation> _relaxations;
#endregion
#region Explicit attribute properties
[EntityAttribute(7, EntityAttributeState.Optional, EntityAttributeType.None, EntityAttributeType.None, null, null, 7)]
public IfcPressureMeasure? @YieldStress
{
get
{
if(_activated) return _yieldStress;
Activate();
return _yieldStress;
}
set
{
SetValue( v => _yieldStress = v, _yieldStress, value, "YieldStress", 7);
}
}
[EntityAttribute(8, EntityAttributeState.Optional, EntityAttributeType.None, EntityAttributeType.None, null, null, 8)]
public IfcPressureMeasure? @UltimateStress
{
get
{
if(_activated) return _ultimateStress;
Activate();
return _ultimateStress;
}
set
{
SetValue( v => _ultimateStress = v, _ultimateStress, value, "UltimateStress", 8);
}
}
[EntityAttribute(9, EntityAttributeState.Optional, EntityAttributeType.None, EntityAttributeType.None, null, null, 9)]
public IfcPositiveRatioMeasure? @UltimateStrain
{
get
{
if(_activated) return _ultimateStrain;
Activate();
return _ultimateStrain;
}
set
{
SetValue( v => _ultimateStrain = v, _ultimateStrain, value, "UltimateStrain", 9);
}
}
[EntityAttribute(10, EntityAttributeState.Optional, EntityAttributeType.None, EntityAttributeType.None, null, null, 10)]
public IfcModulusOfElasticityMeasure? @HardeningModule
{
get
{
if(_activated) return _hardeningModule;
Activate();
return _hardeningModule;
}
set
{
SetValue( v => _hardeningModule = v, _hardeningModule, value, "HardeningModule", 10);
}
}
[EntityAttribute(11, EntityAttributeState.Optional, EntityAttributeType.None, EntityAttributeType.None, null, null, 11)]
public IfcPressureMeasure? @ProportionalStress
{
get
{
if(_activated) return _proportionalStress;
Activate();
return _proportionalStress;
}
set
{
SetValue( v => _proportionalStress = v, _proportionalStress, value, "ProportionalStress", 11);
}
}
[EntityAttribute(12, EntityAttributeState.Optional, EntityAttributeType.None, EntityAttributeType.None, null, null, 12)]
public IfcPositiveRatioMeasure? @PlasticStrain
{
get
{
if(_activated) return _plasticStrain;
Activate();
return _plasticStrain;
}
set
{
SetValue( v => _plasticStrain = v, _plasticStrain, value, "PlasticStrain", 12);
}
}
[EntityAttribute(13, EntityAttributeState.Optional, EntityAttributeType.Set, EntityAttributeType.Class, new int [] { 1 }, new int [] { -1 }, 13)]
public IOptionalItemSet<IfcRelaxation> @Relaxations
{
get
{
if(_activated) return _relaxations;
Activate();
return _relaxations;
}
}
#endregion
#region IPersist implementation
public override void Parse(int propIndex, IPropertyValue value, int[] nestedIndex)
{
switch (propIndex)
{
case 0:
case 1:
case 2:
case 3:
case 4:
case 5:
base.Parse(propIndex, value, nestedIndex);
return;
case 6:
_yieldStress = value.RealVal;
return;
case 7:
_ultimateStress = value.RealVal;
return;
case 8:
_ultimateStrain = value.RealVal;
return;
case 9:
_hardeningModule = value.RealVal;
return;
case 10:
_proportionalStress = value.RealVal;
return;
case 11:
_plasticStrain = value.RealVal;
return;
case 12:
_relaxations.InternalAdd((IfcRelaxation)value.EntityVal);
return;
default:
throw new XbimParserException(string.Format("Attribute index {0} is out of range for {1}", propIndex + 1, GetType().Name.ToUpper()));
}
}
#endregion
#region Equality comparers and operators
public bool Equals(@IfcMechanicalSteelMaterialProperties other)
{
return this == other;
}
#endregion
#region IContainsEntityReferences
IEnumerable<IPersistEntity> IContainsEntityReferences.References
{
get
{
if (@Material != null)
yield return @Material;
foreach(var entity in @Relaxations)
yield return entity;
}
}
#endregion
#region Custom code (will survive code regeneration)
//## Custom code
//##
#endregion
}
}