-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2473 from bcgov/272_alumina_production
272 alumina production
- Loading branch information
Showing
11 changed files
with
1,353 additions
and
1 deletion.
There are no files selected for viewing
80 changes: 80 additions & 0 deletions
80
bc_obps/reporting/json_schemas/2024/aluminum_production/activity.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
{ | ||
"title": "Alumina production", | ||
"type": "object", | ||
"properties": { | ||
"smelterTechType": { | ||
"title": "Smelter technology type", | ||
"type": "array", | ||
"items": { | ||
"type": "string", | ||
"enum": ["Prebake", "Soderberg"] | ||
} | ||
} | ||
}, | ||
"allOf": [ | ||
{ | ||
"if": { | ||
"properties": { | ||
"smelterTechType": { | ||
"contains": { | ||
"enum": ["Prebake"] | ||
} | ||
} | ||
} | ||
}, | ||
"then": { | ||
"properties": { | ||
"annualEmissions": { | ||
"type": "object", | ||
"properties": { | ||
"annualAnodeConsumptionForPrebakeCells": { | ||
"type": "number", | ||
"title": "Annual Anode Consumption for Prebake Cells" | ||
}, | ||
"annualCF4EmissionsFromAnodeEffectsForPrebakeCells": { | ||
"type": "number", | ||
"title": "Annual CF4 Emissions from Anode Effects for Prebake Cells" | ||
}, | ||
"annualC2F6EmissionsFromAnodeEffectsForPrebakeCells": { | ||
"type": "number", | ||
"title": "Annual C2F6 Emissions from Anode Effects for Prebake Cells" | ||
} | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
{ | ||
"if": { | ||
"properties": { | ||
"smelterTechType": { | ||
"contains": { | ||
"enum": ["Soderberg"] | ||
} | ||
} | ||
} | ||
}, | ||
"then": { | ||
"properties": { | ||
"annualEmissions": { | ||
"type": "object", | ||
"properties": { | ||
"annualAnodePasteConsumptionForSoderbergCells": { | ||
"type": "number", | ||
"title": "Annual Anode Paste Consumption for Soderberg Cells" | ||
}, | ||
"annualCF4EmissionsFromAnodeEffectsForSoderbergCells": { | ||
"type": "number", | ||
"title": "Annual CF4 Emissions from Anode Effects for Soderberg Cells" | ||
}, | ||
"annualC2F6EmissionsFromAnodeEffectsForSoderbergCells": { | ||
"type": "number", | ||
"title": "Annual C2F6 Emissions from Anode Effects for Soderberg Cells" | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
] | ||
} |
29 changes: 29 additions & 0 deletions
29
bc_obps/reporting/json_schemas/2024/aluminum_production/anode_consumption_acbgcc.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
{ | ||
"type": "object", | ||
"title": "Anode consumption", | ||
"properties": { | ||
"emissions": { | ||
"title": "Emission Data", | ||
"type": "array", | ||
"items": { | ||
"type": "object", | ||
"properties": { | ||
"gasType": { | ||
"title": "Gas type", | ||
"type": "string", | ||
"enum": [] | ||
}, | ||
"emission": { | ||
"title": "Emissions (tonnes)", | ||
"type": "number" | ||
}, | ||
"equivalentEmission": { | ||
"title": "Equivalent emissions (tC02e)", | ||
"type": "number", | ||
"readOnly": true | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} |
29 changes: 29 additions & 0 deletions
29
bc_obps/reporting/json_schemas/2024/aluminum_production/anode_effects.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
{ | ||
"type": "object", | ||
"title": "Anode effects", | ||
"properties": { | ||
"emissions": { | ||
"title": "Emission Data", | ||
"type": "array", | ||
"items": { | ||
"type": "object", | ||
"properties": { | ||
"gasType": { | ||
"title": "Gas type", | ||
"type": "string", | ||
"enum": [] | ||
}, | ||
"emission": { | ||
"title": "Emissions (tonnes)", | ||
"type": "number" | ||
}, | ||
"equivalentEmission": { | ||
"title": "Equivalent emissions (tC02e)", | ||
"type": "number", | ||
"readOnly": true | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} |
29 changes: 29 additions & 0 deletions
29
bc_obps/reporting/json_schemas/2024/aluminum_production/cover_gas_from_electrolysis.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
{ | ||
"type": "object", | ||
"title": "Cover gas from electrolysis", | ||
"properties": { | ||
"emissions": { | ||
"title": "Emission Data", | ||
"type": "array", | ||
"items": { | ||
"type": "object", | ||
"properties": { | ||
"gasType": { | ||
"title": "Gas type", | ||
"type": "string", | ||
"enum": [] | ||
}, | ||
"emission": { | ||
"title": "Emissions (tonnes)", | ||
"type": "number" | ||
}, | ||
"equivalentEmission": { | ||
"title": "Equivalent emissions (tC02e)", | ||
"type": "number", | ||
"readOnly": true | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.