Re: Adding Wind Generation to Profiles

2017-09-27 Thread Ray Zimmerman
ber 2017 3:03 AM > To: MATPOWER discussion forum <mailto:matpowe...@list.cornell.edu> > Subject: Re: Adding Wind Generation to Profiles > > Check out the 'help get_profile'. Much like you pass the previous profiles > object on the load profile line, you can pass the previous profiles obj

RE: Adding Wind Generation to Profiles

2017-09-23 Thread Joshua Sebben
Stephen, Thank you so much! That works a treat! Regards, Josh From: Stephen Suffian Sent: Saturday, 23 September 2017 3:03 AM To: MATPOWER discussion forum Subject: Re: Adding Wind Generation to Profiles Check out the 'help get_profile'. Much like you pass the previous profiles object

Re: Adding Wind Generation to Profiles

2017-09-22 Thread Stephen Suffian
Check out the 'help get_profile'. Much like you pass the previous profiles object on the load profile line, you can pass the previous profiles object on the other lines: profiles = getprofiles('wind_profile1',iwind); profiles = getprofiles('wind_profile2',profiles,iwind); profiles =

Re: Adding Wind Generation to Profiles

2017-09-21 Thread Stephen Suffian
I also couldn't figure it out, but I got around it by adding a separate profile for each generator and changing the rows value. So if a wind generator is in row 5, you would have the struct look like this below. windprofile = struct( ... 'type', 'mpcData', ... 'table', CT_TGEN, ...

Adding Wind Generation to Profiles

2017-09-20 Thread Joshua Sebben
Currently working on adding wind generator units to my model. I am working off the 30 bus example case in MOST. I am trying to run the following code casefile = 'case30'; mpc = loadcase(casefile); xgd = loadxgendata('xgd_uc', mpc); [iwind, mpc, xgd] = addwind('wind_uc_30', mpc, xgd); profiles =