@hla4ts/spacefom 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md ADDED
@@ -0,0 +1,73 @@
1
+ # @hla4ts/spacefom
2
+
3
+ Thin SpaceFOM asset/helper layer beneath `@hla4ts/spacekit`.
4
+
5
+ This package is no longer the main application entry point for SEE users.
6
+ Start with `@hla4ts/spacekit` unless you specifically need one of the raw
7
+ SpaceFOM building blocks below:
8
+
9
+ - bundled base SpaceFOM XML modules
10
+ - `loadSpaceFomModules()` for inline/path module loading
11
+ - SpaceFOM constants such as execution modes and sync point labels
12
+ - low-level encode/decode helpers and coders
13
+ - optional dashboard launcher via `serveDashboard()`
14
+
15
+ ## Install
16
+
17
+ ```bash
18
+ bun add @hla4ts/spacefom
19
+ ```
20
+
21
+ ## Load Base Modules
22
+
23
+ ```ts
24
+ import { loadSpaceFomModules } from "@hla4ts/spacefom";
25
+
26
+ const baseModules = await loadSpaceFomModules({ format: "inline" });
27
+ ```
28
+
29
+ ## Encode/Decode SpaceFOM Values
30
+
31
+ ```ts
32
+ import {
33
+ decodeHLAunicodeString,
34
+ encodeHLAunicodeString,
35
+ encodeSpaceTimeCoordinateState,
36
+ } from "@hla4ts/spacefom";
37
+ ```
38
+
39
+ ## Execution and Sync Constants
40
+
41
+ ```ts
42
+ import {
43
+ SpaceFomExecutionMode,
44
+ SpaceFomMtrMode,
45
+ SpaceFomSyncPointLabels,
46
+ } from "@hla4ts/spacefom";
47
+ ```
48
+
49
+ ## Dashboard Loader
50
+
51
+ `serveDashboard()` remains here because it is an optional SpaceFOM-oriented
52
+ tooling hook:
53
+
54
+ ```ts
55
+ import { serveDashboard } from "@hla4ts/spacefom";
56
+
57
+ const server = await serveDashboard();
58
+ await server.close();
59
+ ```
60
+
61
+ This requires `@hla4ts/spacefomapp-dashboard` to be installed separately.
62
+
63
+ ## When To Use `@hla4ts/spacekit` Instead
64
+
65
+ Use `@hla4ts/spacekit` if you need any of the following:
66
+
67
+ - `SpacekitApp`
68
+ - `PhysicalEntity`, `DynamicalEntity`, `ReferenceFrame`, `ExecutionConfiguration`
69
+ - `ModeTransitionRequest`
70
+ - `SpaceFomLateJoinerBootstrap`
71
+ - `createSpaceFomConfig()` or `declareSpaceFom()`
72
+ - runtime adapter generation from decorated classes
73
+ - SEE run loop and reference-frame-aware registration
package/package.json ADDED
@@ -0,0 +1,27 @@
1
+ {
2
+ "name": "@hla4ts/spacefom",
3
+ "version": "0.1.0",
4
+ "description": "Thin SpaceFOM helper layer with bundled XML modules, coders, and constants",
5
+ "type": "module",
6
+ "main": "src/index.ts",
7
+ "types": "src/index.ts",
8
+ "files": [
9
+ "README.md",
10
+ "src",
11
+ "spacefom"
12
+ ],
13
+ "exports": {
14
+ ".": "./src/index.ts"
15
+ },
16
+ "publishConfig": {
17
+ "access": "public"
18
+ },
19
+ "dependencies": {
20
+ "@hla4ts/hla-api": "^0.1.0"
21
+ },
22
+ "scripts": {
23
+ "typecheck": "tsc --noEmit",
24
+ "test": "bun test"
25
+ },
26
+ "license": "MIT"
27
+ }
@@ -0,0 +1,377 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2
+ <objectModel xsi:schemaLocation="http://standards.ieee.org/IEEE1516-2010 http://standards.ieee.org/downloads/1516/1516.2-2010/IEEE1516-DIF-2010.xsd" xmlns="http://standards.ieee.org/IEEE1516-2010" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
3
+ <modelIdentification>
4
+ <name>SISO-STD-018-2020 - SISO Space Reference FOM Datatypes</name>
5
+ <type>FOM</type>
6
+ <version>1.0</version>
7
+ <modificationDate>2019-10-25</modificationDate>
8
+ <securityClassification>Unclassified</securityClassification>
9
+ <purpose>SISO Space FOM Data Types</purpose>
10
+ <applicationDomain></applicationDomain>
11
+ <description>Definitions of low level data types.</description>
12
+ <useLimitation></useLimitation>
13
+ <poc>
14
+ <pocType>Primary author</pocType>
15
+ <pocName>Edwin Z. Crues</pocName>
16
+ <pocOrg>NASA Johnson Space Center, Houston, TX</pocOrg>
17
+ <pocTelephone>+1-281-483-2902</pocTelephone>
18
+ <pocEmail>edwin.z.crues@nasa.gov</pocEmail>
19
+ </poc>
20
+ <poc>
21
+ <pocType>Contributor</pocType>
22
+ <pocName>Daniel E. Dexter</pocName>
23
+ <pocOrg>NASA Johnson Space Center, Houston, TX</pocOrg>
24
+ <pocTelephone>+1-281-483-1142</pocTelephone>
25
+ <pocEmail>daniel.e.dexter@nasa.gov</pocEmail>
26
+ </poc>
27
+ <poc>
28
+ <pocType>Contributor</pocType>
29
+ <pocName>Björn Möller</pocName>
30
+ <pocOrg>Pitch Technologies, Sweden</pocOrg>
31
+ <pocTelephone></pocTelephone>
32
+ <pocEmail>bjorn.moller@pitch.se</pocEmail>
33
+ </poc>
34
+ <poc>
35
+ <pocType>Contributor</pocType>
36
+ <pocName>Alfredo Garro</pocName>
37
+ <pocOrg>DIMES Department, University of Calabria, Italy</pocOrg>
38
+ <pocTelephone>+39-0984-49-4795</pocTelephone>
39
+ <pocEmail>alfredo.garro@unical.it</pocEmail>
40
+ </poc>
41
+ <other>Copyright © 2020 by the Simulation Interoperability Standards Organization, Inc.
42
+ P.O. Box 781238
43
+ Orlando, FL 32878-1238, USA
44
+ All rights reserved.
45
+
46
+ Schema and API: SISO hereby grants a general, royalty-free license to copy, distribute, display, and make derivative works from this material, for all purposes, provided that any use of the material contains the following attribution: “Reprinted with permission from SISO Inc.” Should a reader require additional information, contact the SISO Inc. Board of Directors.
47
+
48
+ Documentation: SISO hereby grants a general, royalty-free license to copy, distribute, display, and make derivative works from this material, for noncommercial purposes, provided that any use of the material contains the following attribution: “Reprinted with permission from SISO Inc.” The material may not be used for a commercial purpose without express written permission from the SISO Inc. Board of Directors.
49
+
50
+ SISO Inc. Board of Directors
51
+ P.O. Box 781238
52
+ Orlando, FL 32878-1238, USA
53
+ </other>
54
+ </modelIdentification>
55
+ <time>
56
+ <timeStamp>
57
+ <dataType>HLAinteger64Time</dataType>
58
+ <semantics>Microseconds since the beginning of the federation execution.</semantics>
59
+ </timeStamp>
60
+ <lookahead>
61
+ <dataType>HLAinteger64Time</dataType>
62
+ <semantics>Microseconds</semantics>
63
+ </lookahead>
64
+ </time>
65
+ <dataTypes>
66
+ <simpleDataTypes>
67
+ <simpleData>
68
+ <name>Angle</name>
69
+ <representation>HLAfloat64LE</representation>
70
+ <units>radian (r)</units>
71
+ <resolution>NA</resolution>
72
+ <accuracy>NA</accuracy>
73
+ <semantics>A scalar angular counterclockwise quantity.</semantics>
74
+ </simpleData>
75
+ <simpleData>
76
+ <name>Mass</name>
77
+ <representation>HLAfloat64LE</representation>
78
+ <units>kilogram (kg)</units>
79
+ <resolution>NA</resolution>
80
+ <accuracy>NA</accuracy>
81
+ <semantics>A measurement of mass.</semantics>
82
+ </simpleData>
83
+ <simpleData>
84
+ <name>MassRate</name>
85
+ <representation>HLAfloat64LE</representation>
86
+ <units>kilogram per second (kg/s)</units>
87
+ <resolution>NA</resolution>
88
+ <accuracy>NA</accuracy>
89
+ <semantics>A measurement of the rate of change of mass.</semantics>
90
+ </simpleData>
91
+ <simpleData>
92
+ <name>MassMomentOfInertia</name>
93
+ <representation>HLAfloat64LE</representation>
94
+ <units>kilogram meter squared (kg*m^2)</units>
95
+ <resolution>NA</resolution>
96
+ <accuracy>NA</accuracy>
97
+ <semantics>A scalar moment or coefficient of inertia. There are nine such scalars in a
98
+ moment of inertia matrix.</semantics>
99
+ </simpleData>
100
+ <simpleData>
101
+ <name>Length</name>
102
+ <representation>HLAfloat64LE</representation>
103
+ <units>meter (m)</units>
104
+ <resolution>NA</resolution>
105
+ <accuracy>NA</accuracy>
106
+ <semantics>A scalar length.</semantics>
107
+ </simpleData>
108
+ <simpleData>
109
+ <name>Velocity</name>
110
+ <representation>HLAfloat64LE</representation>
111
+ <units>meter per second (m/s)</units>
112
+ <resolution>NA</resolution>
113
+ <accuracy>NA</accuracy>
114
+ <semantics>A scalar translational velocity.</semantics>
115
+ </simpleData>
116
+ <simpleData>
117
+ <name>Acceleration</name>
118
+ <representation>HLAfloat64LE</representation>
119
+ <units>meter per second squared (m/s^2)</units>
120
+ <resolution>NA</resolution>
121
+ <accuracy>NA</accuracy>
122
+ <semantics>A scalar translational acceleration.</semantics>
123
+ </simpleData>
124
+ <simpleData>
125
+ <name>Scalar</name>
126
+ <representation>HLAfloat64LE</representation>
127
+ <units>NA</units>
128
+ <resolution>NA</resolution>
129
+ <accuracy>NA</accuracy>
130
+ <semantics>A unitless scalar value.</semantics>
131
+ </simpleData>
132
+ <simpleData>
133
+ <name>AngularRate</name>
134
+ <representation>HLAfloat64LE</representation>
135
+ <units>radian per second (r/s)</units>
136
+ <resolution>NA</resolution>
137
+ <accuracy>NA</accuracy>
138
+ <semantics>A scalar angular rate.</semantics>
139
+ </simpleData>
140
+ <simpleData>
141
+ <name>AngularAcceleration</name>
142
+ <representation>HLAfloat64LE</representation>
143
+ <units>radian per second squared (r/s^2)</units>
144
+ <resolution>NA</resolution>
145
+ <accuracy>NA</accuracy>
146
+ <semantics>A scalar angular acceleration.</semantics>
147
+ </simpleData>
148
+ <simpleData>
149
+ <name>Time</name>
150
+ <representation>HLAfloat64LE</representation>
151
+ <units>second (s)</units>
152
+ <resolution>NA</resolution>
153
+ <accuracy>NA</accuracy>
154
+ <semantics>A measurement of time.</semantics>
155
+ </simpleData>
156
+ <simpleData>
157
+ <name>Energy</name>
158
+ <representation>HLAfloat64LE</representation>
159
+ <units>Joule (J)</units>
160
+ <resolution>NA</resolution>
161
+ <accuracy>NA</accuracy>
162
+ <semantics>A measure of energy.</semantics>
163
+ </simpleData>
164
+ <simpleData>
165
+ <name>Power</name>
166
+ <representation>HLAfloat64LE</representation>
167
+ <units>Watt (W)</units>
168
+ <resolution>NA</resolution>
169
+ <accuracy>NA</accuracy>
170
+ <semantics>A measure of power.</semantics>
171
+ </simpleData>
172
+ <simpleData>
173
+ <name>SignalStrength</name>
174
+ <representation>HLAfloat64LE</representation>
175
+ <units>Decibel (dB)</units>
176
+ <resolution>NA</resolution>
177
+ <accuracy>NA</accuracy>
178
+ <semantics>A measure of signal strength.</semantics>
179
+ </simpleData>
180
+ <simpleData>
181
+ <name>Temperature</name>
182
+ <representation>HLAfloat64LE</representation>
183
+ <units>Kelvin (K)</units>
184
+ <resolution>NA</resolution>
185
+ <accuracy>NA</accuracy>
186
+ <semantics>A measure of absolute temperature.</semantics>
187
+ </simpleData>
188
+ <simpleData>
189
+ <name>TemperatureRate</name>
190
+ <representation>HLAfloat64LE</representation>
191
+ <units>Kelvin per second (K/s)</units>
192
+ <resolution>NA</resolution>
193
+ <accuracy>NA</accuracy>
194
+ <semantics>A measure of the time rate of change of temperature.</semantics>
195
+ </simpleData>
196
+ <simpleData>
197
+ <name>Force</name>
198
+ <representation>HLAfloat64LE</representation>
199
+ <units>Newton (N)</units>
200
+ <resolution>NA</resolution>
201
+ <accuracy>NA</accuracy>
202
+ <semantics>A scalar measurement of force.</semantics>
203
+ </simpleData>
204
+ <simpleData>
205
+ <name>Torque</name>
206
+ <representation>HLAfloat64LE</representation>
207
+ <units>Newton meter (N*m)</units>
208
+ <resolution>NA</resolution>
209
+ <accuracy>NA</accuracy>
210
+ <semantics>A scalar measurement of torque.</semantics>
211
+ </simpleData>
212
+ <simpleData>
213
+ <name>Density</name>
214
+ <representation>HLAfloat64LE</representation>
215
+ <units>kilograms per cubic meter (kg/m^3)</units>
216
+ <resolution>NA</resolution>
217
+ <accuracy>NA</accuracy>
218
+ <semantics>A measure of mass density.</semantics>
219
+ </simpleData>
220
+ <simpleData>
221
+ <name>MassMomentOfInertiaRate</name>
222
+ <representation>HLAfloat64LE</representation>
223
+ <units>kilogram meter squared per second (kg*m^2/s)</units>
224
+ <resolution>NA</resolution>
225
+ <accuracy>NA</accuracy>
226
+ <semantics>A measure of the time rate of change of a mass moment of inertia parameter.</semantics>
227
+ </simpleData>
228
+ </simpleDataTypes>
229
+ <arrayDataTypes>
230
+ <arrayData>
231
+ <name>PositionVector</name>
232
+ <dataType>Length</dataType>
233
+ <cardinality>3</cardinality>
234
+ <encoding>HLAfixedArray</encoding>
235
+ <semantics>A 3-vector that specifies the translational position of one point with respect to another. This data type does not specify which points are involved, nor does it specify the coordinate axes onto which the three components of the vector are projected.</semantics>
236
+ </arrayData>
237
+ <arrayData>
238
+ <name>VelocityVector</name>
239
+ <dataType>Velocity</dataType>
240
+ <cardinality>3</cardinality>
241
+ <encoding>HLAfixedArray</encoding>
242
+ <semantics>A 3-vector that specifies the time derivative of the vector position of some point with respect to another as seen by an observer fixed in some reference frame. This data type does not specify which points are involved, nor does it specify the observer frame of reference, nor does it specify the coordinate axes onto which the three components of the vector are projected.</semantics>
243
+ </arrayData>
244
+ <arrayData>
245
+ <name>AccelerationVector</name>
246
+ <dataType>Acceleration</dataType>
247
+ <cardinality>3</cardinality>
248
+ <encoding>HLAfixedArray</encoding>
249
+ <semantics>A 3-vector that specifies the time derivative of a vector velocity of some point with respect to another as seen by an observer fixed in some reference frame. This data type does not specify which points are involved, nor does it specify the observer frame of reference, nor does it specify the coordinate axes onto which the three components of the vector are projected.</semantics>
250
+ </arrayData>
251
+ <arrayData>
252
+ <name>AngularVelocityVector</name>
253
+ <dataType>AngularRate</dataType>
254
+ <cardinality>3</cardinality>
255
+ <encoding>HLAfixedArray</encoding>
256
+ <semantics>A 3-vector that specifies the time derivative of the orientation of one reference frame with respect to another. This data type does not specify the reference frames, nor does it specify the coordinate axes onto which the three components of the vector are projected.</semantics>
257
+ </arrayData>
258
+ <arrayData>
259
+ <name>AngularAccelerationVector</name>
260
+ <dataType>AngularAcceleration</dataType>
261
+ <cardinality>3</cardinality>
262
+ <encoding>HLAfixedArray</encoding>
263
+ <semantics>A 3-vector that specifies the time derivative of an angular velocity vector as seen by an observer fixed in some reference frame. This data type does not specify which angular velocity, nor does it specify the observer frame of reference, nor does it specify the coordinate axes onto which the three components of the vector are
264
+ projected.</semantics>
265
+ </arrayData>
266
+ <arrayData>
267
+ <name>InertiaMatrix</name>
268
+ <dataType>MassMomentOfInertia</dataType>
269
+ <cardinality>9</cardinality>
270
+ <encoding>HLAfixedArray</encoding>
271
+ <semantics>A 3x3 matrix that specifies the mass inertia matrix of a body about some coordinate axes. The nine elements of the matrix are stored row-wise, namely: Ixx, Ixy, Ixz, Iyx, Iyy, Iyz, Izx, Izy, Izz. The off-diagonal components Iij (i!=j) are the so-called 'negative integrals'. This means that the elements in this inertia matrix satisfy the equation H=Iw. Where H is the angular momentum vector, I is the inertia matrix and w is the angular velocity vector. This data type does not specify the coordinate axes about which the moments are calculated.</semantics>
272
+ </arrayData>
273
+ <arrayData>
274
+ <name>Vector</name>
275
+ <dataType>Scalar</dataType>
276
+ <cardinality>3</cardinality>
277
+ <encoding>HLAfixedArray</encoding>
278
+ <semantics>A unitless 3-vector.</semantics>
279
+ </arrayData>
280
+ <arrayData>
281
+ <name>Matrix</name>
282
+ <dataType>Scalar</dataType>
283
+ <cardinality>9</cardinality>
284
+ <encoding>HLAfixedArray</encoding>
285
+ <semantics>A unitless 3x3 matrix. The nine elements of the matrix are stored row-wise, namely: m11, m12, m13, m21, m22, m23, m31, m32, m33, where the first index is the row index.</semantics>
286
+ </arrayData>
287
+ <arrayData>
288
+ <name>ForceVector</name>
289
+ <dataType>Force</dataType>
290
+ <cardinality>3</cardinality>
291
+ <encoding>HLAfixedArray</encoding>
292
+ <semantics>A 3-vector that specifies the vector force. This data type does not specify which points are involved, nor does it specify the coordinate axes onto which the three components of the vector are projected.</semantics>
293
+ </arrayData>
294
+ <arrayData>
295
+ <name>TorqueVector</name>
296
+ <dataType>Torque</dataType>
297
+ <cardinality>3</cardinality>
298
+ <encoding>HLAfixedArray</encoding>
299
+ <semantics>A 3-vector that specifies the vector torque. This data type does not specify which points are involved, nor does it specify the coordinate axes onto which the three components of the vector are projected.</semantics>
300
+ </arrayData>
301
+ <arrayData>
302
+ <name>InertiaRateMatrix</name>
303
+ <dataType>MassMomentOfInertiaRate</dataType>
304
+ <cardinality>9</cardinality>
305
+ <encoding>HLAfixedArray</encoding>
306
+ <semantics>A 3x3 matrix that specifies the time rate of change of the parameters in the InertiaMatrix. The elements in this matrix correspond directly to the elements in the InteriaMatrix.</semantics>
307
+ </arrayData>
308
+ </arrayDataTypes>
309
+ <fixedRecordDataTypes>
310
+ <fixedRecordData>
311
+ <name>ReferenceFrameTranslation</name>
312
+ <encoding>HLAfixedRecord</encoding>
313
+ <semantics>This is the translational state of a subject reference frame with respect to a 'referent' frame. This data type does not specify the two reference frames.</semantics>
314
+ <field>
315
+ <name>position</name>
316
+ <dataType>PositionVector</dataType>
317
+ <semantics>Position of the subject frame origin with respect to the referent origin with components expressed in the referent coordinate axes.</semantics>
318
+ </field>
319
+ <field>
320
+ <name>velocity</name>
321
+ <dataType>VelocityVector</dataType>
322
+ <semantics>Velocity of the subject frame origin with respect to its referent origin with components expressed in the referent coordinate axes.</semantics>
323
+ </field>
324
+ </fixedRecordData>
325
+ <fixedRecordData>
326
+ <name>ReferenceFrameRotation</name>
327
+ <encoding>HLAfixedRecord</encoding>
328
+ <semantics>This is the rotational state of a reference frame with respect to a 'referent' frame.</semantics>
329
+ <field>
330
+ <name>attitude_quaternion</name>
331
+ <dataType>AttitudeQuaternion</dataType>
332
+ <semantics>Attitude quaternion that specifies the orientation of the subject frame with respect to the referent.</semantics>
333
+ </field>
334
+ <field>
335
+ <name>angular_velocity</name>
336
+ <dataType>AngularVelocityVector</dataType>
337
+ <semantics>Angular velocity of the subject frame with respect to the referent with components resolved onto the subject coordinate axes.</semantics>
338
+ </field>
339
+ </fixedRecordData>
340
+ <fixedRecordData>
341
+ <name>AttitudeQuaternion</name>
342
+ <encoding>HLAfixedRecord</encoding>
343
+ <semantics>This is a quaternion quantifying the orientation of a 'subject' reference frame with respect to some other 'referent' frame. Quaternions consist of one scalar component and a 3-element vector component and can be denoted Q = (s, V), where s is a scalar and V is a vector (x, y, z). Confusion often arises regarding the meaning of the quaternion. (There are several similar but incompatible conventions.) This data type defines a so-called 'left unit transformation quaternion'. It may be used to transform the elements of a vector V_R = (xR, yR, zR) resolved in the referent frame's coordinate axes into the corresponding elements of a vector V_S = (xS, yS, zS) resolved in the subject frame's coordinate axes (i.e. determine the components of the same vector in another coordinate system). The quaternion transformation formula is (0, V_A) = Q . (0, V_B) . Q*, where '.' denotes quaternion multiplication and * denotes quaternion conjugation. The formula for multiplication of the quaternion Q1 = (s1, V1) where V1 is the vector (x1, y1, z1) by the quaternion Q2 = (s2, V2) where V2 is the vector (x2, y2, z2) is Q3 = Q1 . Q2 = (s3, V3) where s3 = s1 s2 - (x1 x2 + y1 y2 + z1 z2) and V3 = (x3, y3, z3) with x3 = s1 x2 + s2 x1 + (y1 z2 - z1 y2), y3 = s1 y2 + s2 y1 + (z1 x2 - x1 z2) and z3 = s1 z2 + s2 z1 + (x1 y2 - y1 x2). The formula for conjugation of the quaternion Q = (s, V), where V is the vector (x, y, z) is Q* = (s, -V) = (s, (-x, -y, -z)).</semantics>
344
+ <field>
345
+ <name>scalar</name>
346
+ <dataType>Scalar</dataType>
347
+ <semantics>The scalar component of the quaternion.</semantics>
348
+ </field>
349
+ <field>
350
+ <name>vector</name>
351
+ <dataType>Vector</dataType>
352
+ <semantics>The vector component of the quaternion.</semantics>
353
+ </field>
354
+ </fixedRecordData>
355
+ <fixedRecordData>
356
+ <name>SpaceTimeCoordinateState</name>
357
+ <encoding>HLAfixedRecord</encoding>
358
+ <semantics>A multi-dimensional representation of an observational coordinate frame and associated state. There are three spatial dimensions, three attitude dimensions and one time dimension. The spatial and attitude components define a right-handed orthogonal set of coordinate axes that constitute a reference frame. The time dimension specifies the 'position' of the coordinate with respect to the physical time scale (TT).</semantics>
359
+ <field>
360
+ <name>translational_state</name>
361
+ <dataType>ReferenceFrameTranslation</dataType>
362
+ <semantics>This is the reference frame's translational state with respect to its parent frame. If this frame has no parent, this attribute is meaningless.</semantics>
363
+ </field>
364
+ <field>
365
+ <name>rotational_state</name>
366
+ <dataType>ReferenceFrameRotation</dataType>
367
+ <semantics>This is the reference frame's rotational state with respect to its parent frame. If this frame has no parent, this attribute is meaningless.</semantics>
368
+ </field>
369
+ <field>
370
+ <name>time</name>
371
+ <dataType>Time</dataType>
372
+ <semantics>This specifies the simulated physical time (TT), which represents the time dimension associated with a reference frame state. It is the fourth component along with the three spatial dimensions that define a reference frame coordinate state.</semantics>
373
+ </field>
374
+ </fixedRecordData>
375
+ </fixedRecordDataTypes>
376
+ </dataTypes>
377
+ </objectModel>