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:
parent
02e0b72082
commit
b9ab015eb1
|
@ -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_,
|
||||
|
|
|
@ -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
|
||||
(
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
@ -81,7 +81,7 @@ pFlow::insertion::readInsertionDict()
|
|||
|
||||
if (active_)
|
||||
{
|
||||
checkForCollision_ = getVal<Logical>("checkForCollision");
|
||||
//checkForCollision_ = getVal<Logical>("checkForCollision");
|
||||
|
||||
REPORT(1) << "Particle insertion mechanism is " << Yellow_Text("active")
|
||||
<< " in the simulation." << END_REPORT;
|
||||
|
|
|
@ -42,7 +42,7 @@ private:
|
|||
Logical active_ = "No";
|
||||
|
||||
/// Check for collision? It is not active now
|
||||
Logical checkForCollision_ = "No";
|
||||
Logical checkForCollision_ = "Yes";
|
||||
|
||||
/// if increase velocity in case particles are failed
|
||||
/// to be inserted due to collision
|
||||
|
|
|
@ -179,7 +179,17 @@ public:
|
|||
"list of variables is \n"<<names_<<endl;
|
||||
return false;
|
||||
}
|
||||
return getTypeName<T>() != types_[i];
|
||||
return getTypeName<T>() == types_[i];
|
||||
}
|
||||
|
||||
word getObjectTypeName(const word& name)const
|
||||
{
|
||||
int32 i = names_.findi(name);
|
||||
if(i == -1 )
|
||||
{
|
||||
return "NAME_NOT_FOUND";
|
||||
}
|
||||
return types_[i];
|
||||
}
|
||||
|
||||
/// Get the const reference to variable by name
|
||||
|
|
|
@ -194,7 +194,9 @@ bool pFlow::internalField<T, MemorySpace>:: hearChanges
|
|||
auto varName = message::eventName(message::RANGE_CHANGED);
|
||||
if( !varList.checkObjectType<rangeU32>(varName) )
|
||||
{
|
||||
fatalErrorInFunction<<"Wrong type for variable "<< varName<<endl;
|
||||
fatalErrorInFunction<<"Wrong type for variable "<< varName<<endl<<
|
||||
"You requested "<< getTypeName<rangeU32>()<<" but the type is"<<
|
||||
varList.getObjectTypeName(varName)<<endl;
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
|
@ -124,7 +124,7 @@ bool pFlow::subscriber::unsubscribe
|
|||
return true;
|
||||
}
|
||||
|
||||
bool pFlow::subscriber::notify
|
||||
/*bool pFlow::subscriber::notify
|
||||
(
|
||||
uint32 iter,
|
||||
real t,
|
||||
|
@ -151,7 +151,7 @@ bool pFlow::subscriber::notify
|
|||
}
|
||||
}
|
||||
return true;
|
||||
}
|
||||
}*/
|
||||
|
||||
bool pFlow::subscriber::notify(const timeInfo &ti, const message msg, const anyList &varList)
|
||||
{
|
||||
|
|
|
@ -69,12 +69,12 @@ public:
|
|||
virtual bool unsubscribe(observer* obsevr)const;
|
||||
|
||||
/// TODO: remove this API from thie class
|
||||
bool notify(
|
||||
/*bool notify(
|
||||
uint32 iter,
|
||||
real t,
|
||||
real dt,
|
||||
const message msg,
|
||||
const anyList& varList);
|
||||
const anyList& varList);*/
|
||||
|
||||
bool notify(
|
||||
const timeInfo& ti,
|
||||
|
|
|
@ -118,3 +118,10 @@ pFlow::fatalExitPhasicFlow(int errorCode)
|
|||
pFlow::processors::abort(errorCode);
|
||||
return errorCode;
|
||||
}
|
||||
|
||||
pFlow::iOstream&
|
||||
pFlow::reportPing(const char* fileName, int fileLineNumber)
|
||||
{
|
||||
errorStream<<"Ping! ("<<fileLineNumber<<"):"<<fileName<<endl;
|
||||
return errorStream;
|
||||
}
|
||||
|
|
|
@ -66,6 +66,8 @@ warningMessage(const char* fnName, const char* fileName, int linNumber);
|
|||
pFlow::iOstream&
|
||||
reportAndExit(int errorCode = EXIT_FAILURE);
|
||||
|
||||
pFlow::iOstream& reportPing(const char* fileName, int fileLineNumber);
|
||||
|
||||
}
|
||||
|
||||
/// Report a fatal error and exit the applicaiton
|
||||
|
@ -99,4 +101,6 @@ reportAndExit(int errorCode = EXIT_FAILURE);
|
|||
/// Fatal exit
|
||||
#define fatalExit pFlow::reportAndExit()
|
||||
|
||||
#define Ping pFlow::reportPing(__FILE__, __LINE__)
|
||||
|
||||
#endif
|
||||
|
|
|
@ -65,9 +65,7 @@ bool pFlow::boundaryBase::appendNewIndices
|
|||
newIndices);
|
||||
|
||||
if(!notify(
|
||||
internal_.time().currentIter(),
|
||||
internal_.time().currentTime(),
|
||||
internal_.time().dt(),
|
||||
internal_.time().TimeInfo(),
|
||||
msg,
|
||||
varList))
|
||||
{
|
||||
|
@ -109,18 +107,13 @@ bool pFlow::boundaryBase::removeIndices
|
|||
}
|
||||
|
||||
anyList aList;
|
||||
|
||||
message msgBndry;
|
||||
|
||||
aList.emplaceBack(
|
||||
message::eventName(message::BNDR_RESET),
|
||||
msgBndry.addAndName(message::BNDR_RESET),
|
||||
std::move(keepIndices));
|
||||
|
||||
message msgBndry = message::BNDR_RESET;
|
||||
|
||||
uint32 iter = time().currentIter();
|
||||
real t = time().currentTime();
|
||||
real dt = time().dt();
|
||||
|
||||
if( !this->notify(iter, t, dt, msgBndry, aList) )
|
||||
if( !this->notify(time().TimeInfo(), msgBndry, aList) )
|
||||
{
|
||||
fatalErrorInFunction<<"Error in notify operation in boundary "<<
|
||||
name() <<endl;
|
||||
|
|
Loading…
Reference in New Issue