ohbuchi様
ご回答ありごとうございます。
現在取り組んでいる課題はもっと複雑な設定なのですが、問題点を探し出すため
設定を単純にしていったところ、投稿したような形になりました。
再びの質問よろしいでしょうか。
以下の前回の設定
> {
> name minX;
> patchInfo
> {
> type cyclic;
> neighbourPatch maxX;
> }
> constructFrom patches;
> patches (auto2);
> }
> {
> name maxX;
> patchInfo
> {
> type cyclic;
> neighbourPatch minX;
> }
> constructFrom patches;
> patches (auto3);
> }
を次のように変更しました。
{
name minX;
patchInfo
{
type cyclic;
transform translational;
separationVector (0.1 0 0);
matchTolerance 0.001;
neighbourPatch maxX;
}
constructFrom patches;
patches (auto2);
}
{
name maxX;
patchInfo
{
type cyclic;
transform translational;
separationVector (-0.1 0 0);
matchTolerance 0.001;
neighbourPatch minX;
}
constructFrom patches;
patches (auto3);
}
特に改善された部分は見当たらなかったのですが、
再びのご指摘よろしいお願いできましでしょうか。
transform, separationVector, matchToleranceの
それぞれの設定の意味を掴めていないところがあります。