求大佬修改一下,指出问题,假设每秒注射1ug的颗粒,粒径分布为RosinRammler,期望值为70e-6
injectionModels
{
model1
{
type patchInjection;
massTotal 0;//应该怎么设置呢,这里设置为总时间的注射量吗?
nParticle 10000;
SOI 0;
parcelBasisType fixed;//改成mass?
patch inlet;
duration 100000;
parcelsPerSecond 0;
U0 (5 0 0);
flowRateProfile constant 1;
sizeDistribution
{
type RosinRammler;//假设
RosinRammlerDistribution
{
minValue 0.1e-6;
maxValue 200e-6;
d 70e-6;
n 3;//这个含义是?
}
}
}
}