Intel TBB in OpenCASCADE-卡核

Intel TBB in OpenCASCADE

Intel TBB in OpenCASCADE eryar@163.com   OpenCASCADE使用了一个开源的第三方库Intel TBB,这个并行计算库主要用于网格化、布尔操作等复杂算法,可以明显提升速度。...
OpenCASCADE解非线性方程组-卡核

OpenCASCADE解非线性方程组

OpenCASCADE解非线性方程组 eryar@163.com   Abstract. 在科学技术领域里常常提出求解非线性方程组的问题,例如,用非线性函数拟合实验数据问题、非线性网络问题、几何上的曲线曲面求...
Levmar:Levenberg-Marquardt非线性最小二乘算法-卡核

Levmar:Levenberg-Marquardt非线性最小二乘算法

Levmar:Levenberg-Marquardt非线性最小二乘算法 eryar@163.com Abstract. Levmar is GPL native ANSI C implementations of the Levenberg-Marquardt optimization algorithm.The blog focus on...
OpenCASCADE Make Face With Holes-卡核

OpenCASCADE Make Face With Holes

OpenCASCADE Make Face With Holes eryar@163.com OpenCASCADE提供了构造Face的类BRepBuilderAPI_MakeFace,使用这个类可以构造出带孔的面。如下图所示: 当然,要得到上图所示的结果,还可以使...
OpenCASCADE Incremental Mesh-卡核

OpenCASCADE Incremental Mesh

OpenCASCADE Incremental Mesh eryar@163.com   Abstract. OpenCASCADE IncrementalMesh is used to build the mesh of a shape with respect of their correctly triangulated parts. The...
Mesh BRep Shapes-卡核

Mesh BRep Shapes

Mesh BRep Shapes eryar@163.com     Abstract. 当对OpenCASCADE的BRep表示法的数据结构有了一定的理解后,建议可以自己实现一个显示数据生成的功能,即网格剖分功能。 Key Words. BR...
解析几何求交之直线与二次曲面-卡核

解析几何求交之直线与二次曲面

解析几何求交之直线与二次曲面 eryar@163.com   Abstract. OpenCASCADE provides the analytic intersection between a conic and a quadric in the package IntAna. Key Words. Analytic ...
解析几何求交之圆与二次曲面-卡核

解析几何求交之圆与二次曲面

解析几何求交之圆与二次曲面 eryar@163.com   Abstract. OpenCASCADE provides the analytic intersection between a conic and a quadric in the package IntAna. Key Words. Analytic ge...
最小二乘法拟合直线-卡核

最小二乘法拟合直线

最小二乘法拟合直线 在科学实验和生产实践中,经常需要从一组实验数据出发寻求函数y=f(x)的一个近似表达式,也称为经验公式。从几何上看,就是希望根据给定的m个点,求曲线y=f(x)的一条近似曲线...
OpenCASCADE圆与平面求交-卡核

OpenCASCADE圆与平面求交

OpenCASCADE圆与平面求交 eryar@163.com   在 解析几何求交之圆与二次曲面中分析了OpenCASCADE提供的类IntAna_IntConicQuad可以用来计算圆与二次曲面之间的交点,这个算法是将平面Pla...
OpenCASCADE点向直线投影-卡核

OpenCASCADE点向直线投影

OpenCASCADE点向直线投影 eryar@163.com   在GeomLib_Tool类中提供了计算指定点在曲线、曲面上的参数,这个算法具有通用性,即对任意曲线、曲面来反求点的参数。   本文主要结合源码...
OpenCASCADE点向圆柱面投影-卡核

OpenCASCADE点向圆柱面投影

OpenCASCADE点向圆柱面投影 eryar@163.com   OpenCASCADE的类Extrema_ExtPElS提供了点到基本曲面的投影计算功能,距离可能是最大值或是最小值。如下图所示的点到圆柱的投影会有两个投影点P...