Changeset 018741
- Timestamp:
- Jul 7, 2009, 2:48:21 PM (16 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:
- 86234b
- Parents:
- f0ebac
- git-author:
- Frederik Heber <heber@…> (07/07/09 14:46:22)
- git-committer:
- Frederik Heber <heber@…> (07/07/09 14:48:21)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified src/boundary.cpp ¶
rf0ebac r018741 1496 1496 1497 1497 if (a->lines.find(b->node->nr) != a->lines.end()) { 1498 1498 LineMap::iterator FindLine; 1499 1499 pair<LineMap::iterator,LineMap::iterator> FindPair; 1500 1500 FindPair = a->lines.equal_range(b->node->nr); 1501 1501 1502 1502 for (FindLine = FindPair.first; FindLine != FindPair.second; ++FindLine) { 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1503 // If there is a line with less than two attached triangles, we don't need a new line. 1504 if (FindLine->second->TrianglesCount < 2) { 1505 insertNewLine = false; 1506 cout << Verbose(2) 1507 << "Using existing line " << *FindLine->second << endl; 1508 1509 BPS[0] = FindLine->second->endpoints[0]; 1510 BPS[1] = FindLine->second->endpoints[1]; 1511 BLS[n] = FindLine->second; 1512 1513 break; 1514 } 1515 1515 } 1516 1516 } 1517 1517 1518 1518 if (insertNewLine) { 1519 1519 AlwaysAddTriangleLine(a, b, n); 1520 1520 } 1521 1521 } … … 2890 2890 }; 2891 2891 2892 /** Checks for a new special triangle whether one of its edges is already present with one one triangle connected. 2893 * This enforces that special triangles (i.e. degenerated ones) should at last close the open-edge frontier and not 2894 * make it bigger (i.e. closing one (the baseline) and opening two new ones). 2895 * \param TPS[3] nodes of the triangle 2896 * \return true - there is such a line (i.e. creation of degenerated triangle is valid), false - no such line (don't create) 2897 */ 2898 bool CheckLineCriteriaforDegeneratedTriangle(class BoundaryPointSet *nodes[3]) 2899 { 2900 bool result = false; 2901 int counter = 0; 2902 2903 // check all three points 2904 for (int i=0;i<3;i++) 2905 for (int j=i+1; j<3; j++) { 2906 if (nodes[i]->lines.find(nodes[j]->node->nr) != nodes[i]->lines.end()) { // there already is a line 2907 LineMap::iterator FindLine; 2908 pair<LineMap::iterator,LineMap::iterator> FindPair; 2909 FindPair = nodes[i]->lines.equal_range(nodes[j]->node->nr); 2910 for (FindLine = FindPair.first; FindLine != FindPair.second; ++FindLine) { 2911 // If there is a line with less than two attached triangles, we don't need a new line. 2912 if (FindLine->second->TrianglesCount < 2) { 2913 counter++; 2914 break; // increase counter only once per edge 2915 } 2916 } 2917 } else { // no line 2918 cout << Verbose(1) << "ERROR: The line between " << nodes[i] << " and " << nodes[j] << " is not yet present, hence no need for a degenerate triangle!" << endl; 2919 result = true; 2920 } 2921 } 2922 if (counter > 1) { 2923 cout << Verbose(2) << "INFO: Degenerate triangle is ok, there is only at most " << counter << " new line needed." << endl; 2924 result = true; 2925 } 2926 return result; 2927 }; 2928 2929 2892 2930 /** This function finds a triangle to a line, adjacent to an existing one. 2893 2931 * @param out output stream for debugging … … 2991 3029 cout << Verbose(1) << " Third point candidate is " << *(*it)->point 2992 3030 << " with circumsphere's center at " << (*it)->OptCenter << "." << endl; 2993 cout << Verbose(1) << " Baseline is " << BaseRay << endl;3031 cout << Verbose(1) << " Baseline is " << *BaseRay << endl; 2994 3032 2995 3033 // check whether all edges of the new triangle still have space for one more triangle (i.e. TriangleCount <2) … … 3025 3063 AddTrianglePoint(BaseRay->endpoints[1]->node, 2); 3026 3064 3027 AddTriangleLine(TPS[0], TPS[1], 0); 3028 AddTriangleLine(TPS[0], TPS[2], 1); 3029 AddTriangleLine(TPS[1], TPS[2], 2); 3030 3031 BTS = new class BoundaryTriangleSet(BLS, TrianglesOnBoundaryCount); 3032 //TrianglesOnBoundary.insert(TrianglePair(TrianglesOnBoundaryCount, BTS)); 3033 AddTriangleToLines(); 3034 3035 (*it)->OtherOptCenter.Scale(-1.); 3036 BTS->GetNormalVector((*it)->OtherOptCenter); 3037 (*it)->OtherOptCenter.Scale(-1.); 3038 3039 cout << "--> WARNING: Special new triangle with " << *BTS << " and normal vector " << BTS->NormalVector 3040 << " for this triangle ... " << endl; 3041 cout << Verbose(1) << "We have "<< BaseRay->TrianglesCount << " for line " << BaseRay << "." << endl; 3065 // We demand that at most one new degenerate line is created and that this line also already exists (which has to be the case due to existentTrianglesCount == 1) 3066 // i.e. at least one of the three lines must be present with TriangleCount <= 1 3067 if (CheckLineCriteriaforDegeneratedTriangle(TPS)) { 3068 AddTriangleLine(TPS[0], TPS[1], 0); 3069 AddTriangleLine(TPS[0], TPS[2], 1); 3070 AddTriangleLine(TPS[1], TPS[2], 2); 3071 3072 BTS = new class BoundaryTriangleSet(BLS, TrianglesOnBoundaryCount); 3073 //TrianglesOnBoundary.insert(TrianglePair(TrianglesOnBoundaryCount, BTS)); 3074 AddTriangleToLines(); 3075 3076 (*it)->OtherOptCenter.Scale(-1.); 3077 BTS->GetNormalVector((*it)->OtherOptCenter); 3078 (*it)->OtherOptCenter.Scale(-1.); 3079 3080 cout << "--> WARNING: Special new triangle with " << *BTS << " and normal vector " << BTS->NormalVector 3081 << " for this triangle ... " << endl; 3082 cout << Verbose(1) << "We have "<< BaseRay->TrianglesCount << " for line " << BaseRay << "." << endl; 3083 } else { 3084 cout << Verbose(1) << "WARNING: This triangle consisting of "; 3085 cout << *(*it)->point << ", "; 3086 cout << *BaseRay->endpoints[0]->node << " and "; 3087 cout << *BaseRay->endpoints[1]->node << " "; 3088 cout << "exists and is not added, as it does not seem helpful!" << endl; 3089 result = false; 3090 } 3042 3091 } else { 3043 3092 cout << Verbose(1) << "This triangle consisting of "; … … 3049 3098 } 3050 3099 3051 if (( existentTrianglesCount < 2) && (DoSingleStepOutput && (TrianglesOnBoundaryCount % 1 == 0))) { // if we have a new triangle and want to output each new triangle configuration3100 if ((result) && (existentTrianglesCount < 2) && (DoSingleStepOutput && (TrianglesOnBoundaryCount % 1 == 0))) { // if we have a new triangle and want to output each new triangle configuration 3052 3101 sprintf(NumberName, "-%04d-%s_%s_%s", TriangleFilesWritten, BTS->endpoints[0]->node->Name, BTS->endpoints[1]->node->Name, BTS->endpoints[2]->node->Name); 3053 3102 if (DoTecplotOutput) {
Note:
See TracChangeset
for help on using the changeset viewer.