ANSYS中如何对节点或关键点进行精确选择?
(2012-10-16 14:14:23)
标签:
杂谈 |
分类: 软件(ANSYS、ADINA、SAP2000 |
ANSYS中如何对节点或关键点进行精确选择?
For Selects based on non-integer numbers (coordinates, results, etc.), items that are within the range VMIN-Toler and VMAX+Toler are selected. The default tolerance Toler is based on the relative values of VMIN and VMAX as follows:
-
If VMIN = VMAX, Toler = 0.005 x VMIN.
-
If VMIN = VMAX = 0.0, Toler = 1.0E-6.
-
If VMAX ≠ VMIN, Toler = 1.0E-8 x (VMAX-VMIN).
Use the SELTOL command to override this default and specify Toler explicitly.
- VMAX
Maximum value of item range. VMAX defaults to VMIN.
产生上述问题的主要原因是:程序默认Toler = 0.005 x VMIN过大,需通过SELTOL 命令将其改小。
2、实现方法:
使用"SELTOL, Toler"命令,Sets the tolerance for subsequent select operations.
如:运行SELTOL,1.0E-8,再执行KSEL,S,LOC,Z,-30.962,就可进行节点精确定位。