Changeset 0ad49c
- Timestamp:
- Nov 7, 2011, 4:12:24 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:
- b82ede
- Parents:
- 39cbae
- git-author:
- Gregor Bollerhey <bollerhe@…> (10/19/11 14:39:35)
- git-committer:
- Frederik Heber <heber@…> (11/07/11 16:12:24)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
utils/boxmaker.py
r39cbae r0ad49c 1 1 import re, os, os.path, sys, operator 2 3 avogadro = 6.022143e23 2 4 3 5 class c_opt(): … … 19 21 autodim = 'on' 20 22 postprocess = 'on' 23 automass = 'on' 21 24 22 25 def update(self, name, value): 23 shortcuts = {'o': 'outfilename', 'i': 'source', 'm': 'molarmass', 'rho': 'density', 'n': 'number', 'cd': 'cubicdomain', 'cc': 'cubiccell', 'pp': 'postprocess'} 26 shortcuts = {'tf': 'temofiledir', 'pf': 'potentialsfiledir', 'o': 'outfilename', 27 'i': 'source', 'm': 'molarmass', 'rho': 'density', 28 't': 'temp', 'n': 'number', 'cd': 'cubicdomain', 29 'cc': 'cubiccell', 'ar': 'autorotate', 'ad': 'autodim', 30 'pp': 'postprocess', 'am': 'automass'} 24 31 25 32 if name in shortcuts: … … 130 137 else: 131 138 raise NameError('UnitError') 139 140 141 def GetSourcMolareMass(opt): 142 with open(opt.potentialsfiledir+opt.basename+'.potentials') as f: 143 potfile = f.read() 144 145 elementmasses = dict(re.findall(r'element_name=(\w{1,2}).*?mass=([0-9.]*)', potfile)) 146 147 for key in elementmasses: 148 elementmasses[key] = float(elementmasses[key]) 149 150 # Convert from any format to xyz 151 os.system('molecuilder -o xyz --parse-tremolo-potentials %s -i temp_source.xyz -l %s' % (opt.potentialsfiledir+opt.basename+'.potentials', opt.source)) 152 153 mass_sum = 0.0 154 155 with open('temp_source.xyz') as f: 156 N = int(f.readline()) 157 comment = f.readline() 158 159 for i in range(N): 160 elem = f.readline().split(None, 1)[0].strip() 161 mass_sum += elementmasses[elem] 162 163 os.system('rm temp_source*') 164 return mass_sum*avogadro 132 165 133 166 134 167 def UpdateSettings(opt): 135 168 # Map boolean values 136 for name in ['cubicdomain', 'cubiccell', 'autorotate', 'autodim', 'postprocess' ]:169 for name in ['cubicdomain', 'cubiccell', 'autorotate', 'autodim', 'postprocess', 'automass']: 137 170 value = eval('opt.' + name) 138 171 … … 151 184 units = ReadUnits(opt) 152 185 153 have = opt.molarmass 154 want = '%f*%s / mol' % tuple(units['mass']) 155 opt.molarmass = ConvertUnits(have, want) 186 if not opt.automass: 187 have = opt.molarmass 188 want = '%f*%s / mol' % tuple(units['mass']) 189 opt.molarmass = ConvertUnits(have, want) 156 190 157 191 have = opt.density … … 164 198 opt.temp = ConvertUnits(have, want) 165 199 else: 166 opt.molarmass = float(opt.molarmass) 200 if not opt.automass: 201 opt.molarmass = float(opt.molarmass) 202 167 203 opt.density = float(opt.density) 204 205 if opt.temp: 206 opt.temp = float(opt.temp) 168 207 169 208 # Number might be an integer or a 3-vector … … 176 215 else: 177 216 opt.number = int(opt.number) 217 218 # Automatic source mass 219 if opt.automass: 220 opt.molarmass = GetSourcMolareMass(opt) 221 print '======== MOLAR MASS:', opt.molarmass 178 222 179 223 … … 295 339 opt.source = 'rotated_temp_source.data' 296 340 297 avogadro = 6.022143e23298 341 VolumePerMolecule = opt.molarmass / (avogadro * opt.density) 299 342 cell = [VolumePerMolecule**(1./3)] * 3
Note:
See TracChangeset
for help on using the changeset viewer.