Skip to content

Commit 497683b

Browse files
committed
remove comments
1 parent ddfd79b commit 497683b

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

test/test_data/results_data.jl

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -43,26 +43,26 @@ function add_re!(sys)
4343
name = "test_batt",
4444
available = true,
4545
bus = get_component(Bus, sys, "bus4"),
46-
prime_mover_type = PrimeMovers.BA, #::PrimeMovers: Prime mover technology according to EIA 923. Options are listed here
47-
storage_technology_type = StorageTech.OTHER_CHEM, #StorageTech.OTHER_CHEM =::StorageTech: Storage Technology Complementary to EIA 923. Options are listed here
48-
storage_capacity = 2.0, #::Float64: Maximum storage capacity (can be in units of, e.g., MWh for batteries or liters for hydrogen), validation range: (0, nothing)
49-
storage_level_limits = (min = 0.0, max = 1.0), #::MinMax: Minimum and maximum allowable storage levels [0, 1], which can be used to model derates or other restrictions, such as state-of-charge restrictions on battery cycling, validation range: (0, 1)
50-
initial_storage_capacity_level = 0.7, #::Float64: Initial storage capacity level as a ratio [0, 1.0] of storage_capacity, validation range: (0, 1)
51-
rating = 1.0, #::Float64: Maximum output power rating of the unit (MVA)************
52-
active_power = 0.1, #Initial active power set point of the unit in MW. For power flow, this is the steady state operating point of the system. For production cost modeling, this may or may not be used as the initial starting point for the solver, depending on the solver used
53-
input_active_power_limits = (min = 0.0, max = 1.0), #::MinMax: Minimum and maximum limits on the input active power (i.e., charging), validation range: (0, nothing)
54-
output_active_power_limits = (min = 0.0, max = 1.0), #::MinMax: Minimum and maximum limits on the output active power (i.e., discharging), validation range: (0, nothing)
55-
efficiency = (in = 0.9, out = 0.9), #(CSolar)-efficiency::NamedTuple{(:in, :out), Tuple{Float64, Float64}}: Average efficiency [0, 1] in (charging/filling) and out (discharging/consuming) of the storage system, validation range: (0, 1)
46+
prime_mover_type = PrimeMovers.BA,
47+
storage_technology_type = StorageTech.OTHER_CHEM,
48+
storage_capacity = 2.0,
49+
storage_level_limits = (min = 0.0, max = 1.0),
50+
initial_storage_capacity_level = 0.7,
51+
rating = 1.0,
52+
active_power = 0.1,
53+
input_active_power_limits = (min = 0.0, max = 1.0),
54+
output_active_power_limits = (min = 0.0, max = 1.0),
55+
efficiency = (in = 0.9, out = 0.9),
5656
reactive_power = 0.0,
57-
reactive_power_limits = (min = -1.0, max = 1.0), #::Union{Nothing, MinMax}: Minimum and maximum reactive power limits. Set to Nothing if not applicable
58-
base_power = 15.0, #::Float64: Base power of the unit (MVA) for per unitization, validation range: (0, nothing)
57+
reactive_power_limits = (min = -1.0, max = 1.0),
58+
base_power = 15.0,
5959
operation_cost = StorageCost(;
6060
charge_variable_cost = CostCurve(LinearCurve(0.1)),
6161
discharge_variable_cost = CostCurve(LinearCurve(0.2)),
6262
),
6363
conversion_factor = 1,
64-
storage_target = 0.0, #::Float64: (default: 0.0) Storage target at the end of simulation as ratio of storage capacity
65-
cycle_limits = 5000, #::Int: (default: 1e4) Storage Maximum number of cycles per year
64+
storage_target = 0.0,
65+
cycle_limits = 5000,
6666
)
6767
add_component!(sys, batt)
6868
end

0 commit comments

Comments
 (0)