First time here? We are a friendly community of Power Systems Engineers. Check out the FAQ!
1 | initial version |
Using the AREA command totals for an area are tabulated and sent to the report output. One of values is for total line charging for an area. My question is, how can I retrieve that value, or how do I calculate it?
Thanks!
2 | No.2 Revision |
Using the AREA command totals for an area are tabulated and sent to the report output. One of values is for total line charging for an area. My question is, how can I retrieve that value, or how do I calculate it?
Thanks!So far I've attempted to add up all the line charging quantities for all branches in the area:
ierr, xArry = psspy.abrnreal(1,1,1,1,1,['CHARGING'])
lineCharging = sum(xArry[0])
This provides a ballpark value but not the same value as is produced by the AREA command.
3 | No.3 Revision |
Using the AREA command totals for an area are tabulated and sent to the report output. One of values is for total line charging for an area. My question is, how can I retrieve that value, or how do I calculate it?
So far I've attempted to add up all the line charging quantities for all branches in the area:
psspy.asys(1, 1, [10])
ierr, xArry = psspy.abrnreal(1,1,1,1,1,['CHARGING'])
lineCharging = sum(xArry[0])
This provides a ballpark value but not the same value as is produced by the AREA command.
4 | retagged |
Using the AREA command totals for an area are tabulated and sent to the report output. One of values is for total line charging for an area. My question is, how can I retrieve that value, or how do I calculate it?
So far I've attempted to add up all the line charging quantities for all branches in the area:
psspy.asys(1, 1, [10])
ierr, xArry = psspy.abrnreal(1,1,1,1,1,['CHARGING'])
lineCharging = sum(xArry[0])
This provides a ballpark value but not the same value as is produced by the AREA command.
5 | No.5 Revision |
Using the AREA command command, totals for an area are tabulated and sent to the report output. One of values is for total line charging for an area. My question is, how can I retrieve that value, or how do I calculate it?
So far I've attempted to add up all the line charging quantities for all branches in the area:
psspy.asys(1, 1, [10])
ierr, xArry = psspy.abrnreal(1,1,1,1,1,['CHARGING'])
lineCharging = sum(xArry[0])
This provides a ballpark value but not the same value as is produced by the AREA command.