Code Monkey home page Code Monkey logo

mechwolf's Introduction


MechWolf

Python version Gitter chat DOI GPLv3 license CI status Netlify

MechWolf is a Python framework for automating continuous flow processes. It was developed as a collaboration between computer scientists, chemists, and complete novices to be used by anyone wanting to do better, faster, more reproducible flow-based science. Features include:

  • Natural language description, analysis, and visualization of continuous flow networks
  • Automated execution of protocols
  • Full user extensibility
  • Smart default settings, designed by scientists for scientists
  • Extensive checking to prevent potentially costly and dangerous errors before runtime
  • Natural language parsing of times and quantities
  • Thorough documentation and tutorials

Installation

It's as easy as:

$ conda install -c conda-forge mechwolf

Or, to get the latest (but not necessarily stable) development branch:

$ pip install git+https://github.com/MechWolf/MechWolf.git

For more information about installation, as well as to learn about other installation options, please look at the full installation instructions.

What can MechWolf do?

A lot. Let's say you're trying to automate the production of acetaminophen, a popular pain reliever and fever reducer. The reaction involves combining two chemicals, 4-aminophenol and acetic anhydride. The basic level of organization in MechWolf are individual components, such as the vessels and pumps.

First, we define our components and create an Apparatus object to hold them:

import mechwolf as mw

# define the vessels
aminophenol = mw.Vessel("15 mL 4-aminophenol")
acetic_anhydride = mw.Vessel("15 mL acetic anhydride")
acetaminophen = mw.Vessel("acetaminophen")

# define the pumps
pump_1 = mw.Pump()
pump_2 = mw.Pump()

# define the mixer
mixer = mw.TMixer()

# same tube specs for all tubes
tube = mw.Tube(length="1 m", ID="1/16 in", OD="2/16 in", material="PVC")

# create the Apparatus object
A = mw.Apparatus()

Next, we define the connectivity of the Apparatus with add(). add() expects three arguments, from_component, to_component, and tube (in that order). First, we connect aminophenol to pump_1 via tube:

A.add(from_component=aminophenol, to_component=pump_1, tube=tube)

Note that the keyword arguments are optional:

A.add(acetic_anhydride, pump_2, tube)

Since from_component is a list, both pump_1 and pump_2 will be connected to mixer.

A.add([pump_1, pump_2], mixer, tube)

Finally, connect mixer to the output vessel, acetaminophen:

A.add(mixer, acetaminophen, tube)

Then we define a Protocol and run it:

# create the Protocol object
P = mw.Protocol(A, name="acetaminophen synthesis")
P.add([pump_1, pump_2], duration="15 mins", rate="1 mL/min")

# execute the Protocol
P.execute()

That's it! You can do this and a whole lot more with MechWolf. To learn more, take a look at the docs.

Documentation

The documentation website is accessible here.

License

GPLv3 (summary).

Citation

Will go here.

mechwolf's People

Contributors

amijalis avatar benjamin-lee avatar dependabot[bot] avatar littleblackfish avatar nlpohl avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.