Changeset d5fea7
- Timestamp:
- Apr 16, 2010, 1:52:20 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:
- 061b06
- Parents:
- 474961
- Location:
- src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/tesselation.cpp
r474961 rd5fea7 1827 1827 * If successful it raises the line count and inserts the new line into the BLS, 1828 1828 * if unsuccessful, it writes the line which had been present into the BLS, deleting the new constructed one. 1829 * @param *candidate third point of the triangle to be, for checking between multiple open line candidates 1829 1830 * @param *a first endpoint 1830 1831 * @param *b second endpoint 1831 1832 * @param n index of Tesselation::BLS giving the line with both endpoints 1832 1833 */ 1833 void Tesselation::AddTesselationLine(c lass BoundaryPointSet *a, class BoundaryPointSet *b, const int n) {1834 void Tesselation::AddTesselationLine(const BoundaryPointSet * const candidate, class BoundaryPointSet *a, class BoundaryPointSet *b, const int n) { 1834 1835 bool insertNewLine = true; 1835 1836 1836 1837 LineMap::iterator FindLine = a->lines.find(b->node->nr); 1838 BoundaryLineSet *WinningLine = NULL; 1837 1839 if (FindLine != a->lines.end()) { 1838 1840 Log() << Verbose(1) << "INFO: There is at least one line between " << *a << " and " << *b << ": " << *(FindLine->second) << "." << endl; … … 1842 1844 1843 1845 for (FindLine = FindPair.first; FindLine != FindPair.second; FindLine++) { 1846 Log() << Verbose(1) << "INFO: Checking line " << *(FindLine->second) << " ..." << endl; 1844 1847 // If there is a line with less than two attached triangles, we don't need a new line. 1845 if (FindLine->second->triangles.size() < 2) { 1848 if (FindLine->second->triangles.size() == 1) { 1849 // get open line 1850 CandidateMap::iterator Finder = OpenLines.find(FindLine->second); 1846 1851 insertNewLine = false; 1847 AddExistingTesselationTriangleLine(FindLine->second, n); 1848 break; 1852 WinningLine = FindLine->second; 1853 if ((!Finder->second->pointlist.empty()) && (*(Finder->second->pointlist.begin()) == candidate->node)) { // stop searching if candidate matches 1854 break; 1855 } 1849 1856 } 1850 1857 } … … 1853 1860 if (insertNewLine) { 1854 1861 AddNewTesselationTriangleLine(a, b, n); 1862 } else { 1863 AddExistingTesselationTriangleLine(WinningLine, n); 1855 1864 } 1856 1865 } … … 2690 2699 for (int i=0;i<3;i++) { 2691 2700 BLS[i] = NULL; 2692 // go through all possible lines (also degenerate ones) 2701 // go through all possible lines (also degenerate ones) and find ones to be used 2693 2702 pair<LineMap::iterator,LineMap::iterator> FindPair = triangle->lines[i]->endpoints[0]->lines.equal_range(triangle->lines[i]->endpoints[1]->Nr); 2694 2703 for (LineMap::iterator FindLine = FindPair.first; FindLine != FindPair.second; FindLine++) { 2695 2704 if ((*FindLine).second->triangles.size() == 1) { 2705 Log() << Verbose(1) << "Found line " << *(*FindLine).second << " from triangle " << *((*FindLine).second->triangles.begin()->second) << "." << endl; 2696 2706 // check whether best Candidate for this line from the degenerate triangle is the third endpoint 2697 2707 CandidateForTesselation CandidateLine((*FindLine).second); … … 2717 2727 BTS = NULL; 2718 2728 } else { 2729 // created new lines for the other egdes of the other side triangle 2719 2730 for (int i=0;i<3;i++) { 2720 2731 if (BLS[i] == NULL) { … … 2722 2733 } 2723 2734 } 2724 /// 3. Create the triangle with opposite NormalVector and other center2735 /// 3. Create the triangle 2725 2736 BTS = new class BoundaryTriangleSet(BLS, TrianglesOnBoundaryCount); 2726 2737 AddTesselationTriangle(); 2738 2739 // add triangle to the CandidateForTesselation of its open lines 2740 CandidateMap::iterator Finder = OpenLines.end(); 2741 for (int i=0;i<3;i++) { 2742 Finder = OpenLines.find(BTS->lines[i]); 2743 if (Finder != OpenLines.end()) { 2744 Log() << Verbose(1) << "INFO: Found open line of this triangle " << *(Finder->first) << endl; 2745 if (Finder->second->T == NULL) { 2746 Finder->second->T = BTS; 2747 Log() << Verbose(1) << "ACCEPT: Setting source triangle of open line " << *(Finder->first) << " to the newly created one." << endl; 2748 } 2749 } else 2750 Log() << Verbose(1) << "REJECT: line " << *BTS->lines[i] << " of this triangle is not found to be open." << endl; 2751 } 2727 2752 } 2728 2753 }; … … 2742 2767 2743 2768 // add the lines 2744 AddTesselationLine(TPS[ 0], TPS[1], 0);2745 AddTesselationLine(TPS[ 0], TPS[2], 1);2746 AddTesselationLine(TPS[ 1], TPS[2], 2);2769 AddTesselationLine(TPS[2], TPS[0], TPS[1], 0); 2770 AddTesselationLine(TPS[1], TPS[0], TPS[2], 1); 2771 AddTesselationLine(TPS[0], TPS[1], TPS[2], 2); 2747 2772 2748 2773 // add the triangles … … 4324 4349 AddTesselationPoint(*EndNode, 2); 4325 4350 Log() << Verbose(3) << "Adding new triangle lines."<< endl; 4326 AddTesselationLine( TPS[0], TPS[1], 0);4327 AddTesselationLine( TPS[0], TPS[2], 1);4351 AddTesselationLine(NULL, TPS[0], TPS[1], 0); 4352 AddTesselationLine(NULL, TPS[0], TPS[2], 1); 4328 4353 NewLines.push_back(BLS[1]); 4329 AddTesselationLine( TPS[1], TPS[2], 2);4354 AddTesselationLine(NULL, TPS[1], TPS[2], 2); 4330 4355 BTS = new class BoundaryTriangleSet(BLS, TrianglesOnBoundaryCount); 4331 4356 BTS->GetNormalVector(NormalVector); … … 4776 4801 AddTesselationPoint(point, 2); 4777 4802 Log() << Verbose(2) << "Adding new triangle lines."<< endl; 4778 AddTesselationLine( TPS[0], TPS[1], 0);4779 AddTesselationLine( TPS[0], TPS[2], 1);4780 AddTesselationLine( TPS[1], TPS[2], 2);4803 AddTesselationLine(NULL, TPS[0], TPS[1], 0); 4804 AddTesselationLine(NULL, TPS[0], TPS[2], 1); 4805 AddTesselationLine(NULL, TPS[1], TPS[2], 2); 4781 4806 BTS = new class BoundaryTriangleSet(BLS, TrianglesOnBoundaryCount); 4782 4807 BTS->GetNormalVector(TempTriangle->NormalVector); … … 4791 4816 AddTesselationPoint(point, 2); 4792 4817 Log() << Verbose(2) << "Adding new triangle lines."<< endl; 4793 AddTesselationLine( TPS[0], TPS[1], 0);4794 AddTesselationLine( TPS[0], TPS[2], 1);4795 AddTesselationLine( TPS[1], TPS[2], 2);4818 AddTesselationLine(NULL, TPS[0], TPS[1], 0); 4819 AddTesselationLine(NULL, TPS[0], TPS[2], 1); 4820 AddTesselationLine(NULL, TPS[1], TPS[2], 2); 4796 4821 BTS = new class BoundaryTriangleSet(BLS, TrianglesOnBoundaryCount); 4797 4822 BTS->GetNormalVector(TempTriangle->NormalVector); … … 5026 5051 for (int i = 0; i < 3; i++) 5027 5052 AddTesselationPoint((*TriangleWalker)->endpoints[i]->node, i); 5028 AddTesselationLine( TPS[0], TPS[1], 0);5029 AddTesselationLine( TPS[0], TPS[2], 1);5030 AddTesselationLine( TPS[1], TPS[2], 2);5053 AddTesselationLine(NULL, TPS[0], TPS[1], 0); 5054 AddTesselationLine(NULL, TPS[0], TPS[2], 1); 5055 AddTesselationLine(NULL, TPS[1], TPS[2], 2); 5031 5056 if (TriangleNrs.empty()) 5032 5057 DoeLog(0) && (eLog()<< Verbose(0) << "No more free triangle numbers!" << endl); -
src/tesselation.hpp
r474961 rd5fea7 283 283 void AddTesselationPoint(TesselPoint* Candidate, const int n); 284 284 void SetTesselationPoint(TesselPoint* Candidate, const int n) const; 285 void AddTesselationLine(c lass BoundaryPointSet *a, class BoundaryPointSet *b, const int n);285 void AddTesselationLine(const BoundaryPointSet * const candidate, class BoundaryPointSet *a, class BoundaryPointSet *b, const int n); 286 286 void AddNewTesselationTriangleLine(class BoundaryPointSet *a, class BoundaryPointSet *b, const int n); 287 287 void AddExistingTesselationTriangleLine(class BoundaryLineSet *FindLine, int n);
Note:
See TracChangeset
for help on using the changeset viewer.