Changeset 03648b for src/border.cpp
- Timestamp:
- Nov 27, 2008, 9:55:08 AM (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:
- 1ffa21
- Parents:
- 51695c
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/border.cpp
r51695c r03648b 2 2 #include "boundary.hpp" 3 3 4 inline int round(double x) 5 { 6 //brauche ich das hier? Kann ich mit int operieren? 7 return int(x > 0.0 ? x + 0.5 : x - 0.5); 8 } 9 10 11 12 13 void Find_next_suitable_point(atom a, atom b, atom Candidate, int n, Vector *d1, Vector *d2, double *Storage, const double RADIUS) 4 5 6 7 8 9 void Find_next_suitable_point(atom a, atom b, atom Candidate, int n, Vector *d1, Vector *d2, double *Storage, const double RADIUS, molecule mol) 14 10 { 15 11 /* d2 ist der Normalenvektor auf dem Dreieck, … … 56 52 if (n<5) 57 53 { 58 for(i=0; i<mol ecule.NumberOfBondsPerAtom[Candidate.nr];i++)59 { 60 while (Candidate.nr != mol ecule->ListOfBonds[Candidate.nr][i])54 for(i=0; i<mol.NumberOfBondsPerAtom[Candidate.nr];i++) 55 { 56 while (Candidate.nr != mol->ListOfBonds[Candidate.nr][i]) 61 57 { 62 58 Walker = Walker.next; 63 59 } 64 60 65 Find_next_suitable_point(a, b, Walker, n+1, d1, d2, RADIUS );66 } 67 } 68 } 69 70 71 void Find_next_suitable_triangle( Triangle T, BoundaryLine Line)61 Find_next_suitable_point(a, b, Walker, n+1, d1, d2, RADIUS, mol); 62 } 63 } 64 } 65 66 67 void Find_next_suitable_triangle(molecule mol, BoundaryLineSet Line, BoundaryTriangleSet T) 72 68 { 73 69 Vector CenterOfLine = Line->endpoints.node[0].x; … … 78 74 double *Storage[3]; 79 75 Storage[0]=-1; // Id must be positive, we see should nothing be done 80 Storage[1]=- 2; // This direction is either +1 or -1 one, so any result will take precedence over initial values81 Storage[2]=-10; // This is also lower then any value produced by an eligible atom, though due to Storage[1] this is of no concern76 Storage[1]=-1; // This direction is either +1 or -1 one, so any result will take precedence over initial values 77 Storage[2]=-10; // This is also lower then any value produced by an eligible atom, which are all positive 82 78 83 79 … … 106 102 // Konstruiere nun neues Dreieck am Ende der Liste der Dreiecke 107 103 // Next Triangle is Line, atom with number in Storage[0] 108 109 } 110 111 112 void Find_starting_triangle() 104 105 Walker=mol->start; 106 while (Walker.nr != (int)Storage[0]) 107 { 108 Walker = Walker->next; 109 } 110 111 AddPoint(Walker); 112 113 BPS[0] = BoundaryPointSet(Walker); 114 BPS[1] = Line->enpoints.node[0]; 115 BLS[0] = new class BoundaryLineSet(BPS , LinesOnBoundaryCount); 116 BPS[0] = Walker; 117 BPS[1] = Line->endpoints.node[1]; 118 BLS[1] = new class BoundaryLineSet(BPS , LinesOnBoundaryCount); 119 BLS[2] = line; 120 121 BTS = new class BoundaryTriangleSet(BLS, TrianglesOnBoundaryCount); 122 TrianglesOnBoundary.insert( TrianglePair(TrianglesOnBoundaryCount, BTS) ); 123 TrianglesOnBoundaryCount++; 124 125 for(int i=0;i<NDIM;i++) // sind Linien bereits vorhanden ??? 126 { 127 if (LinesOnBoundary.find(BTS->lines[i]) == LinesOnBoundary->end) 128 { 129 LinesOnBoundary.insert( LinePair(LinesOnBoundaryCount, BTS->lines[i]) ); 130 LinesOnBoundaryCount++; 131 } 132 } 133 GetNormalVector(BTS.NormalVector); 134 135 if( (BTS.NormalVector.ScalarProduct(T.NormalVecotr)<0 && Storage[1]>0) || \ 136 (BTS.NormalVector.ScalarProduct(T.NormalVecotr)>0 && Storage[1]<0)) 137 { 138 BTS.NormalVector.Scale(-1); 139 } 140 141 } 142 143 144 void Find_starting_triangle(molecule mol) 113 145 { 114 146 atom Walker; 115 147 atom Walker2; 148 atom Walker3; 116 149 int max_index[3]; 117 150 double max_coordinate[3]; … … 128 161 } 129 162 130 Walker = mol ecule->start;163 Walker = mol->start; 131 164 while (Walker->next != NULL) 132 165 { … … 145 178 146 179 Oben.x[k]=1; 147 Walker = mol ecule->start;180 Walker = mol->start; 148 181 while (Walker.nr != max_index[k]) 149 182 { … … 157 190 158 191 159 for (i=0; i< mol ecule->NumberOfBondsPerAtoms[Walker.nr]; i++)160 { 161 Walker2 = mol ecule->start;162 while (Walker2.nr != mol ecule->ListOfBondsPerAtoms[Walker.nr][i]) // Stimmt die Ueberpruefung $$$192 for (i=0; i< mol->NumberOfBondsPerAtoms[Walker.nr]; i++) 193 { 194 Walker2 = mol->start; 195 while (Walker2.nr != mol->ListOfBondsPerAtoms[Walker.nr][i]) // Stimmt die Ueberpruefung $$$ 163 196 { 164 197 Walker2 =Walker2->next; … … 168 201 } 169 202 170 Walker2=mol ecule->start;203 Walker2=mol->start; 171 204 172 205 while (Walker2.nr != int(Storage[0])) … … 181 214 182 215 Find_next_suitable_point(Walker, Walker2, Candidate, 0, helper, Oben, Storage, Radius); 216 Walker3 = mol->start; 217 while (Walker3.nr != int(Storage[0])) 218 { 219 Walker3 = Walker3->next; 220 } 183 221 184 222 //Starting Triangle is Walker, Walker2, index Storage[0] 185 223 186 } 187 188 189 void Find_non_convex_border() 190 { 191 192 } 224 AddPoint(Walker); 225 AddPoint(Walker2); 226 AddPoint(Walker3); 227 228 BPS[0] = BoundaryPointSet(Walker); 229 BPS[1] = BoundaryPointSet(Walker2); 230 BLS[0] = new class BoundaryLineSet(BPS , LinesOnBoundaryCount); 231 BPS[0] = Walker; 232 BPS[1] = Walker3; 233 BLS[1] = new class BoundaryLineSet(BPS , LinesOnBoundaryCount); 234 BPS[0] = Walker; 235 BPS[1] = Walker2; 236 BLS[2] = new class BoundaryLineSet(BPS , LinesOnBoundaryCount); 237 238 BTS = new class BoundaryTriangleSet(BLS, TrianglesOnBoundaryCount); 239 TrianglesOnBoundary.insert( TrianglePair(TrianglesOnBoundaryCount, BTS) ); 240 TrianglesOnBoundaryCount++; 241 242 for(int i=0;i<NDIM;i++) 243 { 244 LinesOnBoundary.insert( LinePair(LinesOnBoundaryCount, BTS->lines[i]) ); 245 LinesOnBoundaryCount++; 246 } 247 248 } 249 250 251 void Find_non_convex_border(Tesselation Tess, molecule mol) // this needs input of type molecule 252 { 253 254 Tess.Find_starting_triangle(mol); 255 256 for (LineMap::iterator baseline = LinesOnBoundary.begin(); baseline != LinesOnBoundary.end(); baseline++) 257 if (baseline->second->TrianglesCount == 1) 258 { 259 Find_next_suitable_triangle(mol, baseline->second, baseline->second->triangles.begin()->second); //the line is there, so there is a triangle, but only one. 260 261 } 262 else 263 { 264 printf("There is a line with %d triangles adjacent", baseline->second->TrianglesCount); 265 } 266 }
Note:
See TracChangeset
for help on using the changeset viewer.