问题描述:
通常情况下,用户需要在后处理程序(Output)中以 GUI 操作方式选择节点或应力点,用于在计算过程中存储数据并生成各种曲线。但是,如果用户在命令运行器(路径:Input>专家>运行命令...)中采用命令流或命令流文件的方式执行操作,上述选择节点或应力点的 GUI 操作能否转换为命令流?
解答:
在 PLAXIS 2D/3D 2017及后续版本中,用户可在前处理程序(Input)中以命令流方式选择节点或应力点,如下所示。
selectmeshpoints
/output addcurvepoint "Node" (x y z)
/output addcurvepoint "StressPoint" (x y z)
/output update

举 例:
在 PLAXIS 2D 中选择坐标位置接近(5, 0)的节点:
selectmeshpoints
/output addcurvepoint "Node" (5 0)
/output update
在 PLAXIS 3D 中选择坐标位置接近(0, 3, 5)的应力点:
selectmeshpoints
/output addcurvepoint "StressPoint" (0 3 5)
/output update
在 PLAXIS 2D 中选择多个节点和应力点:
selectmeshpoints
/output addcurvepoint "Node" (0 1)
/output addcurvepoint "Node" (10 1)
/output addcurvepoint "Node" (0 -10)
/output addcurvepoint "Node" (10 -10)
/output addcurvepoint "stresspoint" (0 1)
/output addcurvepoint "stresspoint" (5 1)
/output addcurvepoint "stresspoint" (0 -10)
/output addcurvepoint "stresspoint" (5 -10)
/output update