forked from IfcOpenShell/IfcOpenShell
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDocDefined.csv
More file actions
We can make this file beautiful and searchable if this error is corrected: Illegal quoting in line 1.
1903 lines (1411 loc) · 70.1 KB
/
DocDefined.csv
File metadata and controls
1903 lines (1411 loc) · 70.1 KB
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
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
275;IfcPresentableText;"<EPM-HTML>
<p><i>IfcPresentableText</i> is a text string used to capture the content of a text literal for the purpose of presentation. The <i>IfcPresentableText</i> can include multiple lines of text, for which the line feed character LF, 0x0A, should be used to separate lines.</p>
<blockquote class=""note"">
NOTE The non printable characters are converted within the standard exchange format ISO 10303-21 (STEP physical file format), commonly the \X\09 represents the TAB, and \X\0A the LF character.
</blockquote>
<blockquote class=""note"">
NOTE The <i>IfcPresentableText</i> is an entity that had been adopted from ISO 10303, Industrial automation systems and integration—Product data representation and exchange, Part 46: Integrated generic resources: Visual presentation.</font></p>
</blockquote>
<blockquote class=""note"">
NOTE Corresponding ISO 10303 name: presentable_text. Please refer to ISO/IS 10303-46:1994, p. 133 for the final definition of the formal standard.
</blockquote>
<blockquote class=""history"">
HISTORY New type in IFC2x2.
</blockquote>
</EPM-HTML>"
299;IfcTextFontName;"<EPM-HTML>
<p><u>Definition from CSS1 (W3C Recommendation)</u>: The value is a font family name and/or generic family name. Values are:</p>
<dl>
<dt><strong><family-name></strong></dt>
<dd>The name of a font family of choice. For example, ""gill"" and ""helvetica"" are font families.</dd>
<dt><strong><generic-family></strong></dt>
<dd>In the example above, the last value is a generic family name. The following generic families are defined:
<ul>
<li>'serif' (Example: Times)</li>
<li>'sans-serif' (Example: Helvetica)</li>
<li>'cursive' (Example: Zapf-Chancery)</li>
<li>'fantasy' (Example: Western)</li>
<li>'monospace' (Example: Courier)</li>
</ul>
</dd>
</dl>
<p>It is encouraged to offer a generic font family as a last alternative.</p>
<blockquote class=""note"">
NOTE Corresponding CSS1 definitions are font-family.
</blockquote>
<blockquote class=""history"">
HISTORY New type in IFC2x2 Addendum 2.
</blockquote>
<blockquote class=""change-ifc2x2"">
IFC2x2 Addendum 2 CHANGE: The <i>IfcFontFamily</i> has been added.
</blockquote>
</EPM-HTML>"
300;IfcFontStyle;"<EPM-HTML>
<p><u>Definition from CSS1 (W3C Recommendation)</u>: The font-style property selects between normal (sometimes
referred to as ""roman"" or ""upright""), italic and oblique faces within a font family. Values are:</p>
<ul>
<li>normal </li>
<li>italic </li>
<li>oblique</li>
</ul>
<p>A value of 'normal' selects a font that is classified as 'normal' in the user agents font database, while 'oblique' selects a font that is labeled 'oblique'. A value of 'italic' selects a font that is labeled 'italic', or, if that is not available, one labeled 'oblique'. The font that is labeled 'oblique' in the user agents font database may actually have been generated by electronically slanting a normal font.
</p>
<p>Fonts with Oblique, Slanted or Incline in their names will typically be labeled 'oblique' in the user agents font database. Fonts with <em>Italic, Cursive</em> or <em>Kursiv</em> in their names will typically be labeled 'italic'.
</p>
<blockquote class=""note"">
NOTE Corresponding CSS1 definitions is font-style.</font>
</blockquote>
<blockquote class=""history"">
HISTORY New type in IFC2x3.
</blockquote>
</EPM-HTML>"
302;IfcFontVariant;"<EPM-HTML>
<p><u>Definition from CSS1 (W3C Recommendation)</u>: The font-style property selects between normal and small-caps within a font family. Values are:</p>
<ul>
<li>normal </li>
<li>small-caps </li>
</ul>
<p>Another type of variation within a font family is the small-caps. In a small-caps font the lower case letters look similar to the uppercase ones, but in a smaller size and with slightly different proportions. The 'font-variant' property selects that font.</p>
<p>A value of 'normal' selects a font that is not a small-caps font, 'small-caps' selects a small-caps font. It is acceptable (but not required) in CSS1 if the small-caps font is a created by taking a normal font and replacing the lower case letters by scaled uppercase characters. As a last resort, uppercase letters will be used as replacement for a small-caps font.
</p>
<blockquote class=""note"">
NOTE Corresponding CSS1 definitions is font-variant.</font>
</blockquote>
<blockquote class=""history"">
HISTORY New type in IFC2x3.
</blockquote>
</EPM-HTML>"
304;IfcFontWeight;"<EPM-HTML>
<p><u>Definition from CSS1 (W3C Recommendation)</u>: The 'font-weight' property selects the weight of the font. The values '100' to '900' form an ordered sequence, where each number indicates a weight that is at least as dark as its predecessor. The keyword 'normal' is synonymous with '400', and 'bold' is synonymous with '700'. Keywords other than 'normal' and 'bold' have been shown to be often confused with font names and a numerical scale was therefore chosen for the 9-value list. Values are:</p>
<ul>
<li>normal </li>
<li>bold </li>
<li>100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900</li>
</ul>
<p>Fonts (the font data) typically have one or more properties whose values are names that are descriptive of the ""weight"" of a font. There is no accepted, universal meaning to these weight names. Their primary role is to distinguish faces of differing darkness within a single font family. Usage across font families is quite variant; for example a font that you might think of as being bold might be described as being <em>Regular, Roman, Book, Medium, Semi-</em> or <em>DemiBold, Bold,</em> or <em>Black,</em> depending on how black the ""normal"" face of the font is within the design. Because there is no standard usage of names, the weight property values in CSS1 are given on a numerical scale in which the value '400' (or 'normal') corresponds to the ""normal"" text face for that family. The weight name associated with that face will typically be <em>Book, Regular, Roman, Normal</em> or sometimes <em>Medium</em>.</p>
<p>The association of other weights within a family to the numerical weight values is intended only to preserve the ordering of darkness within that family. However, the following heuristics tell how the assignment is done in typical cases:</p>
<ul>
<li>If the font family already uses a numerical scale with nine values (such as with <em>OpenType</em>), the font weights should be mapped directly. </li>
<li>If there is both a face labeled <em>Medium</em> and one labeled <em>Book, Regular, Roman</em> or <em>Normal,</em> then the <em>Medium</em> is normally assigned to the '500'. </li>
<li>The font labeled ""Bold"" will often correspond to the weight value '700'. </li>
<li>If there are fewer then 9 weights in the family, the default algorithm for filling the ""holes"" is as follows. If '500' is unassigned, it will be assigned the same font as '400'. If any of the values '600', '700', '800' or '900' remains unassigned, they are assigned to the same face as the next darker assigned keyword, if any, or the next lighter one otherwise. If any of '300', '200' or '100' remains unassigned, it is assigned to the next lighter assigned keyword, if any, or the next darker otherwise. </li>
</ul>
<p>The following two examples illustrate the process. Assume four weights in the ""Example1"" family, from lightest to darkest: <em>Regular, Medium, Bold, Heavy.</em> And assume six weights in the ""Example2"" family: <em>Book, Medium, Bold, Heavy, Black, ExtraBlack.</em> Note how in the second example it has been decided <em>not</em> to assign ""Example2 ExtraBlack"" to anything.
</p>
<pre>Available faces | Assignments | Filling the holes<br>----------------------+---------------+-------------------<br>""Example1 Regular"" | 400 | 100, 200, 300<br>""Example1 Medium"" | 500 |<br>""Example1 Bold"" | 700 | 600<br>""Example1 Heavy"" | 800 | 900<br></pre>
<pre>Available faces | Assignments | Filling the holes<br>----------------------+---------------+-------------------<br>""Example2 Book"" | 400 | 100, 200, 300<br>""Example2 Medium"" | 500 |<br>""Example2 Bold"" | 700 | 600 <br>""Example2 Heavy"" | 800 |<br>""Example2 Black"" | 900 |<br>""Example2 ExtraBlack"" | (none) |<br></pre>
<br>
<blockquote class=""note"">
NOTE Corresponding CSS1 definitions is font-weight.
</blockquote>
<blockquote class=""history"">
HISTORY New type in IFC2x2 Addendum 2.
</blockquote>
</EPM-HTML>"
3764;IfcURIReference;"<EPM-HTML>
<p><em>IfcURIReference</em> provides for identifying a Uniform Resource Identifier, URI, as defined by the RFC3986 of the Network Working Group. A URI can be classified as a locator or a name or both, that is it may comprise a Uniform Resource Locator (URL) and/or a Uniform Resource Name (URN).</p>
<ul>
<li>A Uniform Resource Locator, URL, is a string conforming to a standardized format, which refers to a resource on the internet (such as a document or an image) by its location.</li>
<li>A Uniform Resource Name, URN, is intended to serve as persistent, location-independent resource identifier and is
designed to make it easy to map other namespaces (that share the properties of URNs) into URN-space.</li>
</ul>
<blockquote class=""history"">
HISTORY New defined datatype in IFC 2x4.
</blockquote>
</EPM-HTML>"
3869;IfcLanguageId;"<EPM-HTML>
<p><em>IfcLanguageId</em> identifies the language in which a natural language text is expressed. It uses a language tag to identify the language.</p>
<p>The tag shall comply to the Internet Engineering Task Force (IETF) language tag as expressed in RFC 5646. A conforming program shall support the ""simple language"" subtag and the ""language-region"" tag format.</p>
<blockquote class=""example"">
EXAMPLE for simple language tags en (English), de (German), fr (France), or ja (Japanese), and for language-region tags en-US (English as used in United States), de-CH (German as used in German speaking part of Switzerland).
</blockquote>
<p>Type: <em>IfcIdentifier</em></p>
<blockquote class=""note"">
NOTE The use of <em>IfcLanguageId</em> should conform to the use of language tags in HTML and XML as published by the W3C consortium.
</blockquote>
<blockquote class=""history"">
HISTORY New defined datatype in IFC2x4.
</blockquote>
</EPM-HTML>"
4001;IfcDateTime;"<epm-html>
<p>
This lexical representation is the [ISO 8601] extended
format CCYY-MM-DDThh:mm:ss where ""CC"" represents the
century, ""YY"" the year, ""MM"" the month and ""DD"" the day,
preceded by an optional leading ""-"" sign to indicate a
negative number. If the sign is omitted, ""+"" is assumed.
The letter ""T"" is the date/time separator and ""hh"", ""mm"",
""ss"" represent hour, minute and second respectively.
Additional digits can be used to increase the precision of
fractional seconds if desired i.e the format ss.ss... with
any number of digits after the decimal point is supported.
The fractional seconds part is optional; other parts of the
lexical form are not optional. To accommodate year values
greater than 9999 additional digits can be added to the
left of this representation. Leading zeros are required if
the year value would otherwise have fewer than four digits;
otherwise they are forbidden. The year 0000 is prohibited.
</p>
<blockquote class=""history"">HISTORY: New type in IFC2x4</blockquote>
</epm-html>"
4002;IfcDate;"<epm-html>
<p>The lexical representation for date is the reduced (right truncated) lexical representation for dateTime: CCYY-MM-DD. No left truncation is allowed. An optional following time zone qualifier is allowed as for dateTime. To accommodate year values outside the range from 0001 to 9999, additional digits can be added to the left of this representation and a preceding ""-"" sign is allowed.</p>
<blockquote class=""history"">HISTORY: New type in IFC2x4</blockquote>
<p class=""head-use"">Use definitions</p>
<p>All given values should be provided in context and converted into a Gregorian date context and be shall be processable by a receiving application.</p>
</epm-html>"
4003;IfcTime;"<epm-html>
<p>
The lexical representation for time is the left truncated
lexical representation for dateTime: hh:mm:ss.sss with
optional following time zone indicator. For example, to
indicate 1:20 pm for Eastern Standard Time which is 5 hours
behind Coordinated Universal Time (UTC), one would write:
13:20:00-05:00.
</p>
<blockquote class=""history"">HISTORY: New type in IFC2x4</blockquote>
</epm-html>"
4004;IfcDuration;"<epm-html>
<p>String representation of a time duration according to ISO8601:2000 <i>""Data elements and interchange formats - Information interchange - Representation of dates and times""</i> as defined in section 5.5.3 <i>""Representation of duration""</i>.<br>
It is recommended to use the alternative format (section 5.5.4.2.2) in its extended version: PYYYY-MM-DDThh:mm:ss.<br>
EXAMPLE: P0002-10-15T10:30:20 (duration of two years, 10 months, 15 days, 10 hours, 30 minutes and 20 seconds).</p>
<blockquote class=""history"">HISTORY: New type in IFC2x4</blockquote>
</epm-html>"
4122;IfcDayInMonthNumber;"<EPM-HTML>
<p><u>Definition from IAI</u>: The <i>IfcDayInMonthNumber</i> is
an integer that defines the position of the specified day in a
month.</p>
<p>Type: INTEGER</p>
<blockquote><small><font color=""#0000FF"">NOTE Corresponding STEP
name: day_in_month_number, please refer to ISO/IS 10303-41:1994
for the final definition of the formal
standard.</font></small></blockquote>
<blockquote><small><font color=""#0000FF"">HISTORY New type in IFC
Release 1.5.1.</font></small><br>
<small><font color=""#FF0000"">IFC2x4 CHANGE Where rule
<i>ValidRange</i> added.</font></small></blockquote>
</EPM-HTML>"
4124;IfcDayInWeekNumber;"<EPM-HTML>
<p><u>Definition from IAI</u>: The <i>IfcDayInWeekNumber</i> is
an integer that defines the position of the specified day in a
week. The positions have the following meaning (according to
ISO8601 ""the calendar week"") that assigns the ordinal day number
in the week to the Calender day name.</p>
<table border=""0"" cellpadding=""2"" cellspacing=""2"" summary=
""Calender days"">
<thead>
<tr valign=""top"">
<td width=""90""><b>Ordinal day number</b></td>
<td><b>Calendar day<br>
name</b></td>
</tr>
</thead>
<tbody>
<tr valign=""top"">
<td>01</td>
<td>Monday</td>
</tr>
<tr valign=""top"">
<td>02</td>
<td>Tuesday</td>
</tr>
<tr valign=""top"">
<td>03</td>
<td>Wednesday</td>
</tr>
<tr valign=""top"">
<td>04</td>
<td>Thursday</td>
</tr>
<tr valign=""top"">
<td>05</td>
<td>Friday</td>
</tr>
<tr valign=""top"">
<td>06</td>
<td>Saturday</td>
</tr>
<tr valign=""top"">
<td>07</td>
<td>Sunday</td>
</tr>
</tbody>
</table>
<p>Type: INTEGER</p>
<blockquote><small><font color=""#0000FF"">HISTORY New type in
IFC2x4.</font></small></blockquote>
</EPM-HTML>"
4126;IfcMonthInYearNumber;"<EPM-HTML>
<p><u>Definition from IAI</u>: The <i>IfcDayInMonthNumber</i> is
an integer that defines the position of the specified month in a
year. The positions have the following meaning (according to
ISO8601 ""calendar month"") that assigns the Calendar month number
to the Calender month name.</p>
<blockquote><small>NOTE Refer to ISO 8601 for the definitions for
using the Gregorian calendar as the standard for the
identification of calendar days.</small></blockquote>
<table border=""0"" cellpadding=""2"" cellspacing=""2"" summary=
""Calender days"">
<thead>
<tr valign=""top"">
<td width=""100""><b>Calendar month number</b></td>
<td><b>Calendar month<br>
name</b></td>
</tr>
</thead>
<tbody>
<tr valign=""top"">
<td>01</td>
<td>January</td>
</tr>
<tr valign=""top"">
<td>02</td>
<td>February</td>
</tr>
<tr valign=""top"">
<td>03</td>
<td>March</td>
</tr>
<tr valign=""top"">
<td>04</td>
<td>April</td>
</tr>
<tr valign=""top"">
<td>05</td>
<td>May</td>
</tr>
<tr valign=""top"">
<td>06</td>
<td>June</td>
</tr>
<tr valign=""top"">
<td>07</td>
<td>July</td>
</tr>
<tr valign=""top"">
<td>08</td>
<td>August</td>
</tr>
<tr valign=""top"">
<td>09</td>
<td>September</td>
</tr>
<tr valign=""top"">
<td>10</td>
<td>October</td>
</tr>
<tr valign=""top"">
<td>11</td>
<td>November</td>
</tr>
<tr valign=""top"">
<td>12</td>
<td>December</td>
</tr>
</tbody>
</table>
<p>Type: INTEGER</p>
<blockquote><small><font color=""#0000FF"">NOTE Corresponding STEP
name: month_in_year_number, please refer to ISO/IS 10303-41:1994
for the final definition of the formal
standard.</font></small></blockquote>
<blockquote><small><font color=""#0000FF"">HISTORY New type in IFC
Release 1.5.1.</font></small></blockquote>
</EPM-HTML>"
4298;IfcCardinalPointReference;"<EPM-HTML>
<p>An <i>IfcCardinalPointReference</i> is an index reference to
significant points of a section profile. This index is used to
describe the spatial relationship between the section of a member
and a reference axis of the same member.</p>
<blockquote class=""history"">
HISTORY New Type in IFC2x4.
</blockquote>
<p>Indexes 1...9 refer to points at the bounding box of a
profile. Indexes 10...19 refer to points defined by geometric
centroid (usually centre of gravity) and shear centre, and their
combinations with bounding box coordinates. In particular, the
following index values are specified in this IFC Release:</p>
<ol>
<li>bottom left</li>
<li>bottom centre</li>
<li>bottom right</li>
<li>mid-depth left</li>
<li>mid-depth centre</li>
<li>mid-depth right</li>
<li>top left</li>
<li>top centre</li>
<li>top right</li>
<li>geometric centroid</li>
<li>bottom in line with the geometric centroid</li>
<li>left in line with the geometric centroid</li>
<li>right in line with the geometric centroid</li>
<li>top in line with the geometric centroid</li>
<li>shear centre</li>
<li>bottom in line with the shear centre</li>
<li>left in line with the shear centre</li>
<li>right in line with the shear centre</li>
<li>top in line with the shear centre</li>
</ol>
<p>Other index values are possible but outside the scope of this
specification.</p>
<p>Figure 283 illustrates cardinal point values.</p>
<table>
<tr><td><img src=""figures/IfcCardinalPointReference-01.png"" alt=""arbitrary profile with cardinal points"" border=""0"" width=""676""height=""264""></td></tr>
<tr><td><p class=""figure"">Figure 283 — Cardinal point values</p></td></tr>
</table>
<p>Figure 284 illustrates an example extrusion shape with arbitrary profile (<i>IfcArbitraryClosedProfileDef</i>), aligned ""mid-depth right"" on the member axis. The line of sight follows the extrusion direction Z which points into the drawing plane of above illustration. Hence, ""left"" is in the positive X direction of the <i>IfcProfileDef</i>. ""Top"" is in the positive Y direction of the <i>IfcProfileDef</i>.</p>
<table>
<tr><td><img src=""figures/IfcCardinalPointReference-02.png"" alt=""extrusion shape with arbitrary profile and alignment"" border=""0"" width=""357"" height=""236""></td></tr>
<tr><td><p class=""figure"">Figure 284 — Cardinal point extrusion</p></td></tr>
</table>
</EPM-HTML>"
4311;IfcAmountOfSubstanceMeasure;"<EPM-HTML>
<p><u>Definition from ISO/CD 10303-41:1992</u>: An amount of substance measure is the value for the quantity of a substance when compared with the number of atoms in 0.012kilogram of carbon 12.</p>
<p>Usually measure in mole (mol).</p>
<p>Type: REAL</p>
<blockquote class=""note"">
NOTE Corresponding ISO 10303 name: amount_of_substance_measure, please refer to ISO/IS 10303-41 for the final definition of the formal standard.
</blockquote>
<blockquote class=""history"">
HISTORY New type in IFC Release 1.5.1.
</blockquote>
</EPM-HTML>"
4312;IfcAngularVelocityMeasure;"<EPM-HTML>
<p><i>IfcAngularVelocityMeasure</i> is a measure of the velocity of a body measured in terms of angle subtended per unit time.</p>
<p>Usually measured in radians/s.</p>
<p>Type: REAL</p>
<blockquote class=""history"">
HISTORY New type in IFC Release 2.0.
</blockquote>
</EPM-HTML>
"
4313;IfcAreaMeasure;"<EPM-HTML>
<p><u>Definition from ISO/CD 10303-41:1992</u>: An area measure is the value of the extent of a surface.</p>
<p>Usually measured in square metre (m2).</p>
<p>Type: REAL</p>
<blockquote class=""note"">
NOTE Corresponding ISO 10303 name: area_measure, please refer to ISO/IS 10303-41 for the final definition of the formal standard.
</blockquote>
<blockquote class=""history"">
HISTORY New type in IFC Release 1.5.1.
</blockquote>
</EPM-HTML>"
4314;IfcBoolean;"<EPM-HTML>
<p><i>IfcBoolean</i> is a defined data type of simple data type Boolean. It is required since a select type (<I>IfcSimpleValue</I>) cannot directly include simple types in its select list. A boolean type can have value TRUE or FALSE.</p>
<p>Type: BOOLEAN</p>
<blockquote class=""history"">
HISTORY New type in IFC Release 1.5.1.
</blockquote>
</EPM-HTML>
"
4315;IfcCompoundPlaneAngleMeasure;"<EPM-HTML>
<p><i>IfcCompoundPlaneAngleMeasure</i> is a compound measure of plane angle in degrees, minutes, seconds, and optionally millionth-seconds of arc.</p>
<blockquote class=""note"">
NOTE: <i>IfcCompoundPlaneAngleMeasure</i> is used where angles need to be described to an accuracy as fine as one millionth of a degree and expressed as parts of an arc. It may be used for angular measurement by surveyors or for other angular measurements where precision is required. Another usage is exact or approximate global positioning against a geographic coordinate systems using longitude and latitude.
</blockquote>
<blockquote class=""note"">
NOTE: While the unit of measurement of the type <i>IfcPlaneAngleMeasure</i> depends on unit assignment (radian or degree or other derived units; globally at the <i>IfcPoject</i> or locally at an <i>IfcMeasureWithUnit</i>), the units of <i>IfcCompoundPlaneAngleMeasure</i> are always degrees, minutes, seconds, and millionth-seconds irrespective of unit assignments.
</blockquote>
<blockquote class=""history"">
HISTORY New type in IFC Release 1.5.1.
</blockquote>
<p>Type: LIST [3:4] OF INTEGER</p>
<p><b>Value restrictions</b></p>
<ul>
<li>The first integer measure is the number of degrees and is generally not range-restricted. However, when <i>IfcCompoundPlaneAngleMeasure</i> is used to express geographic coordinates, only latitudes of [-90, 90] and longitudes of [-180, 180] are used in practice.</li>
<li>The second integer measure is the number of minutes and shall be in the range (-60, 60).</li>
<li>The third integer measure is the number of seconds and shall be in the range (-60, 60).</li>
<li>The optional fourth integer measure is the number of millionth-seconds and shall be in the range (-1 000 000, 1 000 000).</li>
</ul>
<p><b>Signedness</b></p>
<p>All measure components have the same sign (positive or negative). It is therefore trivial to convert between floating point representation (decimal degrees) and compound representation regardless whether the angle is greater or smaller than zero. Example:</p>
<blockquote><code>
LOCAL<br>
a : IfcPlaneAngleMeasure := -50.975864; (* decimal degrees, -50° 58' 33" 110400 *)<br>
b : IfcPlaneAngleMeasure;<br>
c : IfcCompoundPlaneAngleMeasure;<br>
s : IfcText;<br>
END_LOCAL;<br>
<br>
(* convert from float to compound *)<br>
c[1] := a; -- -50<br>
c[2] := (a - c[1]) * 60; -- -58<br>
c[3] := ((a - c[1]) * 60 - c[2]) * 60; -- -33<br>
c[4] := (((a - c[1]) * 60 - c[2]) * 60 - c[3]) * 1.e6; -- -110400<br>
<br>
(* convert from compound to float *)<br>
b := c[1] + c[2]/60. + c[3]/3600. + c[4]/3600.e6; -- -50.975864<br>
</code></blockquote>
<p><b>Use in string representations</b></p>
<p>When a compound plane angle measure is formatted for display or printout, the signs of the fractional components will usually be discarded because, to a human reader, the sign of the first component alone already indicates the sense of the angle:</p>
<blockquote><code>
(* convert from compound to human-readable string *)<br>
s := FORMAT(c[1], '+##') + "000000B0"<br>
+ FORMAT(ABS(c[2]), '##') + ''''<br>
+ FORMAT(ABS(c[3]), '##') + '"'<br>
+ FORMAT(ABS(c[4]), '##'); -- -50° 58' 33" 110400
</code></blockquote>
<p>Another often encountered display format of latitudes and longitudes is to omit the signs and print N, S, E, W indicators instead, for example, <code>50°58'33"S</code>. When stored as <i>IfcCompoundPlaneAngleMeasure</i> however, a compound plane angle measure is always signed, with same sign of all components.</p>
</EPM-HTML>"
4321;IfcContextDependentMeasure;"<EPM-HTML>
<p><u>Definition from ISO/CD 10303-41:1992</u>: Is the value of a physical quantity as defined by an application context.</p>
<p>Type: REAL</p>
<blockquote class=""note"">
NOTE Corresponding ISO 10303 name: context_dependent_measure, please refer to ISO/IS 10303-41 for the final definition of the formal standard.
</blockquote>
<blockquote class=""history"">
HISTORY New type in IFC Release 1.5.1.
</blockquote>
</EPM-HTML>"
4322;IfcCountMeasure;"<EPM-HTML>
<p><u>Definition from ISO/CD 10303-41:1992</u>: A count measure is the value of a count.</p>
<p>Type: NUMBER</p>
<blockquote class=""note"">
NOTE Corresponding ISO 10303 name: count_measure, please refer to ISO/IS 10303-41 for the final definition of the formal standard.
</blockquote>
<blockquote class=""history"">
HISTORY New type in IFC Release 1.5.1.
</blockquote>
</EPM-HTML>"
4323;IfcDescriptiveMeasure;"<EPM-HTML>
<p><u>Definition from ISO/CD 10303-41:1992</u>: A descriptive measure is a human interpretable definition of a quantifiable value.</p>
<p>Type: STRING</p>
<blockquote class=""note"">
NOTE Corresponding ISO 10303 name:descriptive_measure, please refer to ISO/IS 10303-41 for the final definition of the formal standard.
</blockquote>
<blockquote class=""history"">
HISTORY New type in IFC Release 1.5.1.
</blockquote>
</EPM-HTML>"
4324;IfcDynamicViscosityMeasure;"<EPM-HTML>
<p><i>IfcDynamicViscosityMeasure</i> is a measure of the viscous resistance of a medium.</p>
<p>Usually measured in Pascal second (Pa s).</p>
<p>Type: REAL </p>
<blockquote class=""history"">
HISTORY New type in IFC Release 2.0.
</blockquote>
</EPM-HTML>"
4325;IfcElectricCurrentMeasure;"<EPM-HTML>
<p><u>Definition from ISO/CD 10303-41:1992</u>: The value for the movement of electrically charged particles.</p>
<p>Usually measured in Ampere (A).</p>
<p>Type: REAL</p>
<blockquote class=""note"">
NOTE Corresponding ISO 10303 name: electric_current_measure, please refer to ISO/IS 10303-41 for the final definition of the formal standard.
</blockquote>
<blockquote class=""history"">
HISTORY New type in IFC Release 1.5.1.
</blockquote>
</EPM-HTML>"
4326;IfcElectricVoltageMeasure;"<EPM-HTML>
<p><i>IfcElectricVoltageMeasure</i> is a measure of electromotive force.</p>
<p>Usually measured in Volts (V, W/A).</p>
<p>Type: REAL</p>
<blockquote class=""history"">
HISTORY New type in IFC Release 2.0.
</blockquote>
</EPM-HTML>"
4327;IfcEnergyMeasure;"<EPM-HTML>
<p><i>IfcEnergyMeasure</i> is a measure of energy required or used.</p>
<p>Usually measured in Joules, (J, Nm).</p>
<p>Type: REAL</p>
<blockquote class=""history"">
HISTORY New type in IFC Release 2.0.
</blockquote>
</EPM-HTML>"
4328;IfcFrequencyMeasure;"<EPM-HTML>
<p><i>IfcFrequencyMeasure</i> is a measure of the number of times that an item vibrates in unit time.</p>
<p>Usually measured in cycles/s or Herz (Hz).</p>
<p>Type: REAL</p>
<blockquote class=""history"">
HISTORY New type in IFC Release 2.0.
</blockquote>
</EPM-HTML>"
4329;IfcHeatFluxDensityMeasure;"<EPM-HTML>
<p>IfcHeatFluxDensityMeasure</i> is a measure of the density of heat flux within a body.</p>
<p>Usually measured in W/m2 (J/s m2).</p>
<p>Type: REAL</p>
<blockquote class=""history"">
HISTORY New type in IFC Release 2.0.
</blockquote>
</EPM-HTML>
"
4330;IfcInteger;"<EPM-HTML>
<p><i>IfcInteger</i> is a defined type of simple data type Integer. It is required since a select type (<I>IfcSimpleValue</I>) cannot include directly simple types in its select list.</p>
<p>In principle, the domain of <I>IfcInteger</I> (being an Integer) is all integer numbers. Here the number of bits used for the <i>IfcInteger</i> representation is unconstrained, but in practice it is implementation specific.</p>
<p>Type: INTEGER</p>
<blockquote class=""history"">
HISTORY New type in IFC Release 1.5.1.
</blockquote>
</EPM-HTML>"
4331;IfcIntegerCountRateMeasure;"<EPM-HTML>
<p><i>IfcIntegerCountRateMeasure</i> is a measure of the integer number of units flowing per unit time.</p>
<blockquote class=""example"">
EXAMPLE: This measure may be used for measuring integer units per second or per hour. For example, it may be used to measure the number of books per hour passing along a part of a mechanical book handling system, the number of people per hour travelling along a moving walkway or the number of vehicles per hour travelling along a section of road.
</blockquote>
<p>Type: INTEGER</p>
<blockquote class=""history"">
HISTORY New type in IFC Release 2.0.
</blockquote>
</EPM-HTML>"
4332;IfcKinematicViscosityMeasure;"<EPM-HTML>
<p><i>IfcKinematicViscosityMeasure</i> is a measure of the viscous resistance of a medium to a moving body.</p>
<p>Usually measured in m2/s.</p>
<p>Type: REAL</p>
<blockquote class=""history"">
HISTORY New type in IFC Release 2.0.
</blockquote>
</EPM-HTML>
"
4333;IfcLengthMeasure;"<EPM-HTML>
<p><u>Definition from ISO/CD 10303-41:1992</u>: A length measure is the value of a distance.</p>
<p>Usually measured in millimeters (mm).</p>
<p>Type: REAL</p>
<blockquote class=""note"">
NOTE Corresponding ISO 10303 name: length_measure, please refer to ISO/IS 10303-41 for the final definition of the formal standard.
</blockquote>
<blockquote class=""history"">
HISTORY New type in IFC Release 1.5.1.
</blockquote>
</EPM-HTML>"
4334;IfcLinearVelocityMeasure;"<EPM-HTML>
<p><i>IfcLinearVelocityMeasure</i> is a measure of the velocity of a body measured in terms of distance moved per unit time.</p>
<p>Usually measured in m/s.</p>
<p>Type: REAL</p>
<blockquote class=""history"">
HISTORY New type in IFC Release 2.0.
</blockquote>
</EPM-HTML>
"
4335;IfcLuminousIntensityMeasure;"<EPM-HTML>
<p><u>Definition from ISO/CD 10303-41:1992</u>: A luminous intensity measure is the value for the brightness of a body.</p>
<p>Usually measured in candela (cd).</p>
<p>Type: REAL</p>
<blockquote class=""note"">
NOTE Corresponding ISO 10303 name: luminous_intensity_measure, please refer to ISO/IS 10303-41 for the final definition of the formal standard.
</blockquote>
<blockquote class=""history"">
HISTORY New type in IFC Release 1.5.1.
</blockquote>
</EPM-HTML>"
4336;IfcMassDensityMeasure;"<EPM-HTML>
<p><i>IfcMassDensityMeasure</i> is a measure of the density of a medium.</p>
<p>Usually measured in kg/m3.</p>
<p>Type: REAL</p>
<blockquote class=""history"">
HISTORY New type in IFC Release 2.0.
</blockquote>
</EPM-HTML>
"
4337;IfcMassFlowRateMeasure;"<EPM-HTML>
<p><i>IfcMassFlowRateMeasure</i> is a measure of the mass of a medium flowing per unit time.</p>
<p>Usually measured in kg/s.</p>
<p>Type: REAL</p>
<blockquote class=""history"">
HISTORY New type in IFC Release 2.0.
</blockquote>
</EPM-HTML>"
4338;IfcMassMeasure;"<EPM-HTML>
<p><u>Definition from ISO/CD 10303-41:1992</u>: A mass measure is the value of the amount of matter that a body contains.</p>
<p>Usually measured in kilograms (kg) or grams (g).</p>
<p>Type: REAL</p>
<blockquote class=""note"">
NOTE Corresponding ISO 10303 name: mass_measure, please refer to ISO/IS 10303-41 for the final definition of the formal standard.
</blockquote>
<blockquote class=""history"">
HISTORY New type in IFC Release 1.5.1.
</blockquote>
</EPM-HTML>"
4339;IfcMonetaryMeasure;"<EPM-HTML>
<p>A monetary measure is the value of an amount of money without regard to its currency.</p>
<p>Type: REAL</p>
<blockquote class=""history"">
HISTORY New type in IFC Release 2.0.
</blockquote>
</EPM-HTML>"
4340;IfcNumericMeasure;"<EPM-HTML>
<p><u>Definition from ISO/CD 10303-41:1992</u>: A numeric measure is the numeric value of a physical quantity.</p>
<p>Type: NUMBER</p>
<blockquote class=""note"">
NOTE Corresponding ISO 10303 name: numeric_measure, please refer to ISO/IS 10303-41 for the final definition of the formal standard.
</blockquote>
<blockquote class=""history"">
HISTORY New type in IFC Release 1.5.1.
</blockquote>
<EPM-HTML>"
4341;IfcParameterValue;"<EPM-HTML>
<p><u>Definition from ISO/CD 10303-41:1992</u>: A parameter value is the value which specifies the amount of a
parameter in some parameter space.</p>
<p>Type: REAL</p>
<blockquote class=""note"">
NOTE Corresponding STEP name: parameter_value, please refer to ISO/IS 10303-41 for the final definition of the formal standard.
</blockquote>
<blockquote class=""history"">
HISTORY New type in IFC Release 1.5.1.
</blockquote>
</EPM-HTML>"
4342;IfcPlaneAngleMeasure;"<EPM-HTML>
<p><u>Definition from ISO/CD 10303-41:1992</u>: A plane angle measure is the value of an angle in a plane.
<p>Usually measured in radian (rad, m/m = 1), but also grads may be used. The grad unit may be declared as a conversion based unit based on radian unit.</p>
<blockquote class=""note"">
NOTE <I>IfcPlaneAngleMeasure</I> is used where angles need to be described to an accuracy of less than one degree and expressed as decimal parts of an angle. It is widely used for angular measurement except for situations where accuracy needs to be defined using arc measurement; for which purpose the <I>IfcCompoundPlaneAngleMeasure</I> is provided.
</blockquote>
<p>Type: REAL</p>
<blockquote class=""note"">
NOTE Corresponding ISO 10303 name: plane_angle_measure, please refer to ISO/IS 10303-41 for the final definition of the formal standard.
</blockquote>
<blockquote class=""history"">
HISTORY New type in IFC Release 1.5.1.
</blockquote>
</EPM-HTML>"
4343;IfcPositiveLengthMeasure;"<EPM-HTML>
<p><u>Definition from ISO/CD 10303-41:1992</u>: A positive length measure is a length measure that is greater than zero.</p>
<p>Type: <i>IfcLengthMeasure</i></p>
<blockquote class=""note"">
NOTE Corresponding ISO 10303 name: positive_length_measure, please refer to ISO/IS 10303-41 for the final definition of the formal standard.
</blockquote>
<blockquote class=""history"">
HISTORY New type in IFC Release 1.5.1.
</blockquote>
</EPM-HTML>"
4345;IfcPositivePlaneAngleMeasure;"<EPM-HTML>
<p><u>Definition from ISO/CD 10303-41:1992</u>: Positive plane angle measure is a plane angle measure that is greater than zero.</p>
<p>Type: <i>IfcPlaneAngleMeasure</i></p>
<blockquote class=""note"">
NOTE Corresponding STEP name: positive_plane_angle_measure, please refer to ISO/IS 10303-41 for the final definition of the formal standard.
</blockquote>
<blockquote class=""history"">
HISTORY New type in IFC Release 1.5.1.
</blockquote>
</EPM-HTML>"
4347;IfcPositiveRatioMeasure;"<EPM-HTML>
<p><u>Definition from ISO/CD 10303-41:1992</u>: A positive ratio measure is a ratio measure that is greater than zero.</p>
<p>Type: <i>IfcRatioMeasure</i></p>
<blockquote class=""note"">
NOTE Corresponding ISO 10303 name: positive_ratio_measure, please refer to ISO/IS 10303-41 for the final definition of the formal standard.
</blockquote>
<blockquote class=""history"">
HISTORY New type in IFC Release 1.5.1.
</blockquote>
<EPM-HTML>"
4349;IfcRatioMeasure;"<EPM-HTML>
<p><u>Definition from ISO/CD 10303-41:1992</u>: A ratio measure is the value of the relation between two
physical quantities that are of the same kind.</p>
<blockquote class=""note"">
NOTE: Input given in percent is to be divided by 100% when stored as an IfcRatioMeasure. For example, 25% becomes 0.25.
</blockquote>
<p>Type: REAL</p>
<blockquote class=""note"">
NOTE Corresponding STEP name: ratio_measure, please refer to ISO/IS 10303-41 for the final definition of the formal standard.
</blockquote>
<blockquote class=""history"">
HISTORY New type in IFC Release 1.5.1.
</blockquote>
</EPM-HTML>"
4350;IfcPowerMeasure;"<EPM-HTML>
<p><i>IfcPowerMeasure</i> is a measure of power required or used.</p>
<p>Usually measured in Watts (W, J/s).</p>
<p>Type: REAL</p>
<blockquote class=""history"">
HISTORY New type in IFC Release 2.0.
</blockquote>
</EPM-HTML>
"
4351;IfcPressureMeasure;"<EPM-HTML>
<p><i>IfcPressureMeasure</i> is a measure of the quantity of a medium acting on a unit area.</p>
<p>Usually measured in Pascals (Pa, N/m2).</p>
<p>Type: REAL</p>
<blockquote class=""history"">
HISTORY New type in IFC Release 2.0.
</blockquote>
</EPM-HTML>"
4352;IfcReal;"<EPM-HTML>
<p><i>IfcReal</i> is a defined type of simple data type REAL. It is required since a select type (<i>IfcSimpleValue</i>), cannot directly include simple types in its select list.</p>
<p>In principle, the domain of <i>IfcReal</i> (being a Real) is all rational, irrational and scientific real numbers. Here the precision is unconstrained, but in practice it is implementation specific.</p>
<p>Type: REAL</p>
<blockquote class=""history"">
HISTORY: New type in IFC Release 1.5.1.
</blockquote>
</EPM-HTML>"
4353;IfcSolidAngleMeasure;"<EPM-HTML>
<p><u>Definition from ISO/CD 10303-41:1992</u>: A solid angle measure is the value of an angle in a solid.</p>
<p>Usually measured in Steradians, (sr, m2/m2).</p>
<p>Type: REAL</p>
<blockquote class=""note"">
NOTE Corresponding ISO 10303 name: solid_angle_measure, please refer to ISO/IS 10303-41 for the final definition of the formal standard.
</blockquote>
<blockquote class=""history"">
HISTORY New type in IFC Release 1.5.1.
</blockquote>
</EPM-HTML>"
4354;IfcIdentifier;"<EPM-HTML>
<p><u>Definition from ISO/CD 10303-41:1992</u>: An identifier is an alphanumeric string which allows an individual thing to be identified. It may not provide natural-language meaning.</p>
<p>Type: STRING of up to 255 characters</p>
<blockquote><font size=""-1"">NOTE Corresponding STEP name: identifier, please refer to ISO/IS 10303-41 for the final definition of the formal standard.</font></blockquote>
<blockquote><font size=""-1"" color=""#0000ff"">HISTORY New type in IFC Release 2x.<br>
IFC 2x4 CHANGE: Previously recommended size restriction of 255 characters is now mandatory.</font></blockquote>
<p>As a merely machine-readable string for identification purposes, an identifier is usually machine-generated and locale-independent (in contrast to human-readable labels, <i>IfcLabel</i>).</p>
<p>Per ISO 10303-11, the set of characters that may appear in STRINGs is defined in ISO 10646. The encoding of characters in case of file-based exchange is defined in ISO 10303-21 (STEP physical files) and ISO 10303-28 (XML files). Among else, these specifications define the encoding of 8-bit characters from ISO 8859-1...-16 and of 2-byte Unicode characters.</p>
<p>Note that while <i>IfcIdentifier</i> is restricted to 255 characters, the size in exchange files after encoding may be considerably larger than 255 octets, depending on the particular encoding and on the contents of the identifier.</p>
</EPM-HTML>"
4355;IfcThermalAdmittanceMeasure;"<EPM-HTML>
<p><i>IfcThermalAdmittanceMeasure</i> is the measure of the ability of a surface to smooth out temperature variations.</p>
<p>Usually measured in Watt / m2 Kelvin.</p>
<p>Type: REAL</p>
<blockquote class=""history"">
HISTORY New type in IFC Release 2.0.
</blockquote>
</EPM-HTML>"
4356;IfcThermalResistanceMeasure;"<EPM-HTML>
<p><i>IfcThermalResistanceMeasure</i> is a measure of the resistance offered by a body to the flow of energy.</p>
<p>Usually measured in m2 Kelvin/Watt.</p>
<blockquote class=""history"">
HISTORY New type in IFC Release 2.0.
</blockquote>
</EPM-HTML>"
4357;IfcThermalTransmittanceMeasure;"<EPM-HTML>
<p><i>IfcThermalTransmittanceMeasure</i> is a measure of the rate at which energy is transmitted through a body.</p>
<p>Usually measured in Watts/m2 Kelvin.</p>
<p>Type: REAL</p>
<blockquote class=""history"">
HISTORY New type in IFC Release 2.0.
</blockquote>
</EPM-HTML>"
4358;IfcThermodynamicTemperatureMeasure;"<EPM-HTML>
<p><u>Definition from ISO/CD 10303-41:1992</u>: A thermodynamic temperature measure is the value for the degree of heat of a body.</p>
<p>Usually measured in degrees Kelvin (K).</p>
<p>Type: REAL</p>
<blockquote class=""note"">
NOTE Corresponding ISO 10303 name: thermodynamic_temperature_measure, please refer to ISO/IS 10303-41 for the final definition of the formal standard.