Skip to content

Community Case Studies

Jun Wang edited this page Feb 21, 2022 · 9 revisions

A Community Case

A community case (scenario) is defined by a summary.json, all the data are in geojson format.

summary.json

{
	"title": "Southeast US 2012",
	"dataset-id": "Southeast_US_2012",
	"dataset-dirname": "SoutheastUS",
	"dataset-candidate-network": "Scenarios/scenario1/Network/CandidateNetwork/CandidateNetwork.txt",
	"summary": "A case study from Southeast US",
	"longsummary":"<p>Summary: <strong>Southern Company</strong><br><ul><li>Ten year business plan and CO2 emissions strategy.</li><li>20 coal-fired plants, 156 MtCO2/yr emissions.</li><li>65 individual boilers→ boiler level accuracy.</li><li>CAPTURE COSTS: $46-102/tCO2 (plant) & $41-166/tCO2 (boiler).</li><li>STORAGE: 3.4 GtCO2 in 7 sinks, 113 MtCO2/yr over 30 years.</li><li>STORAGE COSTS: $3.78-8.60/tCO2.</li></ul></p>",
	"publication": "https://pubs.rsc.org/en/content/articlelanding/2012/ee/c2ee03227a#!divAbstract",
	"editor":{
		"sources":"input_source.geojson",
		"sinks":"input_sink.geojson"
	},
	"inputs": {
		"sources": "result_source.geojson",
		"sinks": "result_sink.geojson",
		"candidatenetwork": "SoutheastUS_Network.geojson"
	},
	"results": [{
			"case": "110MTye",
			"description": "110 MT per year",
			"network": "result_network_110MTyr.geojson"
		},
		{
			"case": "50MTye",
			"description": "50 MT per year",
			"network": "result_network_50MTyr.geojson"
		},
		{
			"case": "5MTye",
			"description": "5 MT per year",
			"network": "result_network_5MTyr.geojson"
		}
    ]
}

simccs-maptool/simccs_maptool/static/Scenarios/SoutheastUS

.
├── SoutheastUS_Network.geojson
├── input_sink.geojson
├── input_source.geojson
├── result_network_110MTyr.geojson
├── result_network_50MTyr.geojson
├── result_network_5MTyr.geojson
├── result_sink.geojson
├── result_source.geojson
└── summary.json

A community case

Steps to add a community case

  1. Generate required input/output and results in geojson format
  2. Create a summary file, fill the necessary fields, such as "title","dataset-id", "dataset-dirname"
  3. Add the new case to index.html
Clone this wiki locally