Hello,
Are you writing the data to the file during each loop iteration? Oftentimes, users experience a severe performance loss when writing to file every time the loop iterates, because the computer has to read from the system RAM, find the correct write position on the HDD per instruction from the CPU, and physically write the data using the HDD.
Here is a
link that you can read through to evaluate poor performance issues with LabVIEW.
I recommend that you write to a queue during each loop iteration and pull all information from the queue after the loop is complete. Then you can write the data to file. For more
information regarding programming with queue's, please reference the following
link.
I hope this helps!
Best Regards,
Joe Des Rosier
National Instruments