Ask Your Question

Anil Kumar's profile - activity

2023-09-19 21:58:47 -0500 received badge  Notable Question (source)
2023-09-19 21:58:47 -0500 received badge  Famous Question (source)
2022-02-19 04:44:03 -0500 commented answer Export AREA LOSSES from the output bar to Excel

upvote if it is correct

2022-02-19 04:43:48 -0500 answered a question Export AREA LOSSES from the output bar to Excel

you can export report screen to text file using the command as follows

psspy.report_output(2, "check_all", 2) #### rending report to external txt file

psspy.report_output(1, "check_all", 2)  ### sending report to internal report screen of psse
2022-02-19 04:40:32 -0500 commented answer Corrective Action - Subsystem Definition

please upvote if correct

2022-02-19 04:40:11 -0500 answered a question Corrective Action - Subsystem Definition

Sir, I understand that you want to change the generation/load for a perticular subsystem either increment or decrement. this activity can be done by designing the subsystem and use the pertifuclar subsystem for increment or decrement.

    change = 100
        ############################   Automation ##############################
   psspy.bsys(1,0,[0.0, 0.12E+04],1,[4601],0,[],0,[],0,[]) # area 4601 having subsystem identifier 1
    #iniatialization and increment of generation in area 4601
    psspy.scal_2(1,0,1,[0,0,0,0,0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0])
    psspy.scal_2(1,0,2,[2,3,1,1,0],[_f, change,_f,_f,_f,_f,_f])

    psspy.bsys(2,0,[0.0, 0.12E+04],1,[4101],0,[],0,[],0,[])# area 4101 having subsystem identifier 2

    # initialization and decrement of generation in area 4101
    psspy.scal_2(2,0,1,[0,0,0,0,0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0])
    ierr = psspy.scal_2(2,0,2,[2,3,1,1,0],[ _f,-change,_f,_f, _f,_f,_f])
2022-02-14 06:12:06 -0500 received badge  Popular Question (source)
2022-02-11 03:33:51 -0500 answered a question PSSE output not always going to directed output file

Sir, here as far as i understand the issue you may use the following commands depending on the requirement

1) if you want report to send to standard psse gui you may use

psspy.report_output(1)

2) if you want it to directed to specific file in a drive you may change to

psspy.report_output(2,"file name with complete address",0)

i believe your problem may be solved with this

2022-02-09 05:36:22 -0500 asked a question how to add Bus GIS(from from google earth) data sld

How can we add the GIS data of the buses from google earth kmz file to the sld of psse.? how can we integrate google earth to psse.?

2022-02-09 04:38:12 -0500 commented answer PSSE Course

https://www.udemy.com/share/103MdU3@u_5iFBr7ltMWigmSBgUxFy86sBz6nnL2BxPLm_9Kxzp-C4E-e1YlOsH87F3TLRdtgQ==/

2022-02-09 03:39:53 -0500 answered a question initialising Psse from Python

please check weather you have added psspybin and psspy27 path in environment variables.

2022-02-08 11:40:03 -0500 answered a question Can we create a single line diagram(sld) from raw data using python?

Sir, With the data of buses(nodes) and lines(edges) you can plot the network plot using networkx library of python.

example:

import networkx as net
buses = ["101","102","103","104","105"]
lines = [("101","102"),("102","103"), ("102","104"),("103","105") ]
G = net.Graph()
G.add_nodes_from(buses)
G.add_edges_from(lines)
net.draw(G,with_labels=True)

you will get the neat network plot without psse in python

2022-02-08 10:38:43 -0500 received badge  Enthusiast
2022-02-06 07:28:07 -0500 answered a question Single line diagram generation from saved case (RIMUX method)

the api code of abusint can be used to retrive all the bus numbers in a subsystem and the corresponding locations is assigned by experiance or trail and error mathod.

growbus api is used to draw the bus in sld of psse with x and y coordinates

2022-02-06 07:00:45 -0500 commented answer Move buses in slider diagrams

you can minimize the trail and error by using python(machine language script)

2022-02-06 05:28:05 -0500 commented answer Can we create a single line diagram(sld) from raw data using python?

for studying all the python command api's you can refer at the api document at PTI/PSSE34(OR ANY)/DOC

2022-02-06 02:41:47 -0500 commented answer Can we create a single line diagram(sld) from raw data using python?

yes the x and y are the cartesian coordinate assuming 0,0 is at the center of the slider diagram

2022-02-05 05:56:32 -0500 answered a question Creating and editing an "Eventstudyfile" with python

Sir, In the dynamic simulation you can actually calculate cct using python while loop along with python automate file. This while loop check can be done with reporting tool and critical fault limit.

Its acuracy is as good as with the python program alpha variable

2022-02-05 05:03:08 -0500 answered a question PSSE Course

1) you can learn psse basics from the youtube and udemy(online learning course). Those are the only the basic operations. you can do a lot more than those in the vedios or course.

No python is not necessary for the usage of PSSE you can compensate them with the batch commands or manual GUI operations. python only gives edge to the ease automation of the routine steps and increase speed of activity.

2020-01-22 21:36:15 -0500 answered a question License error 'Component has expired'

Change the pc time by 1 year and use it again

2019-01-14 17:00:08 -0500 received badge  Notable Question (source)
2019-01-09 09:19:20 -0500 received badge  Popular Question (source)
2018-12-27 06:30:46 -0500 asked a question where and how can we generate dynamic data for the test systems in psse

how and where can we find the dynamic simulation data, and how can we evaluate those systems