File tree Expand file tree Collapse file tree 1 file changed +58
-0
lines changed Expand file tree Collapse file tree 1 file changed +58
-0
lines changed Original file line number Diff line number Diff line change @@ -18,4 +18,62 @@ object diesel_dg
18
18
torque 680 N;
19
19
}
20
20
21
+ // Task 2 - Add 4kW 100 sf solar panel on load 10 (tilt 90, efficiency 0.135, south facing, fixed)
22
+ #ifmissing "CA-Chino_Airport.glm"
23
+ #weather get CA-Chino_Airport
24
+ #endif
25
+ #input "CA-Chino_Airport.tmy3"
26
+ clock
27
+ {
28
+ timezone America/Los_Angeles;
29
+ starttime "2020-07-01 12:00:00 PDT";
30
+ stoptime "2020-07-01 12:00:00 PDT";
31
+ }
32
+ object meter
33
+ {
34
+ name meter_10;
35
+ parent load_10;
36
+ phases AN;
37
+ nominal_voltage 2401.7711;
38
+ }
39
+ object inverter
40
+ {
41
+ name inv_10;
42
+ phases AN;
43
+ parent meter_10;
44
+ rated_power 25000;
45
+ }
46
+ object solar
47
+ {
48
+ name solar_10;
49
+ parent inv_10;
50
+ rated_power 4.0 kVA;
51
+ area 29.6296 m^2;
52
+ tilt_angle 90.0;
53
+ efficiency 0.135;
54
+ orientation_azimuth 180; //equator-facing (South)
55
+ orientation FIXED_AXIS;
56
+ SOLAR_TILT_MODEL SOLPOS;
57
+ SOLAR_POWER_MODEL FLATPLATE;
58
+ }
59
+
60
+ // Task 3 - Add 25 MW GW turbine on load 28
61
+ object meter
62
+ {
63
+ name meter_28;
64
+ parent load_28;
65
+ phases ABCN;
66
+ nominal_voltage 2401.7711;
67
+ }
68
+ object windturb_dg
69
+ {
70
+ parent meter_28;
71
+ phases ABCN;
72
+ Gen_status ONLINE;
73
+ Gen_type SYNCHRONOUS;
74
+ Gen_mode CONSTANTP;
75
+ Turbine_Model GE_25MW;
76
+ }
77
+
78
+
21
79
#output "IEEE-123-voltage-profile.png" -t profile -l 10
You can’t perform that action at this time.
0 commit comments