Geomtool system call returned error, IER = -1073741819/FEATool Multiphysics
이전 댓글 표시
Hello,
I am trying to import a geometry to cfdtool(FEATool Multiphysics), and after an hour or so I get the message
Geomtool system call returned error, IER = -1073741819
GEOMTool 2.0.2 Build 22.08.238
Total number of loaded entities 225.
Any idea how to fix this ?
댓글 수: 5
Walter Roberson
2022년 10월 8일
"The exit code -1073741819 in hex is 0xC0000005. If you look up this code in Microsoft's documentation (NTSTATUS Values) you will see that it indicates that your program was terminated due to an access violation. This error can occur for a variety of reasons, including de-referencing a NULL pointer or referencing an invalid address."
Walter Roberson
2022년 10월 8일
One of the ways that can happen in programs is if the program attempts to malloc() some memory and there is not enough available memory so malloc() returns the NULL pointer, but the program is not checking for that possibility and tries to write to the pointer.
stamos dontas
2022년 10월 9일
Walter Roberson
2022년 10월 9일
You could try increasing the size of your virtual memory. However, virtual memory can be much much slower than regular memory.
Precise Simulation
2023년 3월 9일
2D geometries should generally not run out of memory. It seems there must be an issue with the geometry. If you attach the geometry here or the dedicatedl support forum http://forum.featool.com we can take a look and see what might have gone wrong.
답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Calendar에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!