When PSpice performs a simulation, it creates a waveform data file. The size of this file for a transient analysis is roughly equal to:
(# transistors)·(# simulation time points)·24 bytes
The size for other analysis types is about 2.5 times smaller. For long runs, especially transient runs, this can generate waveform data files that are several megabytes in size. Even if this does not cause a problem with disk space, large waveform data files take longer to read in and take longer to display traces on the screen. You can limit waveform data file size by:
· placing markers on your schematic before simulation and having PSpice restrict the saved data to these markers only
· excluding data for internal subcircuits
· suppressing simulation output
(cite: OrCAD PSpice User Guide)
Also, I can recommend you the follow commands for .OPTION statement:
.OPTION CPUTIME
CPU time allowed for thi run
.OPTION LIMPTS
maximun points allowed for any print table or plot
.OPTION NUMDGT
number of digits output in print tables (maximun of 8 useful digits)
Finally:
.PROBE V(node1) V(node2) ... V(node n) ...
writes only those output variables specified to the data file, to restrict the size of the data file.