taxonomy().concept(ferc:SchedulePumpedStorageGeneratingPlantStatisticsAbstract).label("http://ferc.gov/form/2020-01-01/roles/label/F1Schedule").text
HYDROELECTRIC GENERATING PLANT STATISTICS (Large Plants)
|
taxonomy().concept(ferc:SchedulePumpedStorageGeneratingPlantStatisticsAbstract).label("http://ferc.gov/form/2020-01-01/roles/label/F1Instructions").text
- Large plants and pumped storage plants of 10,000 Kw or more of installed capacity (name plate ratings).
- If any plant is leased, operating under a license from the Federal Energy Regulatory Commission, or operated as a joint facility, indicate such facts in a footnote. Give project number.
- If net peak demand for 60 minutes is not available, give the which is available, specifying period.
- If a group of employees attends more than one generating plant, report on line 8 the approximate average number of employees assignable to each plant.
- The items under Cost of Plant represent accounts or combinations of accounts prescribed by the Uniform System of Accounts. Production Expenses do not include Purchased Power System Control and Load Dispatching, and Other Expenses classified as ""Other Power Supply Expenses.""
- Pumping energy (Line 10) is that energy measured as input to the plant for pumping purposes.
- Include on Line 36 the cost of energy used in pumping into the storage reservoir. When this item cannot be accurately computed leave Lines 36, 37 and 38 blank and describe at the bottom of the schedule the company's principal sources of pumping power, the estimated amounts of energy from each station or other source that individually provides more than 10 percent of the total energy used for pumping, and production expenses per net MWH as reported herein for each source described. Group together stations and other resources which individually provide less than 10 percent of total pumping energy. If contracts are made with others to purchase power for pumping, give the supplier contract number, and date of contract.
|
Line No. |
Item
(a)
|
$plantSet = set({covered @ferc:LicensedProjectNumberAndPumpedStoragePlantNameAxis = *}.dimension(ferc:LicensedProjectNumberAndPumpedStoragePlantNameAxis));
$plants = if $plantSet.length == 0
list(none,none,none,none)
else
$plantSet
$headings = list(for $plant in $plants
list($plant,
first(list([covered @ferc:LicensedProjectNumber @ferc:LicensedProjectNumberAndPumpedStoragePlantNameAxis = $plant])),
first(list([covered @ferc:PlantName @ferc:LicensedProjectNumberAndPumpedStoragePlantNameAxis = $plant]))
)
);
for $row in $headings.sort
FERC Licensed Project No.
$row[2]
123344
Plant Name:
$row[3]
Test Plant 3
|
$data = navigate parent-child descendants from ferc:PumpedStorageGeneratingPlantStatisticsLineItems role "http://ferc.gov/form/2020-01-01/roles/Schedule/F1/SchedulePumpedStorageGeneratingPlantStatistics" returns list (target-name, preferred-label, result-order);
$plantSet = set({covered @ferc:LicensedProjectNumberAndPumpedStoragePlantNameAxis = *}.dimension(ferc:LicensedProjectNumberAndPumpedStoragePlantNameAxis)).sort;
$plants = if $plantSet.length == 0
list(none,none,none,none)
else
$plantSet
$data-labels = list(for $row in $data
if $row[3] > 3
$concept = taxonomy().concept($row[1]);
$row_num = (filter $concept.references("http://ferc.gov/form/2020-01-01/roles/reference/formLocation") where ($item.part-by-name(ferc-part:Schedule).part-value == "408 - Schedule - Pumped Storage Generating Plant Statistics (Large Plants)" and $item.part-by-name(ferc-part:ValueType).part-value.string == "Label")).to-list;
$current = list(for $plant in $plants
if exists([covered @concept = $row[1] @period = $currentDuration @ferc:LicensedProjectNumberAndPumpedStoragePlantNameAxis=$plant])
first(list([covered @concept = $row[1] @period = $currentDuration @ferc:LicensedProjectNumberAndPumpedStoragePlantNameAxis=$plant]))
else
none);
list($concept,
$concept.label($row[2].role.uri).text, //Title of Account
$current)
else
skip
);
for $data-label in $data-labels
|
|
for $plantID in $data-label[3]
$plantID
if $data-label[1].is-numeric "ixt4:num-dot-decimal" else none
if $data-label[1].is-abstract "gray-out" else ""
|