I have a file that contains temperature values for specific coordinates. The format of file is as follows:
X Y Z Temp
The goal is to read this information from a file and apply it, then Abaqus does its magic. I have been given a Python script that builds the model (I suspect this script was generated automatically using the Abaqus GUI). In this file methods such as edges.findAt
, faces.findAt
and vertices.findAt
are used to select the desired location and apply the temperature. Now, I am looking for a way to tell Abaqus to apply temperature at a certain nodal locations. It seems it is possible since when I look at the inp file I see such pattern. Even, if you could give me one example that reads load, temperature, or anything from a file and apply it at specific location it could be really helpful.
--Edit--
The file I have been working with can be found at this link. It contains two files, heat_aba.py and input.txt. My problem is concerned with lines 58-102, to be substituted with a routine in python to read temperatures from input.txt and initialize the model in Abaqus. The coordinates in the input.txt are nodal coordinates.