1

PSS/e 34 dyntools module

Hi,

I have been trying to open an .out file using python dyntools module, but I've getting an error: 3mw.out version is 1.47195e+19 DynChanExtract handles version 2.0 files only.

Does anyone know how to open .out file in PSS/E 34?

Thanks

Jack's avatar
11
Jack
asked 2017-07-19 17:27:05 -0500, updated 2017-07-19 17:27:53 -0500
edit flag offensive 0 remove flag close merge delete

Comments

add a comment see more comments

2 Answers

0

By default PSSE is saving .outx files instead of .out files, at least in the early version of 33.9 and 34. Change the file type in Dynamics/Simulation options. Dyntools cannot read the new extended output file format (.outx).

Please note that a file with extension .out may be in .outx format!!!

You can check the file type by opening the file in Notepad. A file in .out format starts with: FuPpHySPCD% $ while a file in .outx format starts with: FuPpHySPCD%PTI_SFL

perolofl's avatar
3.8k
perolofl
answered 2017-07-20 16:14:50 -0500, updated 2017-11-02 07:04:43 -0500
edit flag offensive 0 remove flag delete link

Comments

I've been saving it as ".out" file instead of ".outx" file. It keeps giving me the same error message.

Jack's avatar Jack (2017-07-20 17:49:49 -0500) edit

I have had this problem before. What is the file size of your .out file? Try recording fewer channels or run simulation for shorter duration. Did the simulation complete successfully? Sometimes if your network solution does not converge PSSE seems to mangle the out file.

oppossumX's avatar oppossumX (2017-07-21 12:24:55 -0500) edit

@perolofl where in the Edit/preferences in PSSE34 can you change the file type from .outx to .out? Thanks!

Phyl's avatar Phyl (2017-11-01 14:03:55 -0500) edit

Phyl: I was wrong. You can change the file type in "Dynamics>Simulation options...".

perolofl's avatar perolofl (2017-11-02 06:38:26 -0500) edit

Thank you!

Phyl's avatar Phyl (2017-11-02 14:52:29 -0500) edit
add a comment see more comments
0

Dyntools can only be used with the (old?) OUT format and not with the (new?) OUTX format. PTI said it is preparing an API to use functions within dyntools, compatible with both format types.

Within a python script, to select the (old?) OUT format for the *.OUT file, use:

psspy.set_chnfil_type(0)        #1 for OUTX format, 0 for (old) OUT format 
psspy.strt(1,myout)
jconto's avatar
2.9k
jconto
answered 2017-11-02 09:58:28 -0500
edit flag offensive 0 remove flag delete link

Comments

@jconto -- have you heard any update on when this is expected? I just ran across this error today. Glad I found this post, surprising that PTI didn't at least change the extension of the file to indicate a change...

wassup_doc's avatar wassup_doc (2018-04-09 13:35:34 -0500) edit

None. In this case, no news is bad news.

jconto's avatar jconto (2018-04-09 18:12:09 -0500) edit

Latest PSSe v.34.4.0 has an updated version of dyntools that works with either OUT format after setting a new variable outvrsn to 0 (old format) or 1(new format) !!!

jconto's avatar jconto (2018-04-20 17:49:13 -0500) edit

Is the PSSE v34.4.0 a premium version or a free version[50bus version]?

AlexYang's avatar AlexYang (2018-05-20 01:40:43 -0500) edit

I use the full version. I assume that the 'free' version would be updated as well.

jconto's avatar jconto (2018-05-27 20:57:37 -0500) edit
add a comment see more comments

Your Answer

Login/Signup to Answer