How to export the information of all the convection loads in my Mechanical to a csv?

Member, Moderator, Employee Posts: 248
50 Answers 100 Comments Second Anniversary 25 Likes
✭✭✭✭

I want to export the below information as a csv file directly from Mechanical via scripting.
1. Convection load Name
2. Film Coefficient
3. Film Coefficient unit
4. Ambient Temperature
5. Ambient Temperature unit

Comments

  • Member, Moderator, Employee Posts: 248
    50 Answers 100 Comments Second Anniversary 25 Likes
    ✭✭✭✭

    You can paste the below script in Mechanical scripting console to export all the convection loads corresponding to a thermal analysis (assumption --> this analysis is first in the tree. Please edit the index in DataModel.AnalysisList[i] to access other analyses)

    1. import os
    2.  
    3. #Provide the name of the CSV file
    4. fileName = 'Convection_Data.csv'
    5. #Select Analysis by Id
    6. analysis = DataModel.AnalysisList[0]
    7.  
    8. #Function to write a CSV file from the gathered data
    9. def writeCSV(t1,fileName):
    10. ExtAPI.Log.WriteMessage('my File name ' + fileName)
    11. with open(fileName , 'w') as f:
    12. for line in t1:
    13. for col in line:
    14. #For Non-German
    15. f.write(str(col) + ', ')
    16. #For German OS
    17. #f.write(str(col).replace('.',',') + '; ')
    18. f.write('\n')
    19.  
    20. #Find the user files directory for saving the data
    21. UserDir = r"D:\Cases\26832"
    22. saveName = os.path.join(UserDir,fileName)
    23. first_solution = analysis.Solution
    24. solver_data = first_solution.SolverData
    25. allConvections = DataModel.GetObjectsByType(DataModelObjectCategory.Convection)
    26. allData = []
    27. for convectionObj in allConvections:
    28. convName = convectionObj.Name
    29. lastIndexConv = convectionObj.FilmCoefficient.Output.DiscreteValueCount-1
    30. lastIndexAT = convectionObj.AmbientTemperature.Output.DiscreteValueCount-1
    31. convFCVal = convectionObj.FilmCoefficient.Output.GetDiscreteValue(lastIndexConv).Value
    32. convFCUnit = convectionObj.FilmCoefficient.Output.GetDiscreteValue(lastIndexConv).Unit
    33. convATVal = convectionObj.AmbientTemperature.Output.GetDiscreteValue(lastIndexAT).Value
    34. convATUnit = convectionObj.AmbientTemperature.Output.GetDiscreteValue(lastIndexAT).Unit
    35. allData.append([convName, convFCVal, convFCUnit, convATVal, convATUnit])
    36.  
    37. writeCSV(allData,saveName)

Welcome!

It looks like you're new here. Sign in or register to get started.