I found that when I run the thermal simulation the memory usage increase very fast. It might be caused by the lists that store inner_faces, external_faces, and all_faces. Python's List data structure is reported to consume larger memory than other data structure, like numpy.array. I am trying to replace the lists with numpy.array to see if the memory usage could be diminished.
I found that when I run the thermal simulation the memory usage increase very fast. It might be caused by the lists that store inner_faces, external_faces, and all_faces. Python's List data structure is reported to consume larger memory than other data structure, like numpy.array. I am trying to replace the lists with numpy.array to see if the memory usage could be diminished.