bug resolve, chekcForCollision is set to true for always, adjustable search box is set to false for always, old hearChanges has been removed

This commit is contained in:
HRN
2025-02-07 23:12:53 +03:30
parent 02e0b72082
commit b9ab015eb1
12 changed files with 43 additions and 24 deletions

View File

@ -46,7 +46,7 @@ pFlow::NBS::NBS
diam),
sizeRatio_(max(dict.getVal<real>("sizeRatio"), one)),
cellExtent_(max(dict.getVal<real>("cellExtent"), half)),
adjustableBox_(dict.getVal<Logical>("adjustableBox")),
adjustableBox_(false),//adjustableBox_(dict.getVal<Logical>("adjustableBox")),
NBSLevel0_
(
this->domainBox_,

View File

@ -23,7 +23,7 @@ Licence:
#include "streams.hpp"
pFlow::uint32 pFlow::mapperNBS::checkInterval_ = 1000;
pFlow::real pFlow::mapperNBS::enlargementFactor_ = 1.1;
pFlow::real pFlow::mapperNBS::enlargementFactor_ = 1.5;
bool pFlow::mapperNBS::setSearchBox
(

View File

@ -161,10 +161,13 @@ public:
const anyList& varList
) override
{
if(msg.equivalentTo(message::BNDR_RESET))
{
// do nothing
return true;
}
pOutput<<"Function (hearChanges in boundarySphereInteractions)is not implmented Message "<<
msg <<endl<<" name "<< this->boundaryName() <<" type "<< this->type()<<endl;
//notImplementedFunction;
return true;
}