-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathSolarRamp.DSS
53 lines (36 loc) · 1.84 KB
/
SolarRamp.DSS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
// Script for running Solar Ramp Function.
!*** first compile the IEEE 123 bus test case and solve it ***
Compile (IEEE123Master.dss)
RegControl.creg1a.maxtapchange=1 Delay=15 !Allow only one tap change per solution. This one moves first
RegControl.creg2a.maxtapchange=1 Delay=30 !Allow only one tap change per solution
RegControl.creg3a.maxtapchange=1 Delay=30 !Allow only one tap change per solution
RegControl.creg4a.maxtapchange=1 Delay=30 !Allow only one tap change per solution
RegControl.creg3c.maxtapchange=1 Delay=30 !Allow only one tap change per solution
RegControl.creg4b.maxtapchange=1 Delay=30 !Allow only one tap change per solution
RegControl.creg4c.maxtapchange=1 Delay=30 !Allow only one tap change per solution
Set MaxControlIter=30
! Solve executes the solution for the present solution mode, which is "snapshot".
New energymeter.M1 Line.sw1 1
solve
buscoords BusCoords.dat
plot profile
! 300-sec solar ramp screen
New Loadshape.SolarRamp npts=300 sinterval=1 mult=(file=solarramp.csv)
! define the generator
New Generator.2MWGen Bus1=450 kV=4.16 kW=2000 PF=1 Duty=SolarRamp
! Solve and let regulators settle out with generator on line
Solve
! Put Monitor in Line L99 to capture voltages and currents
New Monitor.Mon1 Element=Line.L99 Terminal=1
! Run 300-point dutycycle
Solve mode=dutycycle number=300 stepsize=1s
! Plot Monitor Results
Plot Monitor object=Mon1 Channels=(1,3,5) Bases=[2400, 2400, 2400]
!**** NOW ADD SOME STORAGE WITH A DISPATCH CURVE
! 300-sec storage ramp
New Loadshape.StorageRamp npts=300 Interval=(1 3600 /) mult=(file=StorageRamp.csv)
New storage.2MWStorage Bus1=450 kV=4.16 Duty=storageramp kwrated=2000 kWhRated= 500 dischargetrigger=.9
! Run 300-point dutycycle
Solve mode=dutycycle number=300 stepsize=1s
! Plot Monitor Results
Plot Monitor object=Mon1 Channels=(1,3,5) Bases=[2400, 2400, 2400]