「境界条件」の版間の差分
ナビゲーションに移動
検索に移動
(→参考文献) |
|||
| (同じ利用者による、間の8版が非表示) | |||
| 1行目: | 1行目: | ||
==v1712== | |||
===U=== | |||
*固定値で指定 | *固定値で指定 | ||
inlet | |||
{ | |||
inlet | |||
{ | |||
type fixedValue; | type fixedValue; | ||
value (1 0 0); | value (1 0 0); | ||
} | } | ||
*体積流量 | *体積流量 | ||
| 24行目: | 21行目: | ||
*質量流量 | *質量流量 | ||
inlet | |||
{ | |||
type flowRateInletVelocity; | type flowRateInletVelocity; | ||
massFlowRate 1.0E-5; | massFlowRate 1.0E-5; | ||
value (0 0 0); | value (0 0 0); | ||
} | |||
===p=== | |||
*Total pressureによる入力 | |||
**非圧縮 | |||
outlet | |||
{ | |||
type totalPressure; | |||
rho none; | |||
p0 uniform 0; | |||
value uniform 0; | |||
} | |||
===k=== | |||
*乱れ強度による入力 | |||
inlet | |||
{ | |||
type turbulentIntensityKineticEnergyInlet; | |||
intensity 0.05; | |||
value 1; | |||
} | |||
===epsilon=== | |||
*混合長による入力 | |||
inlet | |||
{ | |||
type turbulentMixingLengthDissipationRateInlet; | |||
mixingLength 1; | |||
value 0.005; | |||
} | |||
===omega=== | |||
*混合長による入力 | |||
inlet | |||
{ | |||
type turbulentMixingLengthFrequencyInlet; | |||
mixingLength 0.005; | |||
value 1; | |||
} | } | ||
==参考文献== | |||
[https://www.openfoam.com/documentation/cpp-guide/html/index.html OpenCFD Ltd., OpenFOAM Extended Code Guide, 2017] | |||
2018年2月7日 (水) 08:38時点における最新版
v1712
U
- 固定値で指定
inlet
{
type fixedValue;
value (1 0 0);
}
- 体積流量
inlet
{
type flowRateInletVelocity;
volumetricFlowRate 1.0E-5;
value (0 0 0);
}
- 質量流量
inlet
{
type flowRateInletVelocity;
massFlowRate 1.0E-5;
value (0 0 0);
}
p
- Total pressureによる入力
- 非圧縮
outlet
{
type totalPressure;
rho none;
p0 uniform 0;
value uniform 0;
}
k
- 乱れ強度による入力
inlet
{
type turbulentIntensityKineticEnergyInlet;
intensity 0.05;
value 1;
}
epsilon
- 混合長による入力
inlet
{
type turbulentMixingLengthDissipationRateInlet;
mixingLength 1;
value 0.005;
}
omega
- 混合長による入力
inlet
{
type turbulentMixingLengthFrequencyInlet;
mixingLength 0.005;
value 1;
}