@sxz0823 你好,请问有关concentration和parcelconcentration您是怎么计算的,求指导。
T
TM
@TM
帖子
-
DPMFoam injectionModels 中初始速度 U0 -
请问如何得到颗粒迹线?@calrel 你好,您是通过什么方法画颗粒轨迹呢,求指教
-
变量未初始化问题在lagrangian/intermediate/submodels/Kinematic/ParticleForces路径下添加了一个电场力模型,编译通过,case计算时报错,似乎跟q和E变量未初始化有关,代码小白,求指点。
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // template<class CloudType> Foam::ElectricfieldForce<CloudType>::ElectricfieldForce ( CloudType& owner, const fvMesh& mesh, const dictionary& dict, const word& forceType, const volScalarField& qField ) : ParticleForce<CloudType>(owner, mesh, dict, forceType, true), EName_(this->coeffs().template lookupOrDefault<word>("E", "E")), EInterpPtr_(NULL), qField_(qField) { Info<< "-----p in ELe\n" << endl; qInterpPtr_.reset ( interpolation<scalar>::New ( owner.solution().interpolationSchemes(), qField ).ptr() ); Info<< "-----p2 in ELe\n" << endl; } template<class CloudType> Foam::ElectricfieldForce<CloudType>::ElectricfieldForce ( const ElectricfieldForce& etf ) : ParticleForce<CloudType>(etf), EName_(etf.EName_), EInterpPtr_(NULL), qField_(etf.qField_) {}
-
粒子与网格归属问题这段用来统计网格单元内粒子个数的代码,编译的路径是什么,求东岳老师指导
-
ParaView 使用 Temporal Particles To Pathlines 追踪粒子轨迹出现多于线条在ParaView 中用 Temporal Particles To Pathlines 追踪粒子轨迹,会出现多余的线条是怎么回事,求指导。
-
如何在cloudProperties 里添加布朗运动(BrownianMotionForce)是的,添加进去后应该要重新要编译一下
-
如何在cloudProperties 里添加布朗运动(BrownianMotionForce)需要在拉格朗日库的颗粒受力模型里面添加BrownianMotionForce子模型,不然识别不了这个力,具体路径通常为src/lagrangian/intermediate/submodels/Kinematic/ParticleForces
-
Lagrangian求解器模拟颗粒荷电运动大家好,我用 icoUncoupledKinematicParcelFoam求解器模拟静电除尘器中颗粒荷电运动轨迹,颗粒考虑曳力、重力和电场力,计算电场力需要电荷量q(通过方程计算,是动态变化的值)和场强E(矢量场,给定)两个参数,我在submodels/Kinematic/particleforces路径下添加了一个电场力子模型,怎么能做到q的实时读取和电场力的实时更新呢,求大神指点。