zoukankan      html  css  js  c++  java
  • 学习笔记之SimPy

    Documentation for SimPy — SimPy 3.0.11 documentation

    SimPy - Wikipedia

    • https://en.wikipedia.org/wiki/SimPy
    • SimPy is a process-based discrete-event simulation framework based on standard Python. Its event dispatcher is based on Python’s generators and can also be used for asynchronous networking or to implement multi-agent systems (with both, simulated and real communication).
    • Processes in SimPy are simple Python generator functions and are used to model active components like customers, vehicles or agents. SimPy also provides various types of shared resources to model limited capacity congestion points (like servers, checkout counters and tunnels). From version 3.1, it will also provide monitoring capabilities to aid in gathering statistics about resources and processes.
    • Simulations can be performed “as fast as possible”, in real time (wall clock time) or by manually stepping through the events.
    • Though it is theoretically possible to do continuous simulations with SimPy, it has no features to carry out that. However, SimPy is overkill for simulations with a fixed step size where your processes don’t interact with each other or with shared resources — use a simple while loop in this case.
    • The SimPy distribution contains tutorials, in-depth documentation, and a large number of examples.
    • SimPy is released as open source software under the MIT License. The first version was released in December 2002.
  • 相关阅读:
    第三章,DNA序列的进化演变
    哈迪-温伯格定律和近亲杂交
    mysql
    Dajngo admin使用
    Django之Form组件
    python三大器
    python函数
    python文件操作
    python字典和集合
    算法基础
  • 原文地址:https://www.cnblogs.com/pegasus923/p/12217308.html
Copyright © 2011-2022 走看看