|
@@ -175,7 +175,12 @@ public class AFT001Service extends AFT001BaseModel implements ExecProcessFlow {
|
|
|
JSONObject obj = new JSONObject();
|
|
|
obj.put("filePath", exeOutPath);
|
|
|
obj.put("fileType", "ascii");
|
|
|
- obj.put("fileName", "dynamicResponse-transient"+step+".vtk");
|
|
|
+ if(!step.equals("0")){
|
|
|
+ obj.put("fileName", "dynamicResponse-transient"+step+".vtk");
|
|
|
+ }else {
|
|
|
+ obj.put("fileName", "dynamicResponse-transient.vtk");//静态 模态
|
|
|
+ }
|
|
|
+
|
|
|
msg.setParamJson(obj.toString());
|
|
|
}
|
|
|
}else if(action.equals("ContourDisplay")){
|