Ask Your Question
1

What is ECDI file in PSSE Xplore 34?

asked 2019-08-13 13:53:37 -0500

Satyaki Banik gravatar image

updated 2019-08-13 13:58:47 -0500

I did not find any resource in this forums searching this keyword. How can I find (or make) an ECDI file?

Thanks in advance.

edit retag flag offensive close merge delete

2 answers

Sort by ยป oldest newest most voted
1

answered 2019-08-13 16:14:00 -0500

acd1 gravatar image

updated 2019-08-13 16:15:09 -0500

The ECDI file is the economic dispatch data file. You can find more information on the formatting of this file in section 5.31 of the program operation manual (POM). For the full version of PSSE 34, the POM is located at C:\Program Files (x86)\PTI\PSSE34\DOCS, although it might be slightly different for Xplore. You can also navigate to the POM through the PSSE GUI with Help > PSSE Documentation.

edit flag offensive delete link more

Comments

Thanks a lot. I've found it in POM Article 5.32.

Satyaki Banik gravatar imageSatyaki Banik ( 2019-08-14 12:01:33 -0500 )edit
0

answered 2019-08-14 12:07:00 -0500

Satyaki Banik gravatar image

updated 2019-08-15 13:00:13 -0500

In PSSE Xplore 34 version, I've found that there is an example .ECD file given in the 'EXAMPLE'' folder (C:\Program Files (x86)\PTI\PSSEXplore34\EXAMPLE) named savnw.ecd. To import this into PSSE, I used the following code snippet:

# opening .SAV file first
psspy.case(r"""C:\Program Files (x86)\PTI\PSSEXplore34\EXAMPLE\savnw.sav""") 

# solving for load flow
psspy.fnsl([0,0,0,1,1,1,0,0]) 

# importing and running ECd for particular load (3285.6 MW) and MVA (100 MVA)
psspy.ecdi(0,1,1,r"""C:\Program Files (x86)\PTI\PSSEXplore34\EXAMPLE\savnw.ecd""",0,[0.0,0.0])
psspy.ecdi(0,1,2,r"""C:\Program Files (x86)\PTI\PSSEXplore34\EXAMPLE\savnw.ecd""",0,[0.0,0.0])
psspy.ecdi(0,1,3,r"""C:\Program Files (x86)\PTI\PSSEXplore34\EXAMPLE\savnw.ecd""",0,[ 3258.6, 100.0])
psspy.ecdi(0,1,4,r"""C:\Program Files (x86)\PTI\PSSEXplore34\EXAMPLE\savnw.ecd""",0,[0.0,0.0])
edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

[hide preview]

Question Tools

Stats

Asked: 2019-08-13 13:53:37 -0500

Seen: 766 times

Last updated: Aug 15 '19