» «

可爱的 Python:SimPy 简化了复杂模型

来源: LUPA开源社区
发布时间: 2007-06-21 13:48 版权申明

字体:

文章来源于http://www.lupaworld.com
  人们常常难以理解或预知实际系统的随机行为。有时可能精确论证系统的统计特性(诸如一般的、最差和最好的性能特性)。但在其它时候,只有实际运行(或模拟)系统时,具体设计的缺陷才会显现出来。本文中,David 讨论了 SimPy,它是一种 Python 包,允许您非常方便地创建离散事件系统的模型。
  
  在我遇到 SimPy 包的其中一位创始人 Klaus Miller 时,从他那里知道了这个包。Miller 博士阅读过几篇提出使用 Python 2.2+ 生成器实现半协同例程和“轻便”线程的技术的可爱的 Python 专栏文章。特别是(使我很高兴的是),他发现在用 Python 实现 Simula-67 样式模拟时,这些技术很有用。
  
  结果表明 Tony Vignaux 和 Chang Chui 以前曾创建了另一个 Python 库,它在概念上更接近于 Simscript,而且该库使用了标准线程技术,而不是我的半协同例程技术。该小组在一起研究时,认为基于生成器的样式更有效得多,并且最近在 SourceForge 上发起了使用 GPL 的项目,称为 SimPy(请参阅参考资料,获得 SimPy 主页的链接),目前处于 beta 测试版状态。Vignaux 教授希望他在惠灵顿维多利亚大学(University of Victoria)的将来大学教学中使用统一的 SimPy 包;我相信该库也非常适合应用到各类实用问题中。
  
  我承认在近期的通信交流和调查研究之前,我对编程领域的模拟方面没有任何基础知识。我猜想本专栏文章的大部分读者也和我一样,对这方面的知识知之甚少。尽管有人会认为这种样式编程的方式有些新奇,但在理解资源有限的实际系统的行为时,模拟是很有用的。不管您感兴趣的是有限带宽网络、汽车交通行为、市场和商业性优化、生物/进化的交互作用还是其它“随机”系统,SimPy 对这样的建模都提供了简单的 Python 工具。
  
  随机的定义
  与“连接”相类似,它是那些最适合形容其作业的词汇之一 — 再也找不到更适合的了:
  随机(stochastic),源自希腊语 stokhastikos(形容词)
  1)推测的、与推测相关的或者具有推测特点的;好推测的。
  2)在统计学上:涉及或包含一个随机变量或多个随机变量,或涉及偶然性或概率。
  
  在本专栏文章中,我将一直使用食品杂货店内具有多条通道的付款区域这个相当简单的示例。通过使用所演示的模拟,我们可以根据对扫描器技术、购物者习惯、人员配备需求等进行的各种更改所产生的经济上和等待时间上的含义提出问题。这个建模的优点是在您对所做的更改产生的含义有清晰的想法时,它让您能提前制定策略。很明显,大多数读者不会专门经营一家食品杂货店,但这些技术可以广泛地应用于各类系统中。
  
  模拟的概念
  SimPy 库只提供了三个抽象/父类,并且它们对应于模拟的三个基本概念。有许多其它常规函数和常量用于控制模拟的运行,但重要的概念都与这些类结合在一起。
  
  模拟中的核心概念是进程。一个进程只是一个对象,它完成某些任务,随后在它准备完成下一个任务之前有时会等待一会儿。在 SimPy 中,您还可以“钝化”进程,这意味着在一个进程完成一个任务后,只有当其它进程要求该进程完成其它任务时,它才会去做。把进程当作尝试完成一个目标,常常是很有用的。在编写进程时,通常把它编写成可以在其中执行多个操作的循环。在每个操作之间,可以插入 Python“yield”语句,它让模拟调度程序在返回控制之前执行每个等待进程的操作。
  
  进程执行的许多操作取决于资源的使用。资源只是在可用性方面受到限制。在生物学模型中,资源可能是食物供应;在网络模型中,资源可以是路由器或有限带宽通道;在我们的市场模拟中,资源是付款通道。资源执行的唯一任务是在任何给定的时间内将它的使用限于一个特定的进程上。在 SimPy 编程模型下,进程单独决定它要保留资源的时间有多长,资源本身是被动的。在实际系统中,SimPy 模型可能适合概念性方案,也可能不适合;很容易想象到资源在本质上会限制其利用率(例如,如果服务器计算机在必需的时间帧内没有获得满意的响应,则它会中断连接)。但作为编程问题,进程或资源是否是“主动”方就不是特别重要(只要确保您理解了您的意图)。
  
  最后一个 SimPy 类是监控程序。实际上监控程序不是很重要,只不过它很方便。监控程序所做的全部任务就是记录向它报告的事件,并保存有关这些事件的统计信息(平均值、计数、方差等)。该库提供的 Monitor 类对记录模拟措施是个有用的工具,但您也可以通过您想使用的其它任何技术来记录事件。事实上,我的示例使 Monitor 子类化,以提供某些(稍微)增强的能力。
  
  设置商店:对模拟编程
  在我所撰写的大部分文章中,我都会马上给出样本应用程序,但在本例中,我认为带您经历食品杂货店应用程序的每个步骤会更有用。如果您愿意的话,可以把每个部分剪贴在一起;SimPy 创造者们将在将来的发行版中包含我的示例。
  
  SimPy 模拟中的第一步是几个常规的导入(import)语句:
  
  清单 1. 导入 SimPy 库 #!/usr/bin/env python
  from __future__ import generators
  from SimPy import Simulation
  from SimPy.Simulation import hold, request, release, now
  from SimPy.Monitor import Monitor
  import random
  from math import sqrt
  
  有些 SimPy 附带的示例使用 import * 样式,但我更喜欢使我填充的名称空间更清晰。对于 Python 2.2(SimPy 所需的最低版本),将需要如指出的那样,导入生成器特性。对于 Python 2.3 以后的版本,不需要这样做。
  
  对于我的应用程序,我定义了几个运行时常量,它们描述了在特定的模拟运行期间我感兴趣的几个方案。在我更改方案时,我必须在主脚本内编辑这些常量。要是这个应用程序的内容更充实,那么我就可能用命令行选项、环境变量或配置文件来配置这些参数。但就目前而言,这个样式已经足够了:
  
  清单 2. 配置模拟参数 AISLES = 5     # Number of open aisles
  ITEMTIME = 0.1   # Time to ring up one item
  AVGITEMS = 20   # Average number of items purchased
  CLOSING = 60*12  # Minutes from store open to store close
  AVGCUST = 1500   # Average number of daily customers
  RUNS = 10     # Number of times to run the simulation
  
  我们的模拟需要完成的主要任务是定义一个或多个进程。对于模拟食品杂货店,我们感兴趣的进程是在通道处付款的顾客。
  
  清单 3. 定义顾客的操作 class Customer(Simulation.Process):
  def __init__(self):
  Simulation.Process.__init__(self)
  # Randomly pick how many items this customer is buying
  self.items = 1 + int(random.expovariate(1.0/AVGITEMS))
  def checkout(self):
  start = now()      # Customer decides to check out
  yield request, self, checkout_aisle
  at_checkout = now()   # Customer gets to front of line
  waittime.tally(at_checkout-start)
  yield hold, self, self.items*ITEMTIME
  leaving = now()     # Customer completes purchase
  checkouttime.tally(leaving-at_checkout)
  yield release, self, checkout_aisle
  
  每位顾客已经决定采购一定数量的商品。(我们的模拟不涉及从食品杂货店通道上选择商品;顾客只是推着他们的手推车到达付款处。)我不能确定这里的指数变量分布确实是一个精确的模型。在其低端处我感觉是对的,但我感到对实际购物者究竟采购了多少商品的最高极限有点失实。在任何情况下,您可以看到如果可以使用更好的模型信息,则调整我们的模拟是多么简单。
  
  顾客采取的操作是我们所关注的。顾客的“执行方法”就是 .checkout()。这个进程方法通常被命名为 .run() 或 .execute(),但在我的示例中,.checkout() 似乎是最可描述的。您可以对它起任何您希望的名称。Customer 对象所采取的实际操作仅仅是检查几个点上的模拟时间,并将持续时间记录到 waittime 和 checkouttime 监控程序中。但在这些操作之间是至关重要的 yield 语句。在第一种情况中,顾客请求资源(付款通道)。只有当顾客获得了所需的资源之后,他们才能做其它操作。一旦来到付款通道,顾客实际上就在付款了 — 所花时间与所购商品的数量成比例。最后,经过付款处之后,顾客就释放资源,以便其他顾客可以使用它。
  
  上述代码定义了 Customer 类的操作,但我们需要在运行模拟之前,创建一些实际的顾客对象。我们可以为一天中将要购物的每位顾客生成顾客对象,并为每位顾客分配相应的付款时间。但更简洁的方法是“在每位顾客到商店时”,让工厂对象生成所需的顾客对象。实际上模拟并不会同时对一天内将要购物的所有顾客感兴趣,而是只对那些要同时争用付款通道的顾客感兴趣。注意:Customer_Factory 类本身是模拟的一部分 — 它是一个进程。尽管对于这个客户工厂,您可能联想到人造的机器工人(la Fritz Lang 的 Metropolis),但还是应该只把它看作编程的便利工具;它并不直接对应已建模域中的任何事物。
  
  清单 4. 生成顾客流 class Customer_Factory(Simulation.Process):
  def run(self):
  while 1:
  c = Customer()
  Simulation.activate(c, c.checkout())
  arrival = random.expovariate(float(AVGCUST)/CLOSING)
  yield hold, self, arrival
  
  正如我前面提到的,我想收集一些当前 SimPy Monitor 类没有解决的统计信息。也就是,我并不仅仅对平均付款时间感兴趣,而且还对给定方案中最
文章来源于http://www.lupaworld.com

声明:LUPA开源社区刊登此文只为传递信息,并不表示赞同或者反对。

查看全部评论(4) 最新评论

  • 删除 Guest (, 评 0 分) 支持 反对

    离心泵 http://www.zrpv.net/f.asp?ie=1 磁力泵 http://www.zrpv.net/f.asp?ie=2
    计量泵 http://www.zrpv.net/f.asp?ie=3 螺杆泵 http://www.zrpv.net/f.asp?ie=4
    自吸泵 http://www.zrpv.net/f.asp?ie=5 旋涡泵 http://www.zrpv.net/f.asp?ie=6
    排污泵 http://www.zrpv.net/f.asp?ie=7 消防泵 http://www.zrpv.net/f.asp?ie=8
    多级泵 http://www.zrpv.net/f.asp?ie=9 液下泵 http://www.zrpv.net/f.asp?ie=10
    潜水泵 http://www.zrpv.net/f.asp?ie=11 真空泵 http://www.zrpv.net/f.asp?ie=12
    泥浆泵 http://www.zrpv.net/f.asp?ie=13 循环泵 http://www.zrpv.net/f.asp?ie=14
    油泵 http://www.zrpv.net/f.asp?ie=15 水泵 http://www.zrpv.net/f.asp?ie=16
    化工泵 http://www.zrpv.net/f.asp?ie=17 隔膜泵 http://www.zrpv.net/f.asp?ie=18
    疏水阀 http://www.zrpv.net/f.asp?ie=21 安全阀 http://www.zrpv.net/f.asp?ie=20
    减压阀 http://www.zrpv.net/f.asp?ie=19 水泵 http://www.zrpv.net
    泵阀论坛 http://www.001pv.com 蝶阀 http://www.zrpv.net/f.asp?ie=22
    球阀 http://www.zrpv.net/f.asp?ie=23 阀门 http://www.zrpv.net
    闸阀 http://www.zrpv.net/f.asp?ie=24 截止阀 http://www.zrpv.net/f.asp?ie=25


    蝶阀 http://www.shsspv.cn/f.asp?ie=31 截止阀 http://www.shsspv.cn/f.asp?ie=32
    水泵 http://www.shsspv.cn 阀门  http://www.zrpv.net
    消防泵 http://www.shsspv.cn/f.asp?ie=34 旋涡泵 http://www.shsspv.cn/f.asp?ie=35
    水泵厂家 http://www.shsspv.cn/f.asp?ie=15 离心泵 http://www.shsspv.cn/f.asp?ie=16
    排污泵 http://www.shsspv.cn/f.asp?ie=17 多级泵 http://www.shsspv.cn/f.asp?ie=18
    化工泵 http://www.shsspv.cn/f.asp?ie=19 油泵 http://www.shsspv.cn/f.asp?ie=21
    齿轮油泵 http://www.shsspv.cn/f.asp?ie=33 磁力泵 http://www.shsspv.cn/f.asp?ie=22
    潜水泵 http://www.shsspv.cn/f.asp?ie=23 液下泵 http://www.shsspv.cn/f.asp?ie=24
    化工流程泵 http://www.shsspv.cn/f.asp?ie=25 隔膜泵 http://www.shsspv.cn/f.asp?ie=26
    自吸泵 http://www.shsspv.cn/f.asp?ie=27 螺杆泵 http://www.shsspv.cn/f.asp?ie=28
    计量泵 http://www.shsspv.cn/f.asp?ie=29 真空泵 http://www.shsspv.cn/f.asp?ie=30
    泵阀论坛 http://www.001pv.com 水泵技术论坛 http://www.shsspv.cn/pjblog2/default.asp
    离心泵 http://www.ss-bf.cn 排污泵 http://www.ss-bf.cn/paiwub.html
    水泵 http://www.zrpv.net 深井泵 http://www.shsspv.cn/f.asp?ie=36

  • 删除 Guest (, 评 0 分) 支持 反对

    <A title=申升泵阀制造 href="http://www.ss-bf.cn/">上海申升泵阀制造有限公司</A>专业生产<SPAN class=STYLE2><A href="http://www.ss-bf.cn/lixinbeng.html"> 离心泵</A> <A href="http://www.ss-bf.cn/sb.html">水泵 </A><A href="http://www.ss-bf.cn/gmb.html">隔膜泵</A> <A href="http://www.ss-bf.cn/paiwub.html">排污泵</A> <A href="http://www.ss-bf.cn/zyb.html">自吸泵</A> <A href="http://www.ss-bf.cn/duojib.html">多级泵</A><A title=容积泵系列 href="http://www.ss-bf.cn/rjba.html"> 容积泵</A> <A title=油泵系列 href="http://www.ss-bf.cn/yb.html">油泵</A> <A title=磁力泵系列 href="http://www.ss-bf.cn/clb.html">磁力泵</A> <A title=消防泵系列 href="http://www.ss-bf.cn/xiaofangbeng.html">消防泵</A> <A title=氟塑料泵系列 href="http://www.ss-bf.cn/fusuliaob.html">氟塑料泵</A> <A title=化工泵系列 href="http://www.ss-bf.cn/huagongb.html">化工泵</A> <A title=螺杆泵系列 href="http://www.ss-bf.cn/lgb.html">螺杆泵</A> <A title=潜水泵系列 href="http://www.ss-bf.cn/qianshuib.html">潜水泵</A> <A title=液下泵系列 href="http://www.ss-bf.cn/yexiab.htm">液下泵</A></SPAN>等产品,欢迎来电咨询,我们会为您提供满意的服务.,公司网址:<SPAN class=STYLE2><A title=离心泵 href="http://www.ss-bf.cn/">www.ss-bf.cn</A> <A title=水泵 href="http://www.sspv.cn/">www.shsspv.cn</A> </SPAN> <a href="http://www.zrpv.net">www.zrpv.net
    </a>
    <P><strong><A href="http://www.shsspv.cn">水泵 </A></strong></P>
    <P><STRONG><A href="http://www.shsspv.cn">阀门 </A></STRONG></P>
    <P><STRONG><A href="http://www.shsspv.cn/f.asp?ie=31">蝶阀 </A></STRONG></P>
    <P><STRONG><A href="http://www.shsspv.cn/g.asp?ig=838">343H蜗轮式伸缩蝶 阀</A></STRONG></P>
    <P><STRONG><A href="http://www.shsspv.cn/g.asp?ig=837">SD341X通风蝶阀 </A></STRONG></P>
    <P><STRONG><A href="http://www.shsspv.cn/f.asp?ie=32">截止阀 </A></STRONG></P>
    <P><STRONG><A href="http://www.shsspv.cn/f.asp?ie=15">水泵厂家</A> </STRONG></P>
    <P><STRONG><A href="http://www.shsspv.cn/g.asp?ig=833">QD系列多级潜水电 泵</A></STRONG></P>
    <P><STRONG><A href="http://www.shsspv.cn/g.asp?ig=832">WQ型潜水式排污泵 </A></STRONG></P>
    <P><STRONG><A href="http://www.shsspv.cn/g.asp?ig=831">WQK/QG带切割装置 潜水排污泵</A></STRONG></P>
    <P><STRONG><A href="http://www.shsspv.cn/g.asp?ig=830">AS型潜水排污泵 </A></STRONG></P>
    <P><STRONG><A href="http://www.shsspv.cn/g.asp?ig=823">离心式水泵 </A></STRONG></P>
    <P><STRONG><A href="http://www.shsspv.cn/f.asp?ie=17">排污泵 </A></STRONG></P>
    <P><STRONG><A href="http://www.shsspv.cn/g.asp?ig=855">AS型潜水排污泵 </A></STRONG></P>
    <P><STRONG><A href="http://www.shsspv.cn/g.asp?ig=841">WQ型潜水式排污泵 </A></STRONG></P>
    <P><STRONG><A href="http://www.shsspv.cn/g.asp?ig=840">YW型液下式排污泵 </A></STRONG></P>
    <P><STRONG><A href="http://www.shsspv.cn/g.asp?ig=839">ZW型自吸无堵塞排 污泵</A></STRONG></P>
    <P><STRONG><A href="http://www.shsspv.cn/g.asp?ig=825">XZW型自吸式不堵 塞排污泵 </A></STRONG></P>
    <P><STRONG><A href="http://www.shsspv.cn/f.asp?ie=18">多级泵 </A></STRONG></P>
    <P><STRONG><A href="http://www.shsspv.cn/g.asp?ig=843">TSWA型卧式多级离 心泵</A></STRONG></P>
    <P><STRONG><A href="http://www.shsspv.cn/g.asp?ig=842">DL-DLR型立式多级 离心泵 </A></STRONG></P>
    <P><STRONG><A href="http://www.shsspv.cn/g.asp?ig=826">GDL型立式多级管 道泵</A> </STRONG></P>
    <P><STRONG><A href="http://www.shsspv.cn/f.asp?ie=19">化工泵 </A></STRONG><STRONG><A href="http://www.shsspv.cn/g.asp?ig=860">ZA石油 化工流程泵</A></STRONG></P>
    <P><STRONG><A href="http://www.shsspv.cn/g.asp?ig=859">FY型耐腐蚀泵立式 液下化工泵 </A></STRONG></P>
    <P><STRONG><A href="http://www.shsspv.cn/g.asp?ig=858">FSB型氟塑料化工 泵</A></STRONG></P>
    <P><STRONG><A href="http://www.shsspv.cn/g.asp?ig=857">IH型不锈钢化工泵 </A></STRONG></P>
    <P><STRONG><A href="http://www.shsspv.cn/g.asp?ig=856">PF(FS)型化工泵 </A></STRONG></P>
    <P><strong><A href="http://www.shsspv.cn/g.asp?ig=844">JMZ系列自吸化工 泵 </A></strong></P>
    <P><STRONG><A href="http://www.shsspv.cn/g.asp?ig=827">IHY型化工液下泵 </A></STRONG></P>
    <P><STRONG><A href="http://www.shsspv.cn/f.asp?ie=21">油泵 </A></STRONG></P>
    <P><STRONG><A href="http://www.shsspv.cn/g.asp?ig=846">2CY-KCB齿轮式输 油泵</A></STRONG></P>
    <P><STRONG><A href="http://www.shsspv.cn/g.asp?ig=845">CYZ-A型自吸式离 心油泵</A></STRONG></P>
    <P><STRONG><A href="http://www.shsspv.cn/f.asp?ie=33">齿轮油泵 </A></STRONG></P>
    <P><STRONG><A href="http://www.shsspv.cn/g.asp?ig=864">BCB型摆线内啮合 齿轮油泵 </A></STRONG></P>
    <P><STRONG><A href="http://www.shsspv.cn/g.asp?ig=865">液压齿轮泵 </A></STRONG></P>
    <P><STRONG><A href="http://www.shsspv.cn/g.asp?ig=866">高压齿轮油泵 </A></STRONG></P>
    <P><STRONG><A href="http://www.shsspv.cn/g.asp?ig=863">2CY齿轮油泵 </A></STRONG></P>
    <P><STRONG><A href="http://www.shsspv.cn/g.asp?ig=862">KCB齿轮油泵 </A></STRONG></P>

  • 删除 Guest (, 评 0 分) 支持 反对

    <P><STRONG><A href="http://www.shsspv.cn/f.asp?ie=22">磁力泵 </A></STRONG></P>
    <P><STRONG><A href="http://www.shsspv.cn/g.asp?ig=847">CW型磁力驱动旋涡 泵 </A></STRONG></P>
    <P><STRONG><A href="http://www.shsspv.cn/g.asp?ig=828">ZCQ型自吸式磁力 泵 </A></STRONG></P>
    <P><STRONG><A href="http://www.shsspv.cn/f.asp?ie=23">潜水泵 </A></STRONG></P>
    <P><STRONG><A href="http://www.shsspv.cn/g.asp?ig=848">AS型潜水排污泵 </A></STRONG></P>
    <P><STRONG><A href="http://www.shsspv.cn/f.asp?ie=24">液下泵 </A></STRONG></P>
    <P><STRONG><A href="http://www.shsspv.cn/g.asp?ig=850">FY型液下泵 </A></STRONG></P>
    <P><STRONG><A href="http://www.shsspv.cn/g.asp?ig=849">FSY型-WSY型玻璃 钢液下泵</A></STRONG></P>
    <P><STRONG><A href="http://www.shsspv.cn/f.asp?ie=26">隔膜泵 </A></STRONG></P>
    <P><STRONG><A href="http://www.shsspv.cn/g.asp?ig=877">QBY型多用气动隔 膜泵</A></STRONG></P>
    <P><STRONG><A href="http://www.shsspv.cn/g.asp?ig=876">DBY型电动隔膜泵 </A></STRONG></P>
    <P><STRONG><A href="http://www.shsspv.cn/f.asp?ie=27">自吸泵 </A></STRONG></P>
    <P><STRONG><BR><A href="http://www.shsspv.cn/g.asp?ig=851">ZCQ型自吸式磁力泵 </A></STRONG></P>
    <P><STRONG><A href="http://www.shsspv.cn/f.asp?ie=28">螺杆泵 </A></STRONG></P>
    <P><STRONG><A href="http://www.shsspv.cn/f.asp?ie=29">计量泵 </A></STRONG></P>
    <P><STRONG><A href="http://www.shsspv.cn/f.asp?ie=30">真空泵 </A></STRONG></P>
    <P><STRONG><A href="http://www.shsspv.cn/g.asp?ig=875">WL系列立式往复真 空泵</A></STRONG></P>
    <P><STRONG><A href="http://www.shsspv.cn/g.asp?ig=874W">系列往复式真空 泵 </A></STRONG></P>
    <P><STRONG><A href="http://www.shsspv.cn/g.asp?ig=873">2X系列旋片真空泵 </A></STRONG></P>
    <P><STRONG><A href="http://www.shsspv.cn/g.asp?ig=872">SZB系列水环式真 空泵 </A></STRONG></P>
    <P><STRONG><A href="http://www.shsspv.cn/g.asp?ig=871">SZ系列水环式真空 泵</A></STRONG></P>
    <P><STRONG><A href="http://www.shsspv.cn/g.asp?ig=870">2SK两级水环式真 空泵</A></STRONG></P>
    <P><STRONG><A href="http://www.shsspv.cn/g.asp?ig=869">SK系列水环式真空 泵</A></STRONG></P>
    <P><STRONG><A href="http://www.shsspv.cn/g.asp?ig=868">CLA型水环真空泵 </A></STRONG></P>
    <P><STRONG><A href="http://www.shsspv.cn/g.asp?ig=867">2BVA型水环式真空 泵</A></STRONG></P>
    <P><SPAN class=STYLE2><A href="http://www.shsspv.cn/g.asp?ig=886">J-X 系列柱塞式计量泵</A> </SPAN></P>
    <P><STRONG><A href="http://www.shsspv.cn/g.asp?ig=879">JMW系列隔膜式计 量泵</A></STRONG></P>
    <P><STRONG><A href="http://www.shsspv.cn/g.asp?ig=880">GM系列隔膜式计量 泵 </A></STRONG></P>
    <P><STRONG><A href="http://www.shsspv.cn/g.asp?ig=881">GB系列隔膜式计量 泵</A></STRONG></P>
    <P><STRONG><A href="http://www.shsspv.cn/g.asp?ig=882">JMX系列隔膜式计 量泵 </A></STRONG></P>
    <P><STRONG><A href="http://www.shsspv.cn/g.asp?ig=883">JMZ系列隔膜式计 量泵</A> </STRONG></P>
    <P><STRONG><A href="http://www.shsspv.cn/g.asp?ig=878">KD系列精密计量泵 </A></STRONG></P>
    <P><STRONG><A href="http://www.shsspv.cn/g.asp?ig=885">GB-S系列隔膜式计 量泵</A> </STRONG></P>
    <P><STRONG><A href="http://www.shsspv.cn/g.asp?ig=893">JYZR系列液压隔膜 式计量泵</A></STRONG></P>
    <P><STRONG><A href="http://www.shsspv.cn/g.asp?ig=887">2J-X系列柱塞式计 量泵 </A></STRONG></P>
    <P><STRONG><A href="http://www.shsspv.cn/g.asp?ig=888">J-Z系列柱塞式计 量泵 </A></STRONG></P>
    <P><STRONG><A href="http://www.shsspv.cn/g.asp?ig=889">J-ZR系列柱塞式计 量泵 </A></STRONG></P>
    <P><STRONG><A href="http://www.shsspv.cn/g.asp?ig=890">J-D系列柱塞式计 量泵</A></STRONG></P>
    <P><STRONG><A href="http://www.shsspv.cn/g.asp?ig=891">JYX系列液压隔膜 式计量泵</A></STRONG></P>
    <P><STRONG><A href="http://www.shsspv.cn/g.asp?ig=892">JYZ系列液压隔膜 式计量泵 </A></STRONG></P>
    <P><STRONG><A href="http://www.shsspv.cn/g.asp?ig=884">2JMX系列隔膜式计 量泵 </A></STRONG><BR></P>
    <P><A href="http://www.shsspv.cn/f.asp?ie=34"><STRONG>消防泵 </STRONG></A></P>
    <P><A href="http://www.shsspv.cn/g.asp?ig=900"><STRONG>XBD-L型立式单吸 多级消防泵 </STRONG></A></P>
    <P><A href="http://www.shsspv.cn/g.asp?ig=899 XBD"><STRONG>(ISW)型立 式消防泵 </STRONG></A></P>
    <P><A href="http://www.shsspv.cn/g.asp?ig=898"><STRONG>XBD-W型卧式单吸 多级消防泵</STRONG></A> </P>
    <P><A href="http://www.shsspv.cn/g.asp?ig=897"><STRONG>GDXQ-GDXP系列消 防泵</STRONG></A> </P>
    <P><A href="http://www.shsspv.cn/g.asp?ig=896"><STRONG>XBD-L型消防泵 </STRONG></A></P>
    <P><A href="http://www.shsspv.cn/g.asp?ig=894"><STRONG>NL泥浆泵 </STRONG></A></P>
    <P><A href="http://www.shsspv.cn/f.asp?ie=35"><STRONG>旋涡泵 </STRONG></A></P>
    <P><A href="http://www.shsspv.cn/g.asp?ig=902"><STRONG>W型旋涡泵 </STRONG></A></P>
    <P><A href="http://www.shsspv.cn/g.asp?ig=901"><STRONG>1W型单级旋涡泵 </STRONG></A></P>
    <P><A href="http://www.shsspv.cn/g.asp?ig=895"><STRONG>3PNL泥浆泵 </STRONG></A></P>
    <P><STRONG><A href="http://www.shsspv.cn/pjblog2/default.asp">水泵技术论坛</A></STRONG></P>
    <P><A href="http://www.001pv.com"><STRONG>泵阀论坛</STRONG></A><STRONG> </STRONG></P>
    <P><a href="http://www.zrpv.net"><strong>水泵</strong></a></P>
    <p><a href="http://www.ss-bf.cn"><strong>离心泵</strong></a></p>
    <P><STRONG>摘自:</STRONG><A href="http://www.shsspv.cn"><STRONG>www.shsspv.cn</STRONG></A></P>

  • 删除 ttec_pq (, 评 0 分) 支持 反对

    支持,学习中

查看全部评论(4)我来说两句 直接向LUPA提出您的宝贵建议

-5 -3 -1 - +1 +3 +5

推荐