虫虫首页| 资源下载| 资源专辑| 精品软件
登录| 注册

MESH

MESH网络即”无线网格网络”,是“多跳(multi-hop)”网络,是由adhoc网络发展而来,是解决“最后一公里”问题的关键技术之一。在向下一代网络演进的过程中,无线是一个不可缺的技术。无线MESH可以与其它网络协同通信,是一个动态的可以不断扩展的网络架构,任意的两个设备均可以保持无线互联。
  • 做网格的好程序

    做网格的好程序,PARAMESH is a package of Fortran 90 subroutines designed to provide an application developer with an easy route to extend an existing serial code which uses a logically cartesian structured MESH into a parallel code with adaptive MESH refinement(AMR).

    标签: 网格 程序

    上传时间: 2014-01-06

    上传用户:坏坏的华仔

  • Range imaging offers an inexpensive and accurate means for digitizing the shape of three-dimensiona

    Range imaging offers an inexpensive and accurate means for digitizing the shape of three-dimensional objects. Because most objects self occlude, no single range image suffices to describe the entire object. We present a method for combining a collection of range images into a single polygonal MESH that completely describes an object to the extent that it is visible from the outside.

    标签: three-dimensiona inexpensive digitizing accurate

    上传时间: 2016-11-29

    上传用户:yxgi5

  • 密西西比大学开发的ZIGBEE源代码

    密西西比大学开发的ZIGBEE源代码,能组成MESH网络,开发平台为IAR。

    标签: ZIGBEE 大学 源代码

    上传时间: 2016-12-20

    上传用户:虫虫虫虫虫虫

  • 韩国Yunjin Lee的博士论文

    韩国Yunjin Lee的博士论文,包含了她读博期间的主要研究成果,包括MESH Scissoring: Contour-Based Segmentation,MESH Parameterization Using Virtual Boundaries,Geometric Snakes for 3D MESHes,Mean Shift for 3D MESHes

    标签: Yunjin Lee 韩国 论文

    上传时间: 2013-12-12

    上传用户:netwolf

  • 1. 在No.1图形窗口中绘制 y=sin(x)在[0,2*pi]内的曲线。要求曲线的颜色为绿色

    1. 在No.1图形窗口中绘制 y=sin(x)在[0,2*pi]内的曲线。要求曲线的颜色为绿色,线型为 点划线,用*标示坐标点,在x轴的附近用 黑体 标注 ‘x轴’字样,在图形的上方加上标题 ‘正弦函数’,严格控制x,y轴分度相等,并开启网格。 2. 在No.2图形窗口中创建四个子窗口,在第一、二子窗口中用不同的方法同时绘制 y=x^2,y=-x^2,y=x^2*sin(x) 在[0,2*pi]内的曲线,并要给出标注 在第三个子窗口中绘制 三维曲线 3. 把No.3图形窗口分成五个子窗口,分别用plot3 MESH MESHc MESHz surf 来绘制 z=x*exp(-x^2-y^2) 在 -5=<x,y<=5 内的空间曲面图形,说明他们的区别,其中要求在用surf绘制的窗口内加入位置为[1,0.5,2]的光源,加入颜色标尺,采用spring色系

    标签: sin No pi 图形

    上传时间: 2017-03-30

    上传用户:84425894

  • 片上网络的noxim仿真平台

    片上网络的noxim仿真平台,它能够用来仿真2维MESH结构的片上网络

    标签: noxim 片上网络 仿真平台

    上传时间: 2014-08-27

    上传用户:liansi

  • 由于Ogre自带的模型观察器无法处理中文名

    由于Ogre自带的模型观察器无法处理中文名,和查看从天龙八部中导出的MESH和骨骼动画,所以他写了一个小工具。过程中重编译了Ogre的源码以便其支持中文资源名和处理天龙八部的模型资源。

    标签: Ogre 模型

    上传时间: 2014-01-22

    上传用户:bjgaofei

  • 无线网络技术的发展日新月异

    无线网络技术的发展日新月异,各种802.11x标准不断被更新,新的无线网络架构和技术也不断被提出。正当无线局域网(WLAN)的发展方兴未艾时,一种新的无线MESH网络(无线网状网络)又出现了。无线MESH网络的核心指导思想是让网络中的每个节点都可以发送和接收信号,传统的WLAN一直存在的可伸缩性低和健壮性差等诸多问题由此迎刃而解。无线MESH技术的出现,代表着无线网络技术的又一大跨越,有极为广阔的应用前景。

    标签: 无线网络技术 发展

    上传时间: 2017-08-03

    上传用户:yyyyyyyyyy

  • distMESH

    matlab有限元网格划分程序 DistMESH is a simple MATLAB code for generation of unstructured triangular and tetrahedral MESHes. It was developed by Per-Olof Persson (now at UC Berkeley) and Gilbert Strang in the Department of Mathematics at MIT. A detailed description of the program is provided in our SIAM Review paper, see documentation below. One reason that the code is short and simple is that the geometries are specified by Signed Distance Functions. These give the shortest distance from any point in space to the boundary of the domain. The sign is negative inside the region and positive outside. A simple example is the unit circle in 2-D, which has the distance function d=r-1, where r is the distance from the origin. For more complicated geometries the distance function can be computed by interpolation between values on a grid, a common representation for level set methods. For the actual MESH generation, DistMESH uses the Delaunay triangulation routine in MATLAB and tries to optimize the node locations by a force-based smoothing procedure. The topology is regularly updated by Delaunay. The boundary points are only allowed to move tangentially to the boundary by projections using the distance function. This iterative procedure typically results in very well-shaped MESHes. Our aim with this code is simplicity, so that everyone can understand the code and modify it according to their needs. The code is not entirely robust (that is, it might not terminate and return a well-shaped MESH), and it is relatively slow. However, our current research shows that these issues can be resolved in an optimized C++ code, and we believe our simple MATLAB code is important for demonstration of the underlying principles. To use the code, simply download it from below and run it from MATLAB. For a quick demonstration, type "MESHdemo2d" or "MESHdemond". For more details see the documentation.

    标签: matlab有限元网格划分程序

    上传时间: 2015-08-12

    上传用户:凛风拂衣袖

  • a sub-cell WENO reconstruction method

    We introduce a sub-cell WENO reconstruction method to evaluate spatial derivatives in the high-order ADER scheme. The basic idea in our reconstruction is to use only r stencils to reconstruct the point-wise values of solutions and spatial derivatives for the 2r-1 th order ADER scheme in one dimension, while in two dimensions, the dimension-by-dimension sub-cell reconstruction approach for spatial derivatives is employed. Compared with the original ADER scheme of Toro and Titarev (2002) [2] that uses the direct derivatives of reconstructed polynomials for solutions to evaluate spatial derivatives, our method not only reduces greatly the computational costs of the ADER scheme on a given MESH, but also avoids possible numerical oscillations near discontinuities, as demonstrated by a number of one- and two-dimensional numerical tests. All these tests show that the 5th-order ADER scheme based on our sub-cell reconstruction method achieves the desired accuracy, and is essentially non-oscillatory and computationally cheaper for problems with discontinuities.

    标签: 高精度格式

    上传时间: 2016-01-13

    上传用户:ccsdcczd