MemoryError for running module "pssarrays.accc_violations_report"
Hi,
I just encountered a memory error as follows: ierr = pssarrays.acccviolationsreport(accfile=r'sys02.acc', stype='con', busmsm=0.5, sysmsm=5.0, rating='c', flowlimit=100,rptfile=r"Day1Hr02vilations.txt") File ".\pssarrays.py", line 2234, in acccviolationsreport File ".\pssarrays.py", line 1258, in acccsolution MemoryError
The reason may be as trivial as "not enough memory". But I don't want to rush into this simple answer unless I am sure I rule out all other silly mistakes I made in the python code.
Please advise. Appreciate it.
You can use the Resource Monitor and watch as the python process creeps up to 2GB and then throws the ``MemoryError`` exception. It's not that hard to hit the 2GB limit (32bit python).
Thank for your valuable suggestion, Chip! I will give it a try.