Ask Your Question

yassinem's profile - activity

2021-09-03 08:14:12 -0500 received badge  Famous Question (source)
2021-02-12 02:33:41 -0500 received badge  Notable Question (source)
2021-02-09 07:17:08 -0500 received badge  Enthusiast
2021-02-07 19:52:05 -0500 received badge  Popular Question (source)
2021-02-05 06:19:51 -0500 commented answer Capacitor Control

Thank you for your response! I meant as an example, during a contingency configuration, a feeder may be taking more MW/MVAR load, in which situation, more MVAR would be drawn from this feeder, so I want the capacitor bank to go online and inject VARS into the system.

2021-02-04 07:59:36 -0500 asked a question Capacitor Control

Hi,

Wondering if a capacitor bank can be set to VAR control/voltage override in PSSE? I'm trying to get the cap bank to turn on/off based on the reactive power into the bus where the bank is connected and also force a voltage override when the voltage is soft. If this is doable, please let me know how it can be done. I' have access to PSSE 33 and 34 versions.

Thanks in advance for your help!

2020-03-23 05:21:25 -0500 received badge  Famous Question (source)
2020-03-09 06:07:45 -0500 received badge  Notable Question (source)
2020-02-26 09:31:58 -0500 received badge  Scholar (source)
2020-02-26 09:31:53 -0500 commented answer Allocating only MW loads using psspy.scal_2

This worked. Thanks a lot for your help.

2020-02-26 04:45:00 -0500 received badge  Popular Question (source)
2020-02-24 09:53:39 -0500 commented answer Allocating only MW loads using psspy.scal_2

Thanks for your response! It does record also the pre-assigned generation and show that in the code. Ultimately, I'm trying to run a for loop to change all MW loads one-by-one without editing generation.

2020-02-24 08:46:30 -0500 received badge  Editor (source)
2020-02-24 08:45:57 -0500 asked a question Allocating only MW loads using psspy.scal_2

Hi, I'm experimenting with interfacing Excel and PSSE V33, I'm trying to change only MW load of a specific region without changing the pre-assigned generation. I've tried different combinations for psspy.scal2 arguments but still not being able to change MW loads only. Is there a way to read off an excel sheet and assign that value as a new total of Load-MW? The excel import piece is working fine, just need the proper arguments for psspy.scal2 and PSSE documentation dos not provide any examples. Below is my code, please help:

______Importing Load Data________

import excelpy xlsfile = r"C:\Users\mhandy\OneDrive - Eversource Energy\Desktop\Loads.xlsx" testxls = excelpy.workbook(xlsfile,"test",mode='r') row=1 col=1 region1 = testxls.get_cell((row,col));

______Allocating Load - PSSE Recording________

psspy.bsys(0,0,[0.0, 765.],0,[],0,[],0,[],1,[101]) psspy.scal2(0,0,1,[0,0,0,0,0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0]) psspy.scal2(0,1,2,[0,1,0,1,0],[region1,0,0,0,0,0,0]) # I want to use the preassigned generation without modifying it.

psspy.fdns([0,0,0,1,1,0,99,0])

testxls.close()