A hybrid simulator for closed channel-based microfluidic devices
Project description
MMFT Hybrid Simulator
A Hybrid Simulator for Microfluidic Devices developed by the Chair for Design Automation at the Technical University of Munich as part of the Munich MicroFluidic Toolkit (MMFT). This simulator exploits the Modified Nodal Analysis (which is a simulation method on a high level of abstraction) to accelerate CFD simulations (using the LBM as implemented in the OpenLB library) of microfluidic devices.
For more information about our work on Microfluidics, please visit https://www.cda.cit.tum.de/research/microfluidics/.
If you have any questions, feel free to contact us via microfluidics.cda@xcit.tum.de or by creating an issue on GitHub.
System Requirements
The implementation should be compatible with any current C++ compiler supporting C++17 and a minimum CMake version 3.21. The python package requires Python version 3.7 or newer. The package is currently tested for Linux distributions.
Usage
C++
To use this library, include the following code in your cmake file:
include(FetchContent)
FetchContent_Declare(
hybridsim
GIT_REPOSITORY https://github.com/cda-tum/mmft-hybrid-simulator.git
GIT_TAG master
)
FetchContent_MakeAvailable(hybridsim)
target_link_libraries(${TARGET} PRIVATE hybridsim)
and include the library API header in your project file:
#include <baseSimulator.h>
#include <baseSimulator.hh>
Python
Install the python package
pip install mmft.hybridsim
and import the hybrid simulator in your code
from mmft import hybridsim
Example
To use the hybrid simulator, the network must be defined in a Network.JSON file.
A network is defined as a set of Nodes
, Channels
and CFD Modules
.
A Node
contains the x and y position on a Cartesian coordinate system, where the origin is the bottom-left corner of the microfluidic device:
{
"iD": 1,
"x": 2e-3,
"y": 1e-3
}
A Channel
connects two nodes (nA and nB) and has a width and a height:
{
"iD": 1,
"nA": 1,
"nB": 2,
"width": 1e-4,
"height": 1e-4
}
A CFD Module
is defined with type "LBM"
and contains paramaters for the LBM solver instance and information on the geometry of the CFD instance:
{
"iD": 0,
"Type":"LBM",
"name": "Test1-cross-0",
"stlFile": "/path/to/cross.stl",
"charPhysLength": 1e-4,
"charPhysVelocity": 1e-2,
"alpha": 0.1,
"resolution": 20,
"epsilon": 0.5,
"posX": 3.75e-3,
"posY": 0.75e-3,
"sizeX": 5e-4,
"sizeY": 5e-4,
"Openings":
[
{
"nodeId": 4,
"normalX": 1.0,
"normalY": 0.0,
"width": 1e-4
},
{
"nodeId": 8,
"normalX": 0.0,
"normalY": -1.0,
"width": 1e-4
},
{
"nodeId": 9,
"normalX": 0.0,
"normalY": 1.0,
"width": 1e-4
},
{
"nodeId": 10,
"normalX": -1.0,
"normalY": 0.0,
"width": 1e-4
}
]
}
Most importantly, the geometry of the CFD Module
is described by a .STL file. The in-/outflow boundaries of the CFD Module
are described by the Openings
. Each opening is coupled to a single Node
(located in the middle of the opening), has a normal direction and a width.
Examples of networks can be found in the examples
folder.
C++
The simulation case is defined in main.cpp
. An example of a simulation case in c++ is given here:
#include <iostream>
#include <baseSimulator.h>
#include <baseSimulator.hh>
using T = double;
int main(int argc, char const* argv []) {
// New simulation object
std::cout << "[Main] Create simulation object..." << std::endl;
sim::Simulation<T> simulation = sim::Simulation<T>();
// Load and set the network from a JSON file
std::cout << "[Main] Load the JSON network..." << std::endl;
std::string file = "/path/to/Network.JSON";
arch::Network<T>* network = new arch::Network<T>(file);
simulation.setNetwork(network);
// Add Pressure and/or Flow Rate Pumps
std::cout << "[Main] Add pressure and Flow rate pumps..." << std::endl;
network->setPressurePump(0, T(1e3));
// Define and set the continuous phase fluid
std::cout << "[Main] Set the continuous phase fluid..." << std::endl;
sim::Fluid<T>* fluid = new sim::Fluid<T>(0, T(1000), T(1e-3));
fluid->setName("Water");
simulation.setContinuousPhase(fluid);
// Define and set the resistance model
std::cout << "[Main] Set the resistance model..." << std::endl;
sim::ResistanceModel1D<T>* resistanceModel = new sim::ResistanceModel1D<T>(fluid->getViscosity());
simulation.setResistanceModel(resistanceModel);
// Perform simulation and store results
std::cout << "[Main] Simulation..." << std::endl;
simulation.simulate();
// Print the results
std::cout << "[Main] Results..." << std::endl;
simulation.printResults();
return 0;
}
Python
The simulation case can be defined once the mmft.hybridsim
package is installed. An example for a simulation case in python is given here:
from mmft import hybridsim
# New simulation object
simulation = hybridsim.Simulation()
# Load and set the network from a JSON file
network = hybridsim.Network("/path/to/Network.JSON")
simulation.setNetwork(network)
# Add Pressure and/or Flow Rate Pumps
network.setPressurePump(0, 1e3)
# Define and set the continuous phase fluid
fluid = hybridsim.Fluid(0, 1000, 1e-3)
simulation.setContinuousPhase(fluid)
# Define and set the resistance model
resistanceModel = hybridsim.ResistanceModel(fluid.getViscosity())
simulation.setResistanceModel(resistanceModel)
# Perform simulation and store results
simulation.simulate()
# Print the results
simulation.print()
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Hashes for mmft.hybridsim-0.1.1rc2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9b1f026d850d4b43ac581b0c95e6d398c9b51348031e607659a69d8d1107dcdf |
|
MD5 | 1887cd6efa46114b534a48498cfd6859 |
|
BLAKE2b-256 | 5444af687a66d327a790e4447b03405ba083d805e59e93f3af7c8af3b6ca0de0 |
Hashes for mmft.hybridsim-0.1.1rc2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 94870831d1fda9ec2fa0c87dba5186c4612bb8bbd1b1ba02c582583801201213 |
|
MD5 | e7c1ea3d603b35c5d8e506364fb208f0 |
|
BLAKE2b-256 | aafc6185f9f7f10dd96a5cc79a1e28517c6d9e2c683606d11d30dcd96e2c90c3 |
Hashes for mmft.hybridsim-0.1.1rc2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 168e42c22953b68a992b304513c31f4b718304584c3e03bf99dbaf9da93abdd2 |
|
MD5 | 83c8d5215de77c5b367861ddd9448f56 |
|
BLAKE2b-256 | 5f3c761adfddfea9af9900d65f1efa49cdc08c0b7de712f29d7dbaa9113dfe25 |
Hashes for mmft.hybridsim-0.1.1rc2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | d3e353e0de7e983a01c9cc3c5d6059194f00c48430a2f5c66bbcfa2db2ea6786 |
|
MD5 | 16b18fd5afe126cdbf636d47b29d88b9 |
|
BLAKE2b-256 | bc671b0affa47f616f3cae965adf03abdc51537622c9fe6c318da25918b24923 |