Changeset ffe885
- Timestamp:
- Apr 12, 2010, 4:25:50 PM (15 years ago)
- Branches:
- Action_Thermostats, Add_AtomRandomPerturbation, Add_FitFragmentPartialChargesAction, Add_RotateAroundBondAction, Add_SelectAtomByNameAction, Added_ParseSaveFragmentResults, AddingActions_SaveParseParticleParameters, Adding_Graph_to_ChangeBondActions, Adding_MD_integration_tests, Adding_ParticleName_to_Atom, Adding_StructOpt_integration_tests, AtomFragments, Automaking_mpqc_open, AutomationFragmentation_failures, Candidate_v1.5.4, Candidate_v1.6.0, Candidate_v1.6.1, ChangeBugEmailaddress, ChangingTestPorts, ChemicalSpaceEvaluator, CombiningParticlePotentialParsing, Combining_Subpackages, Debian_Package_split, Debian_package_split_molecuildergui_only, Disabling_MemDebug, Docu_Python_wait, EmpiricalPotential_contain_HomologyGraph, EmpiricalPotential_contain_HomologyGraph_documentation, Enable_parallel_make_install, Enhance_userguide, Enhanced_StructuralOptimization, Enhanced_StructuralOptimization_continued, Example_ManyWaysToTranslateAtom, Exclude_Hydrogens_annealWithBondGraph, FitPartialCharges_GlobalError, Fix_BoundInBox_CenterInBox_MoleculeActions, Fix_ChargeSampling_PBC, Fix_ChronosMutex, Fix_FitPartialCharges, Fix_FitPotential_needs_atomicnumbers, Fix_ForceAnnealing, Fix_IndependentFragmentGrids, Fix_ParseParticles, Fix_ParseParticles_split_forward_backward_Actions, Fix_PopActions, Fix_QtFragmentList_sorted_selection, Fix_Restrictedkeyset_FragmentMolecule, Fix_StatusMsg, Fix_StepWorldTime_single_argument, Fix_Verbose_Codepatterns, Fix_fitting_potentials, Fixes, ForceAnnealing_goodresults, ForceAnnealing_oldresults, ForceAnnealing_tocheck, ForceAnnealing_with_BondGraph, ForceAnnealing_with_BondGraph_continued, ForceAnnealing_with_BondGraph_continued_betteresults, ForceAnnealing_with_BondGraph_contraction-expansion, FragmentAction_writes_AtomFragments, FragmentMolecule_checks_bonddegrees, GeometryObjects, Gui_Fixes, Gui_displays_atomic_force_velocity, ImplicitCharges, IndependentFragmentGrids, IndependentFragmentGrids_IndividualZeroInstances, IndependentFragmentGrids_IntegrationTest, IndependentFragmentGrids_Sole_NN_Calculation, JobMarket_RobustOnKillsSegFaults, JobMarket_StableWorkerPool, JobMarket_unresolvable_hostname_fix, MoreRobust_FragmentAutomation, ODR_violation_mpqc_open, PartialCharges_OrthogonalSummation, PdbParser_setsAtomName, PythonUI_with_named_parameters, QtGui_reactivate_TimeChanged_changes, Recreated_GuiChecks, Rewrite_FitPartialCharges, RotateToPrincipalAxisSystem_UndoRedo, SaturateAtoms_findBestMatching, SaturateAtoms_singleDegree, StoppableMakroAction, Subpackage_CodePatterns, Subpackage_JobMarket, Subpackage_LinearAlgebra, Subpackage_levmar, Subpackage_mpqc_open, Subpackage_vmg, Switchable_LogView, ThirdParty_MPQC_rebuilt_buildsystem, TrajectoryDependenant_MaxOrder, TremoloParser_IncreasedPrecision, TremoloParser_MultipleTimesteps, TremoloParser_setsAtomName, Ubuntu_1604_changes, stable
- Children:
- 09898c
- Parents:
- 4f9e47
- Location:
- src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/linkedcell.cpp
r4f9e47 rffe885 337 337 }; 338 338 339 /** Set the index to the cell containing a given Vector *x, which is not inside the LinkedCell's domain 340 * Note that as we have to check distance from every corner of the closest cell, this function is faw more 341 * expensive and if Vector is known to be inside LinkedCell's domain, then SetIndexToVector() should be used. 342 * \param *x Vector with coordinates 343 * \return minimum squared distance of cell to given vector (if inside of domain, distance is 0) 344 */ 345 double LinkedCell::SetClosestIndexToOutsideVector(const Vector * const x) const 346 { 347 for (int i=0;i<NDIM;i++) { 348 n[i] = (int)floor((x->x[i] - min.x[i])/RADIUS); 349 if (n[i] < 0) 350 n[i] = 0; 351 if (n[i] >= N[i]) 352 n[i] = N[i]-1; 353 } 354 355 // calculate distance of cell to vector 356 double distanceSquared = 0.; 357 bool outside = true; // flag whether x is found in- or outside of LinkedCell's domain/closest cell 358 Vector corner; // current corner of closest cell 359 Vector tester; // Vector pointing from corner to center of closest cell 360 Vector Distance; // Vector from corner of closest cell to x 361 362 Vector center; // center of the closest cell 363 for (int i=0;i<NDIM;i++) 364 center.x[i] = min.x[i]+((double)n[i]+.5)*RADIUS; 365 366 int c[NDIM]; 367 for (c[0]=0;c[0]<=1;c[0]++) 368 for (c[1]=0; c[1]<=1;c[1]++) 369 for (c[2]=0; c[2]<=1;c[2]++) { 370 // set up corner 371 for (int i=0;i<NDIM;i++) 372 corner.x[i] = min.x[i]+RADIUS*((double)n[i]+c[i]); 373 // set up distance vector 374 Distance.CopyVector(x); 375 Distance.SubtractVector(&corner); 376 const double dist = Distance.NormSquared(); 377 // check whether distance is smaller 378 if (dist< distanceSquared) 379 distanceSquared = dist; 380 // check whether distance vector goes inside or outside 381 tester.CopyVector(¢er); 382 tester.SubtractVector(&corner); 383 if (tester.ScalarProduct(&Distance) < 0) 384 outside = false; 385 } 386 return (outside ? distanceSquared : 0.); 387 }; 339 388 340 389 /** Returns a list of all TesselPoint with distance less than \a radius to \a *Center. … … 351 400 352 401 // set index of LC to center of sphere 353 if (!SetIndexToVector(center)) { 354 DoeLog(1) && (eLog()<< Verbose(1) << "Vector " << *center << " is outside of LinkedCell's bounding box." << endl); 402 const double dist = SetClosestIndexToOutsideVector(center); 403 if (dist > radius) { 404 DoeLog(1) && (eLog()<< Verbose(1) << "Vector " << *center << " is too far away from any atom in LinkedCell's bounding box." << endl); 355 405 return TesselList; 356 406 } 357 407 358 408 // gather all neighbours first, then look who fulfills distance criteria 359 NeighbourList = GetallNeighbours(radius );409 NeighbourList = GetallNeighbours(radius-dist); 360 410 if (NeighbourList != NULL) { 361 411 for (LinkedNodes::const_iterator Runner = NeighbourList->begin(); Runner != NeighbourList->end(); Runner++) { -
src/linkedcell.hpp
r4f9e47 rffe885 61 61 bool SetIndexToNode(const TesselPoint * const Walker)const ; 62 62 bool SetIndexToVector(const Vector * const x)const ; 63 double SetClosestIndexToOutsideVector(const Vector * const x) const; 63 64 bool CheckBounds()const ; 64 65 bool CheckBounds(const int relative[NDIM])const ; … … 67 68 LinkedCell::LinkedNodes* GetallNeighbours(const double distance = 0) const; 68 69 LinkedCell::LinkedNodes* GetPointsInsideSphere(const double radius, const Vector * const center) const; 69 70 70 // not implemented yet 71 71 bool AddNode(Vector *Walker);
Note:
See TracChangeset
for help on using the changeset viewer.