Examples
The following command defines a cylindrical coordinate system with origin (10,20,0) with respect to the global Cartesian coordinate system CS_0. The polar axis and longitudinal axis are obtained by rotating the x-axis and z-axis of CS_0 respectively by 45° around the z-axis and by 15° around the y-axis of CS_0.
CS_DEF
ID_NAME = my_cs_01
CS_TYPE = CYLINDRICAL
DEF_TYPE = LOCAL
CS_REF = cs_0
ORIGIN_123 = 10.0, 20.0, 30.0
ROTATION_321 = 45.0, 15.0, 0.0
END_
The following command defines a rectangular (Cartesian) coordinate system
with origin through the node with ID number 10. The x-axis is defined by the
nodes 10 and 100. Node 101 defines a point in the x-y plane.
CS_DEF
ID_NAME = my_cs_02
CS_TYPE = RECTANGULAR
DEF_TYPE = NODE
CS_AXIS = X_XY
NODE_ORIGIN = 10
NODE_AXIS = 100
NODE_PLANE = 101
END_