1

What is ECDI file in PSSE Xplore 34?

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

Thanks in advance.

Satyaki Banik's avatar
11
Satyaki Banik
asked 2019-08-13 13:53:37 -0500, updated 2019-08-13 13:58:47 -0500
edit flag offensive 0 remove flag close merge delete

Comments

add a comment see more comments

2 Answers

1

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.

acd1's avatar
63
acd1
answered 2019-08-13 16:14:00 -0500, updated 2019-08-13 16:15:09 -0500
edit flag offensive 0 remove flag delete link

Comments

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

Satyaki Banik's avatar Satyaki Banik (2019-08-14 12:01:33 -0500) edit
add a comment see more comments
0

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])
Satyaki Banik's avatar
11
Satyaki Banik
answered 2019-08-14 12:07:00 -0500, updated 2019-08-15 13:00:13 -0500
edit flag offensive 0 remove flag delete link

Comments

add a comment see more comments

Your Answer

Login/Signup to Answer