Changeset cda81d for src/Actions
- Timestamp:
- Oct 27, 2011, 4:45:47 PM (13 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:
- a2b0ce
- Parents:
- 9e1709
- git-author:
- Frederik Heber <heber@…> (05/11/11 08:10:27)
- git-committer:
- Frederik Heber <heber@…> (10/27/11 16:45:47)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Actions/AnalysisAction/DipoleAngularCorrelationAction.cpp
r9e1709 rcda81d 50 50 // obtain information 51 51 getParametersfromValueStorage(); 52 53 // open files 54 ofstream output; 55 ofstream binoutput; 56 output.open(params.outputname.string().c_str()); 57 binoutput.open(params.binoutputname.string().c_str()); 52 ASSERT(!params.periodic, "AnalysisDipoleAngularCorrelationAction() - periodic case not implemented."); 58 53 59 54 // get selected atoms 60 55 std::vector<atom*> atoms = World::getInstance().getSelectedAtoms(); 61 LOG(0, "STATUS: There are " << atoms.size() << " selected atoms."); 62 ASSERT(!params.periodic, "AnalysisDipoleAngularCorrelationAction() - periodic case not implemented."); 56 ASSERT(!atoms.size(), "AnalysisDipoleAngularCorrelationAction() - not atoms selected."); 63 57 64 // obtain zero dipole orientation from first time step58 // get current time step 65 59 const unsigned int oldtime = WorldTime::getTime(); 60 61 // obtain zero dipole orientation 66 62 World::getInstance().setTime(0); 67 63 std::map<atomId_t, Vector> ZeroVector = CalculateZeroAngularDipole(atoms); 64 65 // go through each step of common trajectory of all atoms in set 66 range<size_t> timesteps = getMaximumTrajectoryBounds(atoms); 67 for (size_t step = 0; step < timesteps.first; ++step) { 68 // calculate dipoles relative to zero orientation 69 DipoleAngularCorrelationMap *correlationmap = NULL; 70 correlationmap = DipoleAngularCorrelation(atoms, step, ZeroVector); 71 72 // output correlation map 73 ofstream output; 74 std::string filename = params.outputname.string()+"."+toString(step)+".dat"; 75 output.open(filename.c_str()); 76 OutputCorrelationMap<DipoleAngularCorrelationMap>(&output, correlationmap, OutputDipoleAngularCorrelation_Header, OutputDipoleAngularCorrelation_Value); 77 output.close(); 78 79 // bin map 80 BinPairMap *binmap = BinData( correlationmap, params.BinWidth, params.BinStart, params.BinEnd ); 81 82 // free correlation map 83 delete(correlationmap); 84 85 // output binned map 86 ofstream binoutput; 87 std::string binfilename = params.binoutputname.string()+"."+toString(step)+".dat"; 88 binoutput.open(binfilename.c_str()); 89 OutputCorrelationMap<BinPairMap> ( &binoutput, binmap, OutputCorrelation_Header, OutputCorrelation_Value ); 90 binoutput.close(); 91 92 // free binned map 93 delete(binmap); 94 } 95 96 // reset to old time step 68 97 World::getInstance().setTime(oldtime); 69 70 // calculate dipoles relative to zero orientation and put into maps71 DipoleAngularCorrelationMap *correlationmap = NULL;72 correlationmap = DipoleAngularCorrelation(atoms, ZeroVector);73 OutputCorrelationMap<DipoleAngularCorrelationMap>(&output, correlationmap, OutputDipoleAngularCorrelation_Header, OutputDipoleAngularCorrelation_Value);74 75 // bin maps76 BinPairMap *binmap = BinData( correlationmap, params.BinWidth, params.BinStart, params.BinEnd );77 OutputCorrelationMap<BinPairMap> ( &binoutput, binmap, OutputCorrelation_Header, OutputCorrelation_Value );78 79 // free maps80 delete(binmap);81 delete(correlationmap);82 83 // close files84 output.close();85 binoutput.close();86 98 87 99 // exit
Note:
See TracChangeset
for help on using the changeset viewer.