|
@@ -91,8 +91,26 @@ public class AFT001Service extends AFT001BaseModel implements ExecProcessFlow {
|
|
|
|
|
|
}else if(action.equals("AlignToMinusAxisZ")){//负z轴对齐
|
|
|
|
|
|
- }else if(action.equals("RelocateToCenter")){
|
|
|
-
|
|
|
+ }else if(action.equals("TransformToIsometric")){//等距视图显示
|
|
|
+
|
|
|
+ }else if(action.equals("ResultImport")){
|
|
|
+ JSONObject obj = new JSONObject();
|
|
|
+ obj.put("filePath","/cephfs/Postprocess_Binary");
|
|
|
+ obj.put("fileType","binary");
|
|
|
+ obj.put("fileName","whole_part1.plt,whole_part2.plt,whole_part3.plt");
|
|
|
+ msg.setParamJson(obj.toString());
|
|
|
+ }else if(action.equals("ContourDisplay")){
|
|
|
+ JSONObject obj = new JSONObject();
|
|
|
+ obj.put("level",5);
|
|
|
+ obj.put("range",0.111);
|
|
|
+ obj.put("scalarName","r");
|
|
|
+ msg.setParamJson(obj.toString());
|
|
|
+ }else if(action.equals("LineDisplay")){
|
|
|
+ JSONObject obj = new JSONObject();
|
|
|
+ obj.put("level",5);
|
|
|
+ obj.put("range",0.111);
|
|
|
+ obj.put("scalarName","r");
|
|
|
+ msg.setParamJson(obj.toString());
|
|
|
}
|
|
|
System.out.println(XiJsonUtil.objectToJson(msg));
|
|
|
MFMqUtils.get(CaeMQ.class).sendCaein(XiJsonUtil.objectToJson(msg));
|