Changeset 03e57a for src


Ignore:
Timestamp:
Aug 4, 2009, 1:47:05 PM (15 years ago)
Author:
Frederik Heber <heber@…>
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:
62bb91
Parents:
ab1932
Message:

Smaller FIXES to molecule class

  • new pointer TesselStruct was not initialzied to NULL
  • corrected molecule::CenterInBox(), it now really centers in the given cell_size box (no idea what it did before that)
  • as TesselStruct is now a part of the molecule, we remove it on deleting the molecule if it's not NULL
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/molecules.cpp

    rab1932 r03e57a  
    6767  IndexNr  = -1;
    6868  ActiveFlag = false;
     69  TesselStruct = NULL;
    6970};
    7071
     
    7980  Free((void **)&ListOfBondsPerAtom, "molecule::~molecule: ListOfBondsPerAtom");
    8081  Free((void **)&NumberOfBondsPerAtom, "molecule::~molecule: NumberOfBondsPerAtom");
     82  if (TesselStruct != NULL)
     83    delete(TesselStruct);
    8184  CleanupMolecule();
    8285  delete(first);
     
    710713{
    711714  bool status = true;
    712   atom *ptr = NULL;
    713715  Vector x;
    714716  double *M = ReturnFullMatrixforSymmetric(cell_size);
    715717  double *Minv = x.InverseMatrix(M);
    716   double value;
    717 
    718 //  cout << "The box matrix is :" << endl;
    719 //  for (int i=0;i<NDIM;++i) {
    720 //    for (int j=0;j<NDIM;++j)
    721 //      cout << M[i*NDIM+j] << "\t";
    722 //    cout << endl;
    723 //  }
    724 //  cout << "And its inverse is :" << endl;
    725 //  for (int i=0;i<NDIM;++i) {
    726 //    for (int j=0;j<NDIM;++j)
    727 //      cout << Minv[i*NDIM+j] << "\t";
    728 //    cout << endl;
    729 //  }
     718  Vector *Center = DetermineCenterOfAll(out);
     719
    730720  // go through all atoms
    731   ptr = start->next;  // start at first in list
    732   if (ptr != end) {  //list not empty?
    733     while (ptr->next != end) {  // continue with second if present
    734       ptr = ptr->next;
    735       //ptr->Output(1,1,out);
    736       // multiply its vector with matrix inverse
    737       x.CopyVector(&ptr->x);
    738       x.MatrixMultiplication(Minv);
    739       // truncate to [0,1] for each axis
    740       for (int i=0;i<NDIM;i++) {
    741         value = floor(x.x[i]);  // next lower integer
    742         if (x.x[i] >=0) {
    743           x.x[i] -= value;
    744         } else {
    745           x.x[i] += value+1;
    746         }
    747       }
    748     }
     721  atom *ptr = start;  // start at first in list
     722  while (ptr->next != end) {  // continue with second if present
     723    ptr = ptr->next;
     724    //ptr->Output(1,1,out);
     725    // multiply its vector with matrix inverse
     726    x.CopyVector(&ptr->x);
     727    x.SubtractVector(Center); // now, it's centered at origin
     728    x.MatrixMultiplication(Minv);
     729    // truncate to [0,1] for each axis
     730    for (int i=0;i<NDIM;i++) {
     731      x.x[i] += 0.5;  // set to center of box
     732      while (x.x[i] >= 1.)
     733        x.x[i] -= 1.;
     734      while (x.x[i] < 0.)
     735        x.x[i] += 1.;
     736    }
     737    x.MatrixMultiplication(M);
     738    ptr->x.CopyVector(&x);
    749739  }
    750740  delete(M);
    751741  delete(Minv);
     742  delete(Center);
    752743  return status;
    753744};
Note: See TracChangeset for help on using the changeset viewer.