100字范文,内容丰富有趣,生活中的好帮手!
100字范文 > 三维仿真 3D simulation英语短句 例句大全

三维仿真 3D simulation英语短句 例句大全

时间:2023-10-30 14:35:16

相关推荐

三维仿真 3D simulation英语短句 例句大全

三维仿真,3D simulation

1)3D simulation三维仿真

1.Research on NC Programming and 3D Simulation System of Turning Worm;转向蜗杆数控自动编程及三维仿真系统的研究

2.Research on 3D Simulation Technology Application in Navigation-Aids Management;三维仿真技术在航标管理中的应用研究

3.The research and development of layout3D simulation system;布局三维仿真系统的研究与开发

英文短句/例句

1.The Research of Nonlinear Three dementional Simulation of Soft Rock Tunnel;软岩巷道非线性三维仿真分析的研究

2.Research on 3D Simulation System for 10MW High Temperature Gas-cooled Reactor;10MW高温气冷堆三维仿真系统的研究

3.Research Tooth Profile Error of ZK_Worm Based on 3D Simulation;基于三维仿真ZK蜗杆齿形误差的研究

4.Design and Development of CNC Teaching System Based on 3D Simulation;三维仿真数控教学系统的设计与开发

5.On the Manufacture Method of Urban Simulation Environment and the Interaction in This Urban Environment;城市三维仿真环境制作和交互性研究

6.The 3-D Simulation Analysis of a Bridge Stake Foundation in the Action of Dead Load;恒载作用下桥梁桩基础三维仿真分析

7.Design and application of OpenGL three-dimension simulation development environment in Delphi;Delphi中OpenGL三维仿真开发环境设计与应用

8.Mining Production of Systems Simulated by Simpy and Three-dimensional Simulation by OpenGL矿山生产系统的SIMPY模拟及OPENGL三维仿真

9.Use GLScene Components To Write A Three-dimensional Simulation Software In DelphiDelphi中使用GLScene组件编写三维仿真软件

10.3D simulation of submarine pipeline impacted by dropped objects海底管道受坠物撞击的三维仿真研究

11.3D Dynamic Simulation of Motion Morphology of Bionic Robot;仿生机器人运动形态的三维动态仿真

12.The Application of 3D Scene Simulation Technology in the CTCS Level 3 Simulation System;三维视景仿真技术在CTCS3级仿真系统中的应用

13.Numerical Simulation of Three-dimensional Turbulent Flow in Gas Turbine Combustor;燃气轮机燃烧室三维湍流的数值仿真

14.Research and Implementation of 3D Visual Simulation of Missile Penetration;导弹突防的三维视景仿真研究与实现

15.The Simulation of 3D Model for LPG Direct Injection Engine;LPG缸内直接喷射发动机三维模型仿真

16.The Design and Research on Three-dimensional Virtual Emulational Underwater System;三维水下虚拟仿真系统的设计与研究

17.Design and Realization of Wireless Communication Module for Modular Production System;MPS组态监控系统的三维设计与仿真

18.Development and Research of Three-dimension DEM Calculation-simulation Software;三维离散元法计算仿真软件开发研究

相关短句/例句

three-dimensional simulation三维仿真

1.Research on thethree-dimensional simulation technology for NC machining process;数控加工过程三维仿真技术的研究

2.Taking the calculation of the hanging basket structure of a certain bridge as the research object, this paper introduces the theory of and calculating methods for the structuralthree-dimensional simulation analysis based on ANSYS finite element theory.以某大桥的挂篮结构计算为研究对象,介绍了基于ANSYS有限元理论的结构三维仿真分析理论和计算方法。

3.Through thethree-dimensional simulation of ANSYS software,the processes from modeling,loading,solving to post processing of the particular project are introduced at every point.针对实际工程,利用ANSYS软件进行三维仿真分析,详细介绍了从建模、加载、求解到后处理的过程。

3)3-D simulation三维仿真

1.3-D simulation analysis of gravity dam based on ANSYS;基于ANSYS的重力坝三维仿真分析

2.3-D Simulation of Ocean Wave;海浪模拟的三维仿真研究

3.3-D Simulation of Electric Fields across the Span of UHVDC Transmission Lines特高压直流输电线路档距内电场三维仿真模拟

4)three-dimension simulation三维仿真

5)3D-simulation三维仿真

6)3-D garment simulation三维服装仿真

1.Study on parameterized mannequin modeling in3-D garment simulation;三维服装仿真中的参数化人体建模技术

延伸阅读

基于AutoCAD的螺纹加工三维仿真在机械传动中,螺纹的应用十分广泛,尤其是在数控设备上更是大量使用滚珠丝杠。对这些螺纹零件,采用CAD/CAM技术进行设计与制造是离不开仿真技术的,本文主要介绍的是基于AutoCAD平台,利用VLISP编程,根据螺纹加工原理、三维实体造型和对象布尔运算等实现螺纹加工三维动态仿真技术。一、基圆柱体造型 根据国标(GB196—81)规定,三角螺纹的基本尺寸有外径D、中径D2、内径D1、螺距P、基本三角形高度H和牙形角60°。按有关规定,滚珠丝杠公称直径为D,长度为L,滚珠直径为db。将基圆柱体的直径取为D,长度取设计值L,则程序代码如下:(setq d (getreal"\n请输入螺纹外径:")l (getreal"\n请输入螺纹长度:"))(command "cylinder" (list 0 0 -1) "d" d (* -1 l ) );画圆柱体二、切削刀具造型 螺纹加工常用车削、铣削等加工方法,下面仅以车削三角螺纹和铣削滚珠丝杠为例来说明。1. 三角螺纹车刀简化模型 零前角螺纹车刀的创建,如图1所示其代码如下:图1 车刀多边形(setq p1 (list 0 0 0));设当前坐标原点为P1 (setq p2 (polar p1 0 (/ p 4))) (setq p3 (polar p2 (/ pi 3 -1) (* 5 h))) (setq p4 (polar p3 (/ pi 2 -1) 10)) (setq p5 (polar p4 pi (+ (/ p 4)(* 5 h)))) (setq p6 (polar p5 (/ pi 2) 10)) ;定义车刀多边形p1 p2 p3 p4 p5 p6点的相对坐标(command "pline" p1 p2 p3 p4 p5 p6 "c" "") ;用多段线形成封闭多边形(command "extrude" "l" "" -5 "");拉伸形成车刀模型(setq e1 (entlast));返回图元名(command "move" e1 "" "0,0,0" (list (/ p 2 -1) (/ d1 2 -1) 2.5));移动到起刀点2. 滚珠丝杠圆盘铣刀简化模型 圆盘铣刀是根据丝杠螺纹槽的法剖面廓形而创建的成形铣刀,为简化计算可用轴向剖面廓形代替,主要代码如下:(setq db (getreal"\n请输入滚珠直径:"));定义铣刀截面多边形各节点P11、P12、P13、P14,如图2所示

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。