Benchling Integration
Benchling is a cloud platform for life sciences R&D. Access registry entities (DNA, proteins), inventory, electronic lab notebooks, and work…
Maintainer K-Dense Inc. · Last updated April 1, 2026
SimPy is a process-based discrete-event simulation framework based on standard Python. Use SimPy to model systems where entities (customers, vehicles, packets, etc.) interact with each other and compete for shared resources (servers, machines, bandwidth, etc.) over time. **Core capabilities:** - Process modeling using Python generator functions - Shared resource management (servers, containers, stores) - Event-drive….
Original source
https://github.com/K-Dense-AI/claude-scientific-skills/tree/main/scientific-skills/simpy
Skill Snapshot
Source Doc
Use the SimPy skill when:
Not suitable for:
import simpy
def process(env, name):
"""A simple process that waits and prints."""
print(f'{name} starting at {env.now}')
yield env.timeout(5)
print(f'{name} finishing at {env.now}')
## Start processes
env.process(process(env, 'Process 1'))
env.process(process(env, 'Process 2'))
Related skills
Benchling is a cloud platform for life sciences R&D. Access registry entities (DNA, proteins), inventory, electronic lab notebooks, and work…
Spatial analysis of cell neighborhoods and interactions in IMC data. Covers neighbor graphs, spatial statistics, and interaction testing. Us…
GeoPandas extends pandas to enable spatial operations on geometric types. It combines the capabilities of pandas and shapely for geospatial…
Hypogenic provides automated hypothesis generation and testing using large language models to accelerate scientific discovery. The framework…