Re: RTS-96 Test System in matpower format

2015-04-21 Thread Jose Luis Marin
I found a copy here:
http://www.mail-archive.com/matpower-l@cornell.edu/msg01301.html

But I don't know if it really matches the actual RTS-96 data (see
http://www.ee.washington.edu/research/pstca/rts/pg_tcarts.htm).  If you get
to analyze it in detail, could you please share the details here?

Regards,

-- 
Jose L. Marin
Gridquant España SL
Grupo AIA


On Mon, Apr 20, 2015 at 7:59 PM, Kanis kaniskanis...@gmail.com wrote:

 Hi, i would like to ask if someone has  RTS-96 Test System in matpower
 format. A link
 http://www.parallelcoding.com/wp-content/uploads/Research/MCSPruning/case96.m
 that is suggested in a previous conversation is not working.

 Thanks in advance for your interest!

 ---
 This email has been checked for viruses by Avast antivirus software.
 http://www.avast.com





REG: Switchable generators

2015-04-21 Thread nivedita arunachalam
Dear all,
  I am working with integration of solar energy to grid. I am
implementing it with negative loading concept. So to prevent reverse power
flow I included the following codings.

if(et11mpc.bus(42,PD))
   mpc.bus(42,PD)=mpc.bus(42,PD)-et11;
   else
   et11=0;
   end
  Where the et11 represents solar power generation.
Is this concept correct if the solar generation is less than PD then the
generator will be present if PD is less than solar generation then the
solar generator is removed from the system.
   Please guide me.
*Nivedita.*


Re: RTS-96 Test System in matpower format

2015-04-21 Thread kanis

Thank you both so much for the help. That is what i needed.

All the best.

On 4/21/2015 11:02 AM, Jose Luis Marin wrote:


I found a copy here: 
http://www.mail-archive.com/matpower-l@cornell.edu/msg01301.html


But I don't know if it really matches the actual RTS-96 data (see 
http://www.ee.washington.edu/research/pstca/rts/pg_tcarts.htm). If you 
get to analyze it in detail, could you please share the details here?


Regards,

--
Jose L. Marin
Gridquant España SL
Grupo AIA


On Mon, Apr 20, 2015 at 7:59 PM, Kanis kaniskanis...@gmail.com 
mailto:kaniskanis...@gmail.com wrote:


Hi, i would like to ask if someone has  RTS-96 Test System in
matpower format. A link

http://www.parallelcoding.com/wp-content/uploads/Research/MCSPruning/case96.m
that is suggested in a previous conversation is not working.

Thanks in advance for your interest!

---
This email has been checked for viruses by Avast antivirus software.
http://www.avast.com







---
This email has been checked for viruses by Avast antivirus software.
http://www.avast.com


Re: REG: Switchable generators

2015-04-21 Thread nivedita arunachalam
Dear Ray,
   No Ray, It was made as if solar generator generates more power than
actual load then that solar generation is not required. this may reduce the
solar power into the system but avoids reverse power flow due to negative
load.

*Nivedita.*

On Tue, Apr 21, 2015 at 8:59 PM, Ray Zimmerman r...@cornell.edu wrote:

 Shouldn’t the next to last line be …

 mpc.bus(42, PD) = 0;

 … instead of …

 et11 = 0;

 ?

Ray


 On Apr 21, 2015, at 3:41 AM, nivedita arunachalam 
 niveditaarunacha...@gmail.com wrote:

 Dear all,
   I am working with integration of solar energy to grid. I am
 implementing it with negative loading concept. So to prevent reverse power
 flow I included the following codings.

 if(et11mpc.bus(42,PD))
mpc.bus(42,PD)=mpc.bus(42,PD)-et11;
else
et11=0;
end
   Where the et11 represents solar power generation.
 Is this concept correct if the solar generation is less than PD then the
 generator will be present if PD is less than solar generation then the
 solar generator is removed from the system.
Please guide me.
 *Nivedita.*