When using the act convection extension, how can we workaround a possible issue with the Pilot Node Temperature result?
The extension (Convection 21.1 created by Ansys Inc) might block/freeze the UI when using the
Pilot Node Temperature result in newer releases (say 2025R2). Workaround (do not use this extension pilot node result): We can retrieve the last node number which would correspond to the single Pilot Node Temperature in the model (instead of *get we can use also the internal extension name for the pilot node: my_iNodeMax=nodeEnclosure_1 (_2, etc for other enclosure). Then in a python post code object retrieve this node and generate a temperature result on it. As shown below (after solve python code):
def after_solve(this, analysis):# Do not edit this line solution=analysis.Solution comd = DataModel.GetObjectsByName("CommandsAPDL")[0] ndm=comd.PropertyByName("my_iNodeMax").InternalValue temperature_result=solution.AddTemperature() temperature_result.ScopingMethod = GeometryDefineByType.ResultFileItem temperature_result.ItemType = ResultFileItemType.NodeIDs temperature_result.SolverComponentIDs = str(int(ndm)) solution.EvaluateAllResults()