宏 API 更改 2019.3
在 Simcenter STAR-CCM+ 2019.3 中,宏 API 针对网格化、有限元模型、重叠、多孔介质、伴随、DEM、欧拉多相流、VOF 和 N-相混合物、电磁学、电化学和等离子体、设计管理器、协同仿真和 STAR-ICE(现为 Simcenter STAR-CCM+ In-cylinder)进行了更改。
网格化:对解算方案插值的模型选择的更改
与解算方案插值相关的模型已重构,以简化工作流程和用户选择。此项重构已导致宏代码更改。
已移除以下类:
ProximityInterpolationModel.class
ConservativeInterpolationModel.class
要激活或停用解算方案插值,改用 SolutionInterpolationModel.class
:
以前版本 | Simcenter STAR-CCM+ 2019.3 |
---|---|
|
|
|
|
以前在 ProximityInterpolationModel
和 ConservativeInterpolationModel
上可用的方法 getSolutionInterpolationMethod
和 setPerPartMapping
,现在应在 SolutionInterpolationModel
上调用:
以前版本 | Simcenter STAR-CCM+ 2019.3 |
---|---|
|
|
|
|
以前在 ConservativeInterpolationModel
上可用的方法 setPerPartConservation
已移至 ConservativeMappingModel
,它是 SolutionInterpolationModel
的子级:
以前版本 | Simcenter STAR-CCM+ 2019.3 |
---|---|
|
|
有限元模型:对场函数的更改
为了保持一致性,在有限元固体应力和固体能量建模中,以下场函数已将其内部名称(不是其标题)更改为如下表所列。更新宏中这些场函数的所有实例。
UI 标题 | 以前版本中的内部名称 | Simcenter STAR-CCM+ 2019.3 中的内部名称 |
---|---|---|
刚体速度 | FeRigidBodyVelocityVar |
RigidBodyVelocity |
刚体加速度 | FeRigidBodyAccelerationVar |
RigidBodyAcceleration |
温度时间导数 | FeSolidEnergyTemperatureTimeDerivative |
TemperatureTimeDerivative |
重叠网格:重叠守恒选项已升级为连续体模型
分离流模型节点的守恒选项子节点已被移除,其功能现在位于新的重叠守恒模型节点中,因此导致宏代码的更改。
以前版本 | Simcenter STAR-CCM+ 2019.3 |
---|---|
|
|
多孔介质
对多孔区域分布的更改
在多孔区域和多孔介质中,与各向异性电阻指定相关的分布已得到改进,简化了工作流程,并重命名以与其他模型一致。
以前版本 | Simcenter STAR-CCM+ 2019.3 |
---|---|
|
|
|
|
|
|
|
|
在分布级别不再指定分布的空间方向。新的分布具有独立的方位属性,后者可在其他分布中重新使用。
以前版本 | Simcenter STAR-CCM+ 2019.3 |
---|---|
|
|
对各向异性固体导热率的更改
为了使各向异性固体导热率的指定更简单且少出错,此材料属性已重组,从而导致宏代码更改。
以前版本 | Simcenter STAR-CCM+ 2019.3 |
---|---|
|
|
已努力将旧的宏行为自动映射到新的 API,但建议您在新版本中检查您的配置文件。
伴随:对成本函数的更改
在 Simcenter STAR-CCM+ 当前版本中,计算操作、步进和运行现在可以应用于各个成本函数,而不是简单地应用于所有成本函数。
以下示例显示了当前版本的新的宏代码,为单独的阻力和升力成本函数运行伴随:
Simulation simulation_0 = getActiveSimulation();
AdjointSolver adjointSolver_0 = ((AdjointSolver) simulation_0.getSolverManager().getSolver(AdjointSolver.class));
ForceCostFunction forceCostFunction_0 = ((ForceCostFunction) simulation_0.getAdjointCostFunctionManager().getAdjointCostFunction("Drag"));
ForceCostFunction forceCostFunction_1 = ((ForceCostFunction) simulation_0.getAdjointCostFunctionManager().getAdjointCostFunction("Lift"));
adjointSolver_0.runAdjoint(Arrays.asList(forceCostFunction_0, forceCostFunction_1));
已引入新方法 clearAdjoint()
,以允许清除所有成本函数或特定成本函数列表的伴随解:
Simulation simulation = getActiveSimulation();
AdjointSolver adjointSolver = ((AdjointSolver) simulation.getSolverManager().getSolver(AdjointSolver.class));
// Clear adjoint of specific cost functions
ForceCostFunction forceCostFunction_0 = ((ForceCostFunction) simulation.getAdjointCostFunctionManager().getAdjointCostFunction("Drag"));
ForceCostFunction forceCostFunction_1 = ((ForceCostFunction) simulation.getAdjointCostFunctionManager().getAdjointCostFunction("Lift"));
adjointSolver.clearAdjoint(Arrays.asList(forceCostFunction_0, forceCostFunction_1));
// Clear adjoint of all cost functions
adjointSolver.clearAdjoint();
此项改进还导致宏代码更改。
n 伴随步数
以前版本 | Simcenter STAR-CCM+ 2019.3 |
---|---|
|
|
正在计算网格灵敏度
以前版本 | Simcenter STAR-CCM+ 2019.3 |
---|---|
|
|
计算表面灵敏度
以前版本 | Simcenter STAR-CCM+ 2019.3 |
---|---|
|
|
计算伴随误差估计
以前版本 | Simcenter STAR-CCM+ 2019.3 |
---|---|
|
|
DEM:对强度指定的更改
以下 DEM 模型参数已重组,以使用实现例如从恒值切换到场函数的方法:
- 简单失效模型参数:
- 拉伸强度
- 剪切强度
- 恒定比率损坏模型参数:
- 粘结强度
- 初始损伤
此项改进导致宏代码更改。以下示例显示了在简单失效模型中为均匀分布的拉伸强度选择和设置参数:
以前版本 | Simcenter STAR-CCM+ 2019.3 |
---|---|
|
|
欧拉多相:对 S-Gamma 破碎和聚结的更改
在 S-Gamma 模型的破碎和聚结中实施了改进,因此导致宏代码的更改。
以前版本 | Simcenter STAR-CCM+ 2019.3 |
---|---|
|
|
VOF / N 相混合物
对流选项的重构
由于一致性和标签的改进,对流选项已重构,因此导致宏代码发生更改。
VOF 示例
以前版本 | Simcenter STAR-CCM+ 2019.3 |
---|---|
|
|
|
|
|
|
分离 N 相混合物的示例
以前版本 | Simcenter STAR-CCM+ 2019.3 |
---|---|
|
|
|
|
|
|
重命名默认对流选项
对于流体体积 (VOF) 模型节点,对流属性的默认设置已重命名以保持一致性。二阶设置现在是 HRIC(高分辨率交界面捕捉),从而导致宏代码更改。
此名称已针对 VOF 进行更改,但不适用于 N 相混合物。要更新您的宏,请参见以下示例:
以前版本 | Simcenter STAR-CCM+ 2019.3 |
---|---|
|
|
移除已弃用的类
作为 VOF 重组的一部分,移除了以前弃用的一些类。此更改仅与版本 11.04 或更早版本中记录的宏相关。这些过时的类不会出现在使用较新版本记录的宏中。
替换 SegregatedVofFlowModel
11.04 和更早版本 | Simcenter STAR-CCM+ 2019.3 |
---|---|
|
|
|
|
替换 SegregatedVofPhaseSpeciesModel
11.04 和更早版本 | Simcenter STAR-CCM+ 2019.3 |
---|---|
|
|
|
|
替换 SegregatedVofTemperatureModel
11.04 和更早版本 | Simcenter STAR-CCM+ 2019.3 |
---|---|
|
|
|
|
替换 VofPhaseEnergyModel
11.04 和更早版本 | Simcenter STAR-CCM+ 2019.3 |
---|---|
|
|
|
|
电磁
电路元件的更改
作为实施励磁线圈电路模型链接的一部分,类 ExcitationCoilCircuitElement
已从 electromagnetism.common
移至 electromagnetism.magneticpotential
。
以前版本 | Simcenter STAR-CCM+ 2019.3 |
---|---|
|
|
对节点力计算的更改
在 Simcenter STAR-CCM+ 以前版本中节点力在每次迭代过程中都计算,即使在未使用它们时也是如此。对于当前版本,为要查看这些值而必须选择的节点力提供了专用模型。对于向后兼容性,在恢复旧模拟时会激活模型。对于创建需要节点力的新模拟的宏,必须如下所示添加新模型。
以前版本 | Simcenter STAR-CCM+ 2019.3 |
---|---|
|
|
电化学/等离子体:电荷数材料属性的传输
由于引入了双极性扩散,ChargeNumberProperty
材料属性已从 electrochemicalspecies
移至 material
,从而导致宏代码更改。现有的宏将继续按预期方式工作,但如果已编辑自动生成的宏,则可能无法再正确编译,必须如下所示修改代码。
以前版本 | Simcenter STAR-CCM+ 2019.3 |
---|---|
|
|
设计管理器:自动保存选项的转移
设计管理器中的自动保存选项已从各个设计研究的属性移至设计管理器项目的属性。尽管现有 Java 宏 API 通常未更改,但方法 getAutoSaveOnDesignCompletion
和 setAutoSaveOnDesignCompletion
在 MdxLaunchSettings
类中已弃用,并且已添加到 MdxProject
类中。
这些已弃用的方法尚未从当前版本中移除,但 MdxLaunchSettings
方法现在引用 MdxProject
类以获取和设置值。因此,回放使用这些方法的较旧的宏可能会导致项目级别自动保存选项不按预期方式设置。因此,建议如以下示例所示通过更新宏来准备更改。
以前版本 | Simcenter STAR-CCM+ 2019.3 |
---|---|
|
|
协同仿真:场指定的更改
场指定中的结构改进导致宏代码更改。每组更改之后都有一个示例,说明应如何更新宏代码。
CoSimStencilOption
CoSimLocationOption
类已重命名为 CoSimStencilOption
。
以前版本 | Simcenter STAR-CCM+ 2019.3 |
---|---|
|
|
ScalarFieldSpecification
以下类已替换为类 ScalarFieldSpecification
:
ScalarAuxiliaryExportSpecification
ScalarAuxiliaryImportSpecification
HeatTransferCoefficientExportSpecification
HeatTransferCoefficientImportSpecification
MassflowExportSpecification
MassflowImportSpecification
PressureExportSpecification
PressureImportSpecification
TemperatureExportSpecification
TemperatureImportSpecification
ReferenceTemperatureExportSpecification
ReferenceTemperatureImportSpecification
HeatFluxExportSpecification
HeatFluxImportSpecification
以前版本 | Simcenter STAR-CCM+ 2019.3 |
---|---|
|
|
VectorFieldSpecification
以下类已替换为类 VectorFieldSpecification
:
VectorAuxiliaryExportSpecification
VectorAuxiliaryImportSpecification
DisplacementExportSpecification
DisplacementImportSpecification
VelocityExportSpecification
VelocityImportSpecification
WallShearStressExportSpecification
WallShearStressImportSpecification
以前版本 | Simcenter STAR-CCM+ 2019.3 |
---|---|
|
|
ValueSpecification
类 ExportScalarValueSpecification
和 ImportScalarValueSpecification
已替换为 ScalarValueSpecification
。
类 ExportVectorValueSpecification
和 ImportVectorValueSpecification
已替换为 VectorValueSpecification
。
类 ExportIntScalarValueSpecification
和 ImportIntScalarValueSpecification
已替换为 IntScalarValueSpecification
。
类 ExportBoolScalarValueSpecification
和 ImportBoolScalarValueSpecification
已替换为 BoolScalarValueSpecification
。
类 ExportEnumValueSpecification
和 ImportEnumValueSpecification
已替换为 EnumValueSpecification
。
类 ExportStringValueSpecification
和 ImportStringValueSpecification
已替换为 StringValueSpecification
。
以前版本 | Simcenter STAR-CCM+ 2019.3 |
---|---|
|
|
Simcenter STAR-CCM+ In-Cylinder:因重命名 STAR-ICE 而发生的更改
3D-CAD 模型和场景已由 STAR-ICE 重命名为 In-Cylinder,从而导致宏代码更改。
以前版本 | Simcenter STAR-CCM+ 2019.3 |
---|---|
|
|