构建并测试第二个任务

构建并测试第二个任务。

构建项目之前,必须将第二个任务添加到助手类中:
  1. 返回到 InternalFlowAssistant,然后在第一个任务相应行下方添加下列语句行:
    tasks.add(new Task02CreateRegionFromPart());
    最终代码显示如下:
    public InternalFlowAssistant() {
            
        List<Task> tasks = new ArrayList<Task>(); // Creates a new array list for the list of tasks. 
        // Contains the list of tasks.
        tasks.add(new Task01ImportGeometry());
        tasks.add(new Task02CreateRegionFromPart());
        setOutline(tasks);
        }
  2. 保存文件 (Ctrl-S)。
  3. 重建助手项目。
  4. 将重建的助手载入 Simcenter STAR-CCM+ 并用其开展工作。
    任务 1 将几何导入 Simcenter STAR-CCM+。任务 2 用任务 1 的几何创建区域。