Skip to content

Commit

Permalink
Update main.glm
Browse files Browse the repository at this point in the history
  • Loading branch information
dchassin committed Jun 25, 2023
1 parent b42f32d commit dc954b7
Showing 1 changed file with 58 additions and 0 deletions.
58 changes: 58 additions & 0 deletions main.glm
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,62 @@ object diesel_dg
torque 680 N;
}

// Task 2 - Add 4kW 100 sf solar panel on load 10 (tilt 90, efficiency 0.135, south facing, fixed)
#ifmissing "CA-Chino_Airport.glm"
#weather get CA-Chino_Airport
#endif
#input "CA-Chino_Airport.tmy3"
clock
{
timezone America/Los_Angeles;
starttime "2020-07-01 12:00:00 PDT";
stoptime "2020-07-01 12:00:00 PDT";
}
object meter
{
name meter_10;
parent load_10;
phases AN;
nominal_voltage 2401.7711;
}
object inverter
{
name inv_10;
phases AN;
parent meter_10;
rated_power 25000;
}
object solar
{
name solar_10;
parent inv_10;
rated_power 4.0 kVA;
area 29.6296 m^2;
tilt_angle 90.0;
efficiency 0.135;
orientation_azimuth 180; //equator-facing (South)
orientation FIXED_AXIS;
SOLAR_TILT_MODEL SOLPOS;
SOLAR_POWER_MODEL FLATPLATE;
}

// Task 3 - Add 25 MW GW turbine on load 28
object meter
{
name meter_28;
parent load_28;
phases ABCN;
nominal_voltage 2401.7711;
}
object windturb_dg
{
parent meter_28;
phases ABCN;
Gen_status ONLINE;
Gen_type SYNCHRONOUS;
Gen_mode CONSTANTP;
Turbine_Model GE_25MW;
}


#output "IEEE-123-voltage-profile.png" -t profile -l 10

0 comments on commit dc954b7

Please sign in to comment.