mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
print ray directions
This commit is contained in:
@ -250,6 +250,15 @@ Foam::radiation::fvDOM::fvDOM(const volScalarField& T)
|
|||||||
)
|
)
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Info<< "fvDOM : Allocated " << IRay_.size()
|
||||||
|
<< " rays with average orientation:" << nl;
|
||||||
|
forAll (IRay_, i)
|
||||||
|
{
|
||||||
|
Info<< '\t' << IRay_[i].I().name()
|
||||||
|
<< '\t' << IRay_[i].dAve() << nl;
|
||||||
|
}
|
||||||
|
Info<< endl;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user