eryar

PipeCAD - Plant Piping Design Software.
RvmTranslator - Translate AVEVA RVM to OBJ, glTF, etc.
posts - 603, comments - 590, trackbacks - 0, articles - 0

     摘要: 最近在开发一个自动出图程序,从PDMS模型中取数据后,经过处理生成AutoCAD的图纸。其中涉及到一个问题就是如何尽量使程序与AutoCAD低耦合,尽量不使用第三方库的情况下,实现数据的传递。
最开始想到是用ODA(Open Design Alliance)的DWGdirect库来直接生成DWG文件,并且PDMS中就是使用这个库来生成DWG文件的。DWGdirect的用法与AutoCAD .Net的接口名称基本一致,用法也相同,但是这样就引入了第三方库。
还有一种方法就是使用AutoLisp脚本来生成图纸。这样的话,程序只需要生成一个AutoLisp脚本文件,文件中包含创建图形的命令。AutoLisp脚本与PDMS的PML类似,都需要一个解析执行的环境,即PML依赖PDMS平台才能运行,AutoLisp依赖AutoCAD平台。如果使用AutoLisp,程序不依赖DWG相关的第三方库,只需要生成一个文本文件。决定使用AutoLisp后,还有一个问题,就是如何在启动AutoCAD能自动加载生成的AutoLisp文件去生成图纸。  阅读全文

posted @ 2017-05-18 21:33 eryar 阅读(2064) | 评论 (0)编辑 收藏

     摘要: RvmTranslator6.0beta: Translate PDMS RVM to 3ds Max by MAXScript file.  阅读全文

posted @ 2017-05-07 21:47 eryar 阅读(2705) | 评论 (0)编辑 收藏

     摘要: Abstract. Bounding Volume Hierarchy(BVH) organizes geometric objects in the tree based on spatial relationships. Each node in the tree contains an axis-aligned bounding box of all the objects below it. Bounding volume hierarchies are used in many algorithms to support efficient operations on the sets of geometric objects, such as collision detection, ray-tracing, searching of nearest objects, and view frustum culling. The paper focus on the usage of BVH on TopoDS_Shape, and its application.
  阅读全文

posted @ 2017-05-03 22:50 eryar 阅读(6102) | 评论 (0)编辑 收藏

     摘要: SdnfViewer - 3D Viewer for SDNF File.

Use SdnfViewer to view the structure model by SDNF file. The SdnfViewer is under developing, if you have any questions, suggestions, you can send me email, my email address is: eryar@163.com.  阅读全文

posted @ 2017-04-24 20:48 eryar 阅读(1885) | 评论 (0)编辑 收藏

     摘要: Abstract. Starting from OCCT6.8.0 will include one more algorithm for solving global optimization problems. Its development has been triggered by insufficient performance and robustness of existing algorithm of minimization of curve-surface distance in Extrema package. The PSO, Algorithms in this family are stochastic, and this feature can be perceived as opposite to robustness. However, we found it was not only much faster than original deterministic one, but also more robust in complex real-wo  阅读全文

posted @ 2017-04-18 22:51 eryar 阅读(1248) | 评论 (0)编辑 收藏

     摘要: Abstract. OpenCASCADE provides the algorithm to implement of the intersection between two 2d conic curve. The conic is defined by its implicit quadaratic equation, so the intersection problem is become a polynomial roots finding problem. The paper focus on the two conic curve intersection algorithm implementation.

Key Words. 2d conic intersection, conic equation  阅读全文

posted @ 2017-03-25 22:40 eryar 阅读(2052) | 评论 (0)编辑 收藏

     摘要: Abstract. OpenCASCADE provides the algorithm to implementation of the analytical intersection between a 2d line and another conic curve. The conic is defined by its implicit quadaratic equation, so the intersection problem is become a polynomial roots finding problem. The paper focus on the 2d line intersection another conic algorithm implementation.

Key Words. 2d line intersection, conic  阅读全文

posted @ 2017-03-23 23:23 eryar 阅读(1290) | 评论 (0)编辑 收藏

     摘要: Abstract. OpenCASCADE provides the algorithm to search the intersection point between 3 planes. If two of the planes are parallel or identical, will get no result.

Key Words. Plane Intersection  阅读全文

posted @ 2017-03-19 21:52 eryar 阅读(1506) | 评论 (0)编辑 收藏

     摘要: Abstract. OpenCASCADE geometric tools provide algorithms to calculate the intersection of two 2d curves, surfaces, or a 3d curve and a surface. Those are the basis of the Boolean Operation, so under the implementation can help to under the BO algorithms. The paper focus on the intersection of two 2d analytical line.

Key Words. OpenCASCADE, Line Intersection  阅读全文

posted @ 2017-02-25 23:05 eryar 阅读(1608) | 评论 (0)编辑 收藏

     摘要: In Visual Studio you can specify changes to environment variables in the project settings. Open your project, go to Project -> Properties... Under Configuration Properties -> Debugging, edit the Environment value to set environment variables.
For example, if you want to add the directory “c:\foo\bin” to the path when debugging your application, set the Environment value to “PATH=%PATH%;c:\foo\bin”.
  阅读全文

posted @ 2017-02-21 21:39 eryar 阅读(1315) | 评论 (0)编辑 收藏

     摘要: Abstract. The Piping Component File(PCF) are text files containing component and routing information. The PCF format was originally developed as an easy way to drive Isogen, the syntax is simple which means it is straightforward to create from most piping design software. But AVEVA PDMS only can export IDF format, PcfTranslator can translate AVEVA PDMS piping model to PCF, you can use the PCF in IsoAlgo for piping isometrics drawing or IsoAlgo3d to visualize the 3d model. You can also import the  阅读全文

posted @ 2017-02-16 22:41 eryar 阅读(3953) | 评论 (0)编辑 收藏

     摘要: RvmTranslator6.0 - Translate PDMS RVM to Dassault Systemes 3DXML.  阅读全文

posted @ 2017-01-26 10:58 eryar 阅读(1820) | 评论 (0)编辑 收藏

     摘要: RvmTranslator6.0 Preview:
1.Introduce Qt for a good GUI;
2.Support Dassault Systemes 3DXML translation;  阅读全文

posted @ 2017-01-18 22:38 eryar 阅读(1859) | 评论 (0)编辑 收藏

     摘要: Abstract. EasyMesh is developed by Bojan Niceno, it is a two-dimensional quality mesh generator. EasyMesh can generate two dimensional, unstructured, Delaunay and constrained Delaunay triangulations in general domains. It can handle holes in the domain. The paper focus on the usage of EasyMesh.

Key Words. EasyMesh, Delaunay Triangualtion, Triangulation, Mesh  阅读全文

posted @ 2017-01-06 22:54 eryar 阅读(3094) | 评论 (1)编辑 收藏

     摘要: RvmTranslator5.1

1. Fix crash bug for binary rvm file;

download RvmTranslator5.1:
http://yun.baidu.com/pcloud/album/info?uk=3808749571&album_id=3634993082542187183  阅读全文

posted @ 2016-12-18 23:05 eryar 阅读(2658) | 评论 (0)编辑 收藏

列出全部内容
共41页: First 15 16 17 18 19 20 21 22 23 Last