0

PSSE 33.12 dyntools pssplotc issue

Has anyone tried using dyntools in PSSE 33.12? I am getting the following import error when using the CHNF and OUTDATA classes.

    outobj = dyntools.OUTDATA(thefile, 1, None)
  File ".\dyntools.py", line 231, in __init__
  File ".\dyntools.py", line 286, in _get_data_fortran
ImportError: No module named pssplotc

I can see the pssplotc.pyd file in the PSSPY27 and PSSPY34 folders of my PSSE 34 install but can't find it anywhere in my PSSE 33 install folder. I am using the same scripts and files that worked with PSSE 33.11 when running in PSSE 33.12.

oppossumX's avatar
50
oppossumX
asked 2018-09-11 11:50:28 -0500
edit flag offensive 0 remove flag close merge delete

Comments

add a comment see more comments

1 Answer

2

Scripts for v.33.11 cannot be used for v.33.12 when using dyntools. Now the optional variable 'outvrsn' has to be named in the calling function:

MyOUTVRSN = 0
# OK call for v.33.11:
chnfobj = dyntools.CHNF(outfile,MyOUTVRSN)
#OK call for v.33.12:
chnfobj = dyntools.CHNF(outfile,outvrsn=MyOUTVRSN)
jconto's avatar
2.9k
jconto
answered 2018-09-11 17:42:00 -0500
edit flag offensive 0 remove flag delete link

Comments

Thanks, this worked.

oppossumX's avatar oppossumX (2018-09-11 20:09:10 -0500) edit

I have been dealing with the same issue for 2 days. This works, thanks!

Michal's avatar Michal (2021-07-28 02:57:00 -0500) edit
add a comment see more comments

Your Answer

Login/Signup to Answer