Skip to content

carbonplan/dac-costing

Repository files navigation

CarbonPlan monogram.

carbonplan / dac-costing

direct air capture + energy cost analysis

CI License: MIT

A python module for estimating the cost of building and operating direct air capture facilities. Try it on Binder: Binder

Documentation

This repository contains a simple Python module for analyzing various Direct Air Capture configurations in terms of their energy and fiscal requirements.

The dac_costing package

The dac_costing package includes two modules, model and widget.

The model module includes component classes that can be used to create various DAC scenarios.

model-diagram

Classes

  • BatterySection: class for representing battery requirements
  • EnergySection: class for representing the electric or thermal requirements of a system
  • DacSection: class for representing the DAC facility (without its energy requirements)
  • DacModel: class for representing the full/composite DAC system

Example usage

params['Base Energy Requierement [MW]'] = 38
ebattery = BatterySection(**params)
electric = EnergySection('Solar', battery=ebattery, **params)

params['Base Energy Requierement [MW]'] = 234
tbattery = BatterySection(**params)
thermal = EnergySection('Solar', battery=tbattery, **params)

params['Total Capex [$]'] = 936.01
dac = DacSection(**params)

dac_all = DacModel(electric, thermal, dac, **params)
dac_all.compute().series

Installing

pip install git+git://github.com/carbonplan/dac-costing@master

license

All the code in this repository is MIT-licensed, but we request that you please provide attribution if reusing any of our digital content (graphics, logo, reports, etc.). Some of the data featured here is sourced from content made available under a CC-BY-4.0 license. We include attribution for this content, and we please request that you also maintain that attribution if using this data.

about us

CarbonPlan is a nonprofit organization that uses data and science for climate action. We aim to improve the transparency and scientific integrity of climate solutions with open data and tools. Find out more at carbonplan.org or get in touch by opening an issue or sending us an email.

About

No description, website, or topics provided.

Resources

License

Code of conduct

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •