亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

蟲蟲首頁| 資源下載| 資源專輯| 精品軟件
登錄| 注冊

grid-ENABL

  • 葉輪機械多級葉輪網格生成程序介紹 侯 樂 毅 非定常流課題組 本文開發的葉輪機械多級葉輪網格生成程序

    葉輪機械多級葉輪網格生成程序介紹 侯 樂 毅 非定常流課題組 本文開發的葉輪機械多級葉輪網格生成程序,采用的網格類型為H型,并在葉片前面/后面延伸區域設置平直網格數ID1和IDN。主程序MESH_BLADE_STAGES,分成三個部分,原始葉型及控制參數從輸入程序INPUT輸入,求解程序為GRID(ZERO),輸出程序為OUTPUT。

    標簽: 輪機 多級 網格 程序

    上傳時間: 2013-12-03

    上傳用戶:bjgaofei

  • 該項目為雙用戶:管理員 與營業員 角色登陸顯示不同信息 今日房價:可以點雙擊房價進行在線修改 開房記錄報表只供查詢(關鍵字:開房/退房 時間或者日期或者描述信息) 房間信息管理:可以直接點擊

    該項目為雙用戶:管理員 與營業員 角色登陸顯示不同信息 今日房價:可以點雙擊房價進行在線修改 開房記錄報表只供查詢(關鍵字:開房/退房 時間或者日期或者描述信息) 房間信息管理:可以直接點擊grid面板編輯 房間類型是單擊時從數據庫讀出 首頁放了幾張圖片用的是jquery的一個圖片插件 左側面板公告信息是自己胡亂修改了Grid面板 改在這樣的 數據庫方面一小部分功能運用存儲過程

    標簽: 項目 用戶 修改 信息管理

    上傳時間: 2014-08-29

    上傳用戶:redmoons

  • delphi的的三方控件

    delphi的的三方控件,主要grid表格的應用。

    標簽: delphi 控件

    上傳時間: 2013-12-22

    上傳用戶:咔樂塢

  • HDFDUMP and BRFDUMP are utility programs developed for use with MISR data files. HDFDUMP will ext

    HDFDUMP and BRFDUMP are utility programs developed for use with MISR data files. HDFDUMP will extract data from a MISR file in the HDF-EOS grid format (MISR Level 1B2 and Level 2 files) and writes unformatted binary files. BRFDUMP calculates radiances and bidirectional reflectance factors (BRF) from MISR Level 1B2 files and creates unformatted binary files.

    標簽: HDFDUMP developed programs BRFDUMP

    上傳時間: 2017-04-02

    上傳用戶:yy541071797

  • 一個簡單的Ext例子

    一個簡單的Ext例子,里面有Ext.grid.GridPanel和Ext.tree.TreePanel等Ext常用控件的使用,以及Ext和后臺的交互

    標簽: Ext

    上傳時間: 2013-12-23

    上傳用戶:qweqweqwe

  • The 2D CFD Program NaSt2D The program is a 2D solver for the incompressible, transient Navier-Sto

    The 2D CFD Program NaSt2D The program is a 2D solver for the incompressible, transient Navier-Stokes equations including the temperature equation and free boundary problems. It uses finite differences for discretization on a structured equidistant staggered grid, central and upwind (donor-cell) discretization of the convective parts and an explicit time stepping scheme. The free boundary value problems are treated with the MAC technique.

    標簽: incompressible Navier-Sto The transient

    上傳時間: 2013-11-30

    上傳用戶:xfbs821

  • Triangular mesh processing tool, currently very few people use this software, but it allows us to gr

    Triangular mesh processing tool, currently very few people use this software, but it allows us to greatly reduce the time to deal with a lot of the grid.

    標簽: Triangular processing currently software

    上傳時間: 2013-12-09

    上傳用戶:BOBOniu

  • 迷宮算法(maze) /* Maze * Starting point is m[0][0], need to find a path go to m[9][9]. 0 means OK,

    迷宮算法(maze) /* Maze * Starting point is m[0][0], need to find a path go to m[9][9]. 0 means OK, * 1 means cannot go there, boundary is 0 and 9, cannot go beyond boundary. * Each step can be made horizontally or vertically for one more grid (diagonal * jump is not allowed). * Your program should print a series of grid coordinates that start from m[0][0] * and go to m[9][9] * Hint: No need to find the shortest path, only need to find one path that gets * you to desitination. */

    標簽: Starting point means maze

    上傳時間: 2013-12-27

    上傳用戶:Divine

  • 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

    上傳用戶:凜風拂衣袖

  • dhtmlx媲美EasyUI的好用UI組件

    dhtmlx標準版源碼,包含tree、form、grid等常用插件

    標簽: dhtmlx EasyUI

    上傳時間: 2017-05-09

    上傳用戶:jiangjun0817

主站蜘蛛池模板: 如皋市| 探索| 开封市| 阜宁县| 积石山| 忻州市| 五原县| 城步| 凤冈县| 楚雄市| 治县。| 莱芜市| 焦作市| 洛浦县| 沁阳市| 丰宁| 莎车县| 泽库县| 潜山县| 开远市| 沾益县| 太湖县| 曲麻莱县| 凤台县| 延津县| 广宗县| 芜湖市| 庄浪县| 辉南县| 崇礼县| SHOW| 涿鹿县| 灵武市| 苏尼特右旗| 宜兰县| 蓬安县| 甘德县| 县级市| 攀枝花市| 乌拉特中旗| 郸城县|