Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Large PSpice output file ??? Help.

Status
Not open for further replies.

epp

Full Member level 5
Joined
Mar 4, 2004
Messages
243
Helped
12
Reputation
24
Reaction score
4
Trophy points
1,298
Activity points
1,847
Hi!
When I simulate power electronic circuits in Pspice I got large *.dat file as a result (<=2GB). Circuit is very big with ABM, digital and analog parts and with large values of voltage, current and requency.

Is there any way how can I change deafult max value for this in Pspice which is 2GB (I need bigger) or how can I change some parameters in Pspice to get this dat file smaller so my simulation would reach its end without interrupting?

I mustn't change timestep or duration of simulation.
Thanks.
 

Hey, there are two things which determine the output file size. One the length of the simulation(of course depends on the time step accuracy). The other thing is the number of nodes you want to probe or save. When you want to reduce the size of your dat file, you can select only certain nodes to be probed and the file size will reduce considerably. Look into the .OPTIONS PROBE command or any other equivalent command
 

    epp

    Points: 2
    Helpful Answer Positive Rating
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.
 

    epp

    Points: 2
    Helpful Answer Positive Rating
Well, the equation seems pretty logical. We more or less have a similar equation for the calculating the size of each out file
 

just probe the node you want to see
for example, just probe the node of the output and the input, not all the internal nodes.
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top