function [stateNew,finalAlpha,alphaList,diff,SysDataUpd,SysParaUpd,maps]=... simulationAddZipLoadInstant(busTag,SysData,SysDataBase,SysPara,SimData,maps,x0,zipAdd) % Simulate add zip load % % FUNCTION simulationAddZipLoadInstant % % Author: Rui Yao % % Copyright (C) 2021, UChicago Argonne, LLC. All rights reserved. % % OPEN SOURCE LICENSE % % Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: % % 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. % 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. % 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. % % % ****************************************************************************************************** % DISCLAIMER % % THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED % WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A % PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY % DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, % PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER % CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR % OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. % *************************************************************************************************** % % INPUT % busTag - Tags for determining the partial system that will be kept % SysData - System data for simulation % SysDataBase - Base system data for simulation % SysPara - Parameters representing the events happening in the system % SimData - Simulation parameters % *Map - The mapping of current data to base data % inv*Map - Inverse mapping, base data to current data % x0 - Initial system state % zipAdd - Data of added zip load % % OUTPUT % stateNew - Solved new state % finalAlpha - The ending alpha % alphaList - A list of alphas % diff - Equation mismatches % SysDataUpd - Updated system data % *Map - The mapping of current data to base data (updated) % inv*Map - Inverse mapping, base data to current data (updated) % [bus,sw,pv,pq,shunt,line,ind,zip,syn,exc,tg,agc,cac,cluster]=unfoldSysData(SysData); [~,~,~,~,~,~,~,~,~,~,~,~,~,~,~,~,~,~,~,~,~,~,fault]=unfoldSysPara(SysPara); busMap=maps.busMap;invBusMap=maps.invBusMap; indMap=maps.indMap;invIndMap=maps.invIndMap; synMap=maps.synMap;invSynMap=maps.invSynMap; lineMap=maps.lineMap;invLineMap=maps.invLineMap; [~,~,~,~,~,~,~,~,method]=unfoldSimData(SimData); AEmethod=round(10*mod(method,1)); pqIncrS=zeros(size(pq,1),2);pvIncrS=zeros(size(pv,1),1); nbus=size(bus,1); nZip=size(zip,1); nInd=size(ind,1); Rzip0S=ones(nZip,1);Rzip1S=zeros(nZip,1); Rind0S=ones(nInd,1);Rind1S=zeros(nInd,1); [~,Ytr0,Ysh0,~,~,~,~]=getYMatrix(nbus,line,fault); zipAdd(:,1)=busMap(zipAdd(:,1)); zip=[zip;zipAdd]; Rzip0S=[Rzip0S;zeros(size(zipAdd,1),1)];Rzip1S=[Rzip1S;ones(size(zipAdd,1),1)]; SysParaSim=foldSysPara(pqIncrS,pvIncrS,Rind0S,Rind1S,[],[],Rzip0S,Rzip1S,Ytr0,0*Ytr0,Ysh0,0*Ysh0,[],[],[],[],[]); SysDataUpd=foldSysData(bus,sw,pv,pq,shunt,line,ind,zip,syn,exc,tg,agc,cac,cluster); if ~isempty(busTag)&&~isempty(find(busTag==0,1)) % Purge system with busTag [SysDataUpdFtr,busFtr,swFtr,pvFtr,pqFtr,shuntFtr,lineFtr,indFtr,zipFtr,synFtr,excFtr,tgFtr,... busMap,indMap,synMap,lineMap,invBusMap,invIndMap,invSynMap,invLineMap]=... filterSysData(busTag,SysDataUpd,busMap,indMap,synMap,lineMap,invBusMap,invIndMap,invSynMap,invLineMap); [bus,sw,pv,pq,shunt,line,ind,zip,syn,exc,tg,agc,cac,cluster]=unfoldSysData(SysDataUpd); SysParaSim=filterSysPara(SysParaSim,busFtr,swFtr,pvFtr,pqFtr,shuntFtr,lineFtr,indFtr,zipFtr,synFtr,excFtr,tgFtr); SysPara=filterSysPara(SysPara,busFtr,swFtr,pvFtr,pqFtr,shuntFtr,lineFtr,indFtr,zipFtr,synFtr,excFtr,tgFtr); x0=filterX(SysDataUpd,SysDataUpdFtr,x0,busFtr,swFtr,pvFtr,pqFtr,shuntFtr,lineFtr,indFtr,zipFtr,synFtr,excFtr,tgFtr); SysDataUpd=SysDataUpdFtr; end xNew=x0; if AEmethod==0 [stateNew,finalAlpha,alphaList,diff]=solveAlgebraicHem(SimData,SysDataUpd,SysParaSim,x0,xNew); else [stateNew,flag,diff,loop]=solveAlgebraicNR(SimData,SysDataUpd,SysParaSim,x0,xNew); if flag==0 finalAlpha=1; else finalAlpha=0; end alphaList=linspace(0,finalAlpha,loop); end zipExt=zeros(max(bus(:,1)),12); hasLoad=zeros(size(zipExt,1),1); zipExt(bus(:,1),1)=bus(:,1);zipExt(bus(:,1),2)=100;zipExt(bus(:,1),3)=bus(:,2);zipExt(bus(:,1),4)=60; zipExt(:,5)=accumarray(zip(:,1),zip(:,5),[size(zipExt,1),1]);hasLoad=hasLoad|(zipExt(:,5)~=0); zipExt(:,6)=accumarray(zip(:,1),zip(:,6),[size(zipExt,1),1]);hasLoad=hasLoad|(zipExt(:,6)~=0); zipExt(:,7)=accumarray(zip(:,1),zip(:,7),[size(zipExt,1),1]);hasLoad=hasLoad|(zipExt(:,7)~=0); zipExt(:,8)=accumarray(zip(:,1),zip(:,8),[size(zipExt,1),1]);hasLoad=hasLoad|(zipExt(:,8)~=0); zipExt(:,9)=accumarray(zip(:,1),zip(:,9),[size(zipExt,1),1]);hasLoad=hasLoad|(zipExt(:,9)~=0); zipExt(:,10)=accumarray(zip(:,1),zip(:,10),[size(zipExt,1),1]);hasLoad=hasLoad|(zipExt(:,10)~=0); zipExt(:,12)=1; zip=zipExt(hasLoad~=0,:); SysDataUpd=foldSysData(bus,sw,pv,pq,shunt,line,ind,zip,syn,exc,tg,agc,cac,cluster); SysParaUpd=SysPara; maps.busMap=busMap;maps.invBusMap=invBusMap; maps.indMap=indMap;maps.invIndMap=invIndMap; maps.synMap=synMap;maps.invSynMap=invSynMap; maps.lineMap=lineMap;maps.invLineMap=invLineMap; end