• 未登录
总数:286 | 当前第25/29 首页 上一页 ... 20 21 22 23 24 25 26 27 28 29 下一页 尾页
菲尼克斯带智能型防火墙的路由器FL MGUARD产品介绍
基于工业自动化系统中以太网应用越来越广泛,安全问题将变得尤其重要。菲尼克斯电气针对工业以太网及自动化系统提出了三个层面的安全解决方案。 一、 物理层安全附件:FL PLUG GUARD !
  1. 2009/11/8
  2. 人气(5933)
  3. 星级(10)
  4. 评论(0)
空中水母AirJelly
空中水母的环境是空气。与水下水母不同,远程控制的水母——空中水母不是在水中游,而是在广阔的空中滑翔,因为它有一个中央电机装置和一个智能听候指令的体系。它能够这样是因为它有一个充满氦气的球形网。 空中水母仅有的动力来源就是连接中央电动驱动器的两个锂离子电池。中央驱动器把动力传输到一个锥齿轮上,然后再传给八个连续的直齿轮,直齿轮通过曲柄带动水母上的八个“触角”。每个“触角”都设计成鱼鳍鳍条结构。把蠕动当做这个球形网的动力到目前为止在空军史上还是空白。空中水母是第一个以蠕动为驱动力的室内飞行物体。这种新型的驱动理念基于反弹原理的助推力,让水母轻轻地在空中穿行。 AirJellys environment is the air. Unlike AquaJelly, the remote-controlled jellyfish AirJelly does not swim through water, but instead glides instead through a sea of air thanks to its central electric drive unit and an intelligent, adaptive mechanism. It is able to do so because it consists of a helium-filled ballonett. AirJellys sole source of power is two lithium-ion polymer batteries connected to the central electric drive unit. It transmits the force to a bevel gear and from there to a succession of eight spur gears, which move the eight tentacles of the jellyfish via cranks. Each tentacle is designed as a structure with Fin Ray Effect . Propulsion of a ballonett by means of peristaltic motion is hitherto unknown in the history of aviation. AirJelly is the first indoor flight object with peristaltic drive. This new drive concept, with propulsion based on the principle of recoil, moves the jellyfish gently through the air.
  1. 2009/11/6
  2. 人气(6706)
  3. 星级(10)
  4. 评论(0)
[第35讲]驱动程序IO口(5)
Linux内核把驱动程序划分为3种类型:字符设备、块设备和网络设备 。在uClinux 内核编写驱动程序并不像其他操作系统那么复杂,实际上,所要做的只是为相应的设备编写几个基本函数并向VFS(virtual file system)注册即可。当上层应用要使用该设备时,VFS 就会调用相应的设备函数。设备驱动程序通常可归为以下3 类:a) 块设备(block) ,以块为单位,允许随机访问,多用缓存技术;b) 字符设备(char) ,以字节为单位,只能按顺序访问,不用缓存;c) 网络接口(net) 。
  1. 2009/11/4
  2. 人气(4216)
  3. 星级(10)
  4. 评论(0)
[第34讲]驱动程序IO口(4)
Linux内核把驱动程序划分为3种类型:字符设备、块设备和网络设备 。在uClinux 内核编写驱动程序并不像其他操作系统那么复杂,实际上,所要做的只是为相应的设备编写几个基本函数并向VFS(virtual file system)注册即可。当上层应用要使用该设备时,VFS 就会调用相应的设备函数。设备驱动程序通常可归为以下3 类:a) 块设备(block) ,以块为单位,允许随机访问,多用缓存技术;b) 字符设备(char) ,以字节为单位,只能按顺序访问,不用缓存;c) 网络接口(net) 。
  1. 2009/11/4
  2. 人气(4325)
  3. 星级(10)
  4. 评论(0)
[第33讲]驱动程序IO口(3)
Linux内核把驱动程序划分为3种类型:字符设备、块设备和网络设备 。在uClinux 内核编写驱动程序并不像其他操作系统那么复杂,实际上,所要做的只是为相应的设备编写几个基本函数并向VFS(virtual file system)注册即可。当上层应用要使用该设备时,VFS 就会调用相应的设备函数。设备驱动程序通常可归为以下3 类:a) 块设备(block) ,以块为单位,允许随机访问,多用缓存技术;b) 字符设备(char) ,以字节为单位,只能按顺序访问,不用缓存;c) 网络接口(net) 。
  1. 2009/11/4
  2. 人气(4312)
  3. 星级(10)
  4. 评论(0)
[第32讲]驱动程序IO口(2)
Linux内核把驱动程序划分为3种类型:字符设备、块设备和网络设备 。在uClinux 内核编写驱动程序并不像其他操作系统那么复杂,实际上,所要做的只是为相应的设备编写几个基本函数并向VFS(virtual file system)注册即可。当上层应用要使用该设备时,VFS 就会调用相应的设备函数。设备驱动程序通常可归为以下3 类:a) 块设备(block) ,以块为单位,允许随机访问,多用缓存技术;b) 字符设备(char) ,以字节为单位,只能按顺序访问,不用缓存;c) 网络接口(net) 。
  1. 2009/11/2
  2. 人气(4451)
  3. 星级(10)
  4. 评论(0)
[第31讲]驱动程序IO口(1)
Linux内核把驱动程序划分为3种类型:字符设备、块设备和网络设备 。在uClinux 内核编写驱动程序并不像其他操作系统那么复杂,实际上,所要做的只是为相应的设备编写几个基本函数并向VFS(virtual file system)注册即可。当上层应用要使用该设备时,VFS 就会调用相应的设备函数。设备驱动程序通常可归为以下3 类:a) 块设备(block) ,以块为单位,允许随机访问,多用缓存技术;b) 字符设备(char) ,以字节为单位,只能按顺序访问,不用缓存;c) 网络接口(net) 。
  1. 2009/11/2
  2. 人气(4409)
  3. 星级(10)
  4. 评论(0)
带有鳍形夹具的仿生三角架—多方位运动和自动抓取
仿生三角架利用了自然界中鱼鳍的结构,首次将三维空间应用到空中企鹅和水下企鹅项目中,以便实现高效和多方位的自动化。三个可扩展伸缩的金丝玻璃纤维杆降低了需要被替换的量,同时允许最大90度的运动。BionicTripod with FinGripper versatile movement and adaptive grasping The BionicTripod makes use of the bionic Fin Ray® structure, which was transferred to three-dimensional space for the first time in the AirPenguin and AquaPenguin projects for efficient, versatile automation. Three extendible and retractable filigree fibreglass rods reduce the mass to be displaced, while allowing a maximum scope of movement of up to 90 degrees.
  1. 2009/10/29
  2. 人气(6121)
  3. 星级(10)
  4. 评论(0)
水下企鹅AquaPenguins_Festo仿生技术
水下企鹅- 技术-水下自动运载工具AquaPenguins - technology-bearers as autonomous underwater vehicle.与它自然界的原型一样,来自费斯托(Festo)公司的水下企鹅具有一个带水动力的身体轮廓。其优雅的推进力以及其可向各个方向移动的机翼头部和尾部,让机器人企鹅可以在狭窄的空间条件下自由穿行,并且在必要时及时出现甚至可以向后游——这一点可不像它们的自然界的原型。 仿生企鹅设计成水下自动运载工具,可以自由定位并且可在水池中穿行。这种工具有一个3D的海豚音声纳系统,使得“企鹅”可以与周围的伙伴们交流,比如避免互相碰撞。Like its natural archetype, the AquaPenguin from Festo has a hydrodynamic body contour. Its elegant wing propulsion and its head and tail sections, which can be moved in all directions, allow the robotic penguins to manoeuvre in cramped spatial conditions, to turn on the spot when necessary and – unlike their biological counterparts – even to swim backwards. The bionic Penguins are designed as autonomous underwater vehicles that independently orient themselves and navigate through the water basin. They are supported by a 3D sonar system which, as with dolphins, allows communication with their surroundings and with other robotic penguins – for example to avoid collisions.
  1. 2009/10/22
  2. 人气(6493)
  3. 星级(10)
  4. 评论(0)
pgu端子的功能(一)下
第一讲:介绍了FX1N系列和FX1S系列PLC的定位控制指令的应用,利用这些指令,可以做到简易的。最低成本的定位控制。
  1. 2009/7/23
  2. 人气(4828)
  3. 星级(10)
  4. 评论(0)
总数:286 | 当前第25/29 首页 上一页 ... 20 21 22 23 24 25 26 27 28 29 下一页 尾页