录制步骤 3 的操作

录制步骤 3 的操作。

第三步设置初始条件、定义边界类型并设置入口边界的速度值。已为您提供该步骤的宏代码:
  1. 将下列代码复制到 initialConditionsAndBoundarySettings() 函数:
    Simulation simulation_0 =
        getActiveSimulation();
    PhysicsContinuum physicsContinuum_0 =
        ((PhysicsContinuum) simulation_0.getContinuumManager().getContinuum("Physics"));
    VelocityProfile velocityProfile_0 =
        physicsContinuum_0.getInitialConditions().get(VelocityProfile.class);
    velocityProfile_0.getMethod(ConstantVectorProfileMethod.class).getQuantity().setComponents(0.429, 0.0, 0.0);
    Region region_0 =
        simulation_0.getRegionManager().getRegion("Fluid");
    Boundary boundary_0 =
        region_0.getBoundaryManager().getBoundary("Inlet");
    boundary_0.setBoundaryType(InletBoundary.class);
    VelocityMagnitudeProfile velocityMagnitudeProfile_0 =
        boundary_0.getValues().get(VelocityMagnitudeProfile.class);
    velocityMagnitudeProfile_0.getMethod(ConstantScalarProfileMethod.class).getQuantity().setValue(0.429);
    Boundary boundary_1 =
        region_0.getBoundaryManager().getBoundary("Outlet");
    boundary_1.setBoundaryType(PressureBoundary.class);
  2. 重新格式化 NetBeans 中的代码。
  3. 选择 > 修复导入
  4. 修复所有导入对话框中,单击确定